324 lines
14 KiB
JavaScript
324 lines
14 KiB
JavaScript
import Drawer from "@mui/material/Drawer";
|
|
import * as React from "react";
|
|
import {useState} from "react";
|
|
import ListItemButton from "@mui/material/ListItemButton";
|
|
import ListItemIcon from "@mui/material/ListItemIcon";
|
|
import ChatBubbleOutlineIcon from "@mui/icons-material/ChatBubbleOutline";
|
|
import Person from "@mui/icons-material/Person";
|
|
import ListItemText from "@mui/material/ListItemText";
|
|
import Toolbar from "@mui/material/Toolbar";
|
|
import Divider from "@mui/material/Divider";
|
|
import List from "@mui/material/List";
|
|
import SettingsIcon from "@mui/icons-material/Settings";
|
|
import AddIcon from "@mui/icons-material/Add";
|
|
import SubscribeDialog from "./SubscribeDialog";
|
|
import {Alert, AlertTitle, Badge, CircularProgress, Link, ListSubheader, Tooltip} from "@mui/material";
|
|
import Button from "@mui/material/Button";
|
|
import Typography from "@mui/material/Typography";
|
|
import {openUrl, topicDisplayName, topicUrl} from "../app/utils";
|
|
import routes from "./routes";
|
|
import {ConnectionState} from "../app/Connection";
|
|
import {useLocation, useNavigate} from "react-router-dom";
|
|
import subscriptionManager from "../app/SubscriptionManager";
|
|
import {ChatBubble, Lock, NotificationsOffOutlined, Public, PublicOff, Send} from "@mui/icons-material";
|
|
import Box from "@mui/material/Box";
|
|
import notifier from "../app/Notifier";
|
|
import config from "../app/config";
|
|
import ArticleIcon from '@mui/icons-material/Article';
|
|
import {Trans, useTranslation} from "react-i18next";
|
|
import session from "../app/Session";
|
|
import accountApi from "../app/AccountApi";
|
|
import CelebrationIcon from '@mui/icons-material/Celebration';
|
|
import UpgradeDialog from "./UpgradeDialog";
|
|
|
|
const navWidth = 280;
|
|
|
|
const Navigation = (props) => {
|
|
const navigationList = <NavList {...props}/>;
|
|
return (
|
|
<Box
|
|
component="nav"
|
|
role="navigation"
|
|
sx={{width: {sm: Navigation.width}, flexShrink: {sm: 0}}}
|
|
>
|
|
{/* Mobile drawer; only shown if menu icon clicked (mobile open) and display is small */}
|
|
<Drawer
|
|
variant="temporary"
|
|
role="menubar"
|
|
open={props.mobileDrawerOpen}
|
|
onClose={props.onMobileDrawerToggle}
|
|
ModalProps={{ keepMounted: true }} // Better open performance on mobile.
|
|
sx={{
|
|
display: { xs: 'block', sm: 'none' },
|
|
'& .MuiDrawer-paper': { boxSizing: 'border-box', width: navWidth },
|
|
}}
|
|
>
|
|
{navigationList}
|
|
</Drawer>
|
|
{/* Big screen drawer; persistent, shown if screen is big */}
|
|
<Drawer
|
|
open
|
|
variant="permanent"
|
|
role="menubar"
|
|
sx={{
|
|
display: { xs: 'none', sm: 'block' },
|
|
'& .MuiDrawer-paper': { boxSizing: 'border-box', width: navWidth },
|
|
}}
|
|
>
|
|
{navigationList}
|
|
</Drawer>
|
|
</Box>
|
|
);
|
|
};
|
|
Navigation.width = navWidth;
|
|
|
|
const NavList = (props) => {
|
|
const { t } = useTranslation();
|
|
const navigate = useNavigate();
|
|
const location = useLocation();
|
|
const [subscribeDialogKey, setSubscribeDialogKey] = useState(0);
|
|
const [subscribeDialogOpen, setSubscribeDialogOpen] = useState(false);
|
|
|
|
const handleSubscribeReset = () => {
|
|
setSubscribeDialogOpen(false);
|
|
setSubscribeDialogKey(prev => prev+1);
|
|
}
|
|
|
|
const handleSubscribeSubmit = (subscription) => {
|
|
console.log(`[Navigation] New subscription: ${subscription.id}`, subscription);
|
|
handleSubscribeReset();
|
|
navigate(routes.forSubscription(subscription));
|
|
handleRequestNotificationPermission();
|
|
}
|
|
|
|
const handleRequestNotificationPermission = () => {
|
|
notifier.maybeRequestPermission(granted => props.onNotificationGranted(granted))
|
|
};
|
|
|
|
const handleAccountClick = () => {
|
|
accountApi.sync(); // Dangle!
|
|
navigate(routes.account);
|
|
};
|
|
|
|
const isAdmin = props.account?.role === "admin";
|
|
const isPaid = props.account?.tier?.paid;
|
|
const showUpgradeBanner = config.enable_payments && !isAdmin && !isPaid;// && (!props.account || !props.account.tier || !props.account.tier.paid || props.account);
|
|
const showSubscriptionsList = props.subscriptions?.length > 0;
|
|
const showNotificationBrowserNotSupportedBox = !notifier.browserSupported();
|
|
const showNotificationContextNotSupportedBox = notifier.browserSupported() && !notifier.contextSupported(); // Only show if notifications are generally supported in the browser
|
|
const showNotificationGrantBox = notifier.supported() && props.subscriptions?.length > 0 && !props.notificationsGranted;
|
|
const navListPadding = (showNotificationGrantBox || showNotificationBrowserNotSupportedBox || showNotificationContextNotSupportedBox) ? '0' : '';
|
|
|
|
return (
|
|
<>
|
|
<Toolbar sx={{ display: { xs: 'none', sm: 'block' } }}/>
|
|
<List component="nav" sx={{ paddingTop: navListPadding }}>
|
|
{showNotificationBrowserNotSupportedBox && <NotificationBrowserNotSupportedAlert/>}
|
|
{showNotificationContextNotSupportedBox && <NotificationContextNotSupportedAlert/>}
|
|
{showNotificationGrantBox && <NotificationGrantAlert onRequestPermissionClick={handleRequestNotificationPermission}/>}
|
|
{!showSubscriptionsList &&
|
|
<ListItemButton onClick={() => navigate(routes.app)} selected={location.pathname === config.app_root}>
|
|
<ListItemIcon><ChatBubble/></ListItemIcon>
|
|
<ListItemText primary={t("nav_button_all_notifications")}/>
|
|
</ListItemButton>}
|
|
{showSubscriptionsList &&
|
|
<>
|
|
<ListSubheader>{t("nav_topics_title")}</ListSubheader>
|
|
<ListItemButton onClick={() => navigate(routes.app)} selected={location.pathname === config.app_root}>
|
|
<ListItemIcon><ChatBubble/></ListItemIcon>
|
|
<ListItemText primary={t("nav_button_all_notifications")}/>
|
|
</ListItemButton>
|
|
<SubscriptionList
|
|
subscriptions={props.subscriptions}
|
|
selectedSubscription={props.selectedSubscription}
|
|
/>
|
|
<Divider sx={{my: 1}}/>
|
|
</>}
|
|
{session.exists() &&
|
|
<ListItemButton onClick={handleAccountClick} selected={location.pathname === routes.account}>
|
|
<ListItemIcon><Person/></ListItemIcon>
|
|
<ListItemText primary={t("nav_button_account")}/>
|
|
</ListItemButton>
|
|
}
|
|
<ListItemButton onClick={() => navigate(routes.settings)} selected={location.pathname === routes.settings}>
|
|
<ListItemIcon><SettingsIcon/></ListItemIcon>
|
|
<ListItemText primary={t("nav_button_settings")}/>
|
|
</ListItemButton>
|
|
<ListItemButton onClick={() => openUrl("/docs")}>
|
|
<ListItemIcon><ArticleIcon/></ListItemIcon>
|
|
<ListItemText primary={t("nav_button_documentation")}/>
|
|
</ListItemButton>
|
|
<ListItemButton onClick={() => props.onPublishMessageClick()}>
|
|
<ListItemIcon><Send/></ListItemIcon>
|
|
<ListItemText primary={t("nav_button_publish_message")}/>
|
|
</ListItemButton>
|
|
<ListItemButton onClick={() => setSubscribeDialogOpen(true)}>
|
|
<ListItemIcon><AddIcon/></ListItemIcon>
|
|
<ListItemText primary={t("nav_button_subscribe")}/>
|
|
</ListItemButton>
|
|
{showUpgradeBanner &&
|
|
<UpgradeBanner/>
|
|
}
|
|
</List>
|
|
<SubscribeDialog
|
|
key={`subscribeDialog${subscribeDialogKey}`} // Resets dialog when canceled/closed
|
|
open={subscribeDialogOpen}
|
|
subscriptions={props.subscriptions}
|
|
onCancel={handleSubscribeReset}
|
|
onSuccess={handleSubscribeSubmit}
|
|
/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const UpgradeBanner = () => {
|
|
const [dialogOpen, setDialogOpen] = useState(false);
|
|
return (
|
|
<Box sx={{
|
|
position: "fixed",
|
|
width: `${Navigation.width - 1}px`,
|
|
bottom: 0,
|
|
mt: 'auto',
|
|
background: "linear-gradient(150deg, rgba(196, 228, 221, 0.46) 0%, rgb(255, 255, 255) 100%)",
|
|
}}>
|
|
<Divider/>
|
|
<ListItemButton onClick={() => setDialogOpen(true)}>
|
|
<ListItemIcon><CelebrationIcon sx={{ color: "#55b86e" }} fontSize="large"/></ListItemIcon>
|
|
<ListItemText
|
|
sx={{ ml: 1 }}
|
|
primary={"Upgrade to ntfy Pro"}
|
|
secondary={"Reserve topics, more messages & emails, bigger attachments"}
|
|
primaryTypographyProps={{
|
|
style: {
|
|
fontWeight: 500,
|
|
background: "-webkit-linear-gradient(45deg, #09009f, #00ff95 80%)",
|
|
WebkitBackgroundClip: "text",
|
|
WebkitTextFillColor: "transparent"
|
|
}
|
|
}}
|
|
/>
|
|
</ListItemButton>
|
|
<UpgradeDialog
|
|
open={dialogOpen}
|
|
onCancel={() => setDialogOpen(false)}
|
|
/>
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
const SubscriptionList = (props) => {
|
|
const sortedSubscriptions = props.subscriptions.sort( (a, b) => {
|
|
return (topicUrl(a.baseUrl, a.topic) < topicUrl(b.baseUrl, b.topic)) ? -1 : 1;
|
|
});
|
|
return (
|
|
<>
|
|
{sortedSubscriptions.map(subscription =>
|
|
<SubscriptionItem
|
|
key={subscription.id}
|
|
subscription={subscription}
|
|
selected={props.selectedSubscription && props.selectedSubscription.id === subscription.id}
|
|
/>)}
|
|
</>
|
|
);
|
|
}
|
|
|
|
const SubscriptionItem = (props) => {
|
|
const { t } = useTranslation();
|
|
const navigate = useNavigate();
|
|
const subscription = props.subscription;
|
|
const iconBadge = (subscription.new <= 99) ? subscription.new : "99+";
|
|
const icon = (subscription.state === ConnectionState.Connecting)
|
|
? <CircularProgress size="24px"/>
|
|
: <Badge badgeContent={iconBadge} invisible={subscription.new === 0} color="primary"><ChatBubbleOutlineIcon/></Badge>;
|
|
const displayName = topicDisplayName(subscription);
|
|
const ariaLabel = (subscription.state === ConnectionState.Connecting)
|
|
? `${displayName} (${t("nav_button_connecting")})`
|
|
: displayName;
|
|
const handleClick = async () => {
|
|
navigate(routes.forSubscription(subscription));
|
|
await subscriptionManager.markNotificationsRead(subscription.id);
|
|
};
|
|
return (
|
|
<ListItemButton onClick={handleClick} selected={props.selected} aria-label={ariaLabel} aria-live="polite">
|
|
<ListItemIcon>{icon}</ListItemIcon>
|
|
<ListItemText primary={displayName} primaryTypographyProps={{ style: { overflow: "hidden", textOverflow: "ellipsis" } }}/>
|
|
{subscription.reservation?.everyone &&
|
|
<ListItemIcon edge="end" sx={{ minWidth: "26px" }}>
|
|
{subscription.reservation?.everyone === "read-write" &&
|
|
<Tooltip title={t("prefs_reservations_table_everyone_read_write")}><Public fontSize="small"/></Tooltip>
|
|
}
|
|
{subscription.reservation?.everyone === "read-only" &&
|
|
<Tooltip title={t("prefs_reservations_table_everyone_read_only")}><PublicOff fontSize="small"/></Tooltip>
|
|
}
|
|
{subscription.reservation?.everyone === "write-only" &&
|
|
<Tooltip title={t("prefs_reservations_table_everyone_write_only")}><PublicOff fontSize="small"/></Tooltip>
|
|
}
|
|
{subscription.reservation?.everyone === "deny-all" &&
|
|
<Tooltip title={t("prefs_reservations_table_everyone_deny_all")}><Lock fontSize="small"/></Tooltip>
|
|
}
|
|
</ListItemIcon>
|
|
}
|
|
{subscription.mutedUntil > 0 &&
|
|
<ListItemIcon edge="end" sx={{ minWidth: "26px" }} aria-label={t("nav_button_muted")}>
|
|
<Tooltip title={t("nav_button_muted")}><NotificationsOffOutlined /></Tooltip>
|
|
</ListItemIcon>
|
|
}
|
|
</ListItemButton>
|
|
);
|
|
};
|
|
|
|
const NotificationGrantAlert = (props) => {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<>
|
|
<Alert severity="warning" sx={{paddingTop: 2}}>
|
|
<AlertTitle>{t("alert_grant_title")}</AlertTitle>
|
|
<Typography gutterBottom>{t("alert_grant_description")}</Typography>
|
|
<Button
|
|
sx={{float: 'right'}}
|
|
color="inherit"
|
|
size="small"
|
|
onClick={props.onRequestPermissionClick}
|
|
>
|
|
{t("alert_grant_button")}
|
|
</Button>
|
|
</Alert>
|
|
<Divider/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const NotificationBrowserNotSupportedAlert = () => {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<>
|
|
<Alert severity="warning" sx={{paddingTop: 2}}>
|
|
<AlertTitle>{t("alert_not_supported_title")}</AlertTitle>
|
|
<Typography gutterBottom>{t("alert_not_supported_description")}</Typography>
|
|
</Alert>
|
|
<Divider/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const NotificationContextNotSupportedAlert = () => {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<>
|
|
<Alert severity="warning" sx={{paddingTop: 2}}>
|
|
<AlertTitle>{t("alert_not_supported_title")}</AlertTitle>
|
|
<Typography gutterBottom>
|
|
<Trans
|
|
i18nKey="alert_not_supported_context_description"
|
|
components={{
|
|
mdnLink: <Link href="https://developer.mozilla.org/en-US/docs/Web/API/notification" target="_blank" rel="noopener"/>
|
|
}}
|
|
/>
|
|
</Typography>
|
|
</Alert>
|
|
<Divider/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Navigation;
|