diff --git a/web/src/components/App.js b/web/src/components/App.js
index 4782a26c..e2e0c870 100644
--- a/web/src/components/App.js
+++ b/web/src/components/App.js
@@ -18,6 +18,18 @@ import {expandUrl} from "../app/utils";
import ErrorBoundary from "./ErrorBoundary";
import routes from "./routes";
import {useAutoSubscribe, useConnectionListeners, useLocalStorageMigration} from "./hooks";
+import {Backdrop, ListItemIcon, ListItemText, Menu} from "@mui/material";
+import Paper from "@mui/material/Paper";
+import IconButton from "@mui/material/IconButton";
+import {MoreVert} from "@mui/icons-material";
+import InsertEmoticonIcon from "@mui/icons-material/InsertEmoticon";
+import MenuItem from "@mui/material/MenuItem";
+import TextField from "@mui/material/TextField";
+import SendIcon from "@mui/icons-material/Send";
+import priority1 from "../img/priority-1.svg";
+import priority2 from "../img/priority-2.svg";
+import priority4 from "../img/priority-4.svg";
+import priority5 from "../img/priority-5.svg";
// TODO add drag and drop
// TODO races when two tabs are open
@@ -73,6 +85,7 @@ const Layout = () => {
return (
+
setMobileDrawerOpen(!mobileDrawerOpen)}
@@ -89,6 +102,7 @@ const Layout = () => {
+
);
}
@@ -114,6 +128,122 @@ const Main = (props) => {
);
};
+const priorityFiles = {
+ 1: priority1,
+ 2: priority2,
+ 4: priority4,
+ 5: priority5
+};
+
+const Sender = (props) => {
+ const [priority, setPriority] = useState(5);
+ const [priorityAnchorEl, setPriorityAnchorEl] = React.useState(null);
+ const priorityMenuOpen = Boolean(priorityAnchorEl);
+
+ const handlePriorityClick = (p) => {
+ setPriority(p);
+ setPriorityAnchorEl(null);
+ };
+
+ return (
+ theme.palette.mode === 'light' ? theme.palette.grey[100] : theme.palette.grey[900]
+ }}
+ >
+
+
+
+
+
+
+ setPriorityAnchorEl(ev.currentTarget)}>
+
+
+
+
+
+
+
+
+ );
+};
+
+const DropZone = (props) => {
+ const [showDropZone, setShowDropZone] = useState(false);
+
+ useEffect(() => {
+ window.addEventListener('dragenter', () => setShowDropZone(true));
+ }, []);
+
+ const allowSubmit = () => true;
+
+ const allowDrag = (e) => {
+ if (allowSubmit()) {
+ e.dataTransfer.dropEffect = 'copy';
+ e.preventDefault();
+ }
+ };
+ const handleDrop = (e) => {
+ e.preventDefault();
+ setShowDropZone(false);
+ console.log(e.dataTransfer.files[0]);
+ };
+
+ if (!showDropZone) {
+ return null;
+ }
+
+ return (
+ setShowDropZone(false)}
+ onDragEnter={allowDrag}
+ onDragOver={allowDrag}
+ onDragLeave={() => setShowDropZone(false)}
+ onDrop={handleDrop}
+ >
+
+
+ );
+};
+
const updateTitle = (newNotificationsCount) => {
document.title = (newNotificationsCount > 0) ? `(${newNotificationsCount}) ntfy` : "ntfy";
}
diff --git a/web/src/components/Notifications.js b/web/src/components/Notifications.js
index 38dc683b..08b3d8af 100644
--- a/web/src/components/Notifications.js
+++ b/web/src/components/Notifications.js
@@ -20,7 +20,8 @@ import {
formatMessage,
formatShortDateTime,
formatTitle,
- openUrl, shortUrl,
+ openUrl,
+ shortUrl,
topicShortUrl,
unmatchedTags
} from "../app/utils";