| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314 |
- import * as React from "react";
- import { useContext, useState } from "react";
- import {
- Button,
- TextField,
- Dialog,
- DialogContent,
- DialogContentText,
- DialogTitle,
- Chip,
- InputAdornment,
- Portal,
- Snackbar,
- useMediaQuery,
- MenuItem,
- IconButton,
- } from "@mui/material";
- import { useTranslation } from "react-i18next";
- import { useNavigate } from "react-router-dom";
- import { Clear } from "@mui/icons-material";
- import theme from "./theme";
- import subscriptionManager from "../app/SubscriptionManager";
- import DialogFooter from "./DialogFooter";
- import accountApi, { Role } from "../app/AccountApi";
- import session from "../app/Session";
- import routes from "./routes";
- import PopupMenu from "./PopupMenu";
- import { formatShortDateTime, shuffle } from "../app/utils";
- import api from "../app/Api";
- import { AccountContext } from "./App";
- import { ReserveAddDialog, ReserveDeleteDialog, ReserveEditDialog } from "./ReserveDialogs";
- import { UnauthorizedError } from "../app/errors";
- export const SubscriptionPopup = (props) => {
- const { t } = useTranslation();
- const { account } = useContext(AccountContext);
- const navigate = useNavigate();
- const [displayNameDialogOpen, setDisplayNameDialogOpen] = useState(false);
- const [reserveAddDialogOpen, setReserveAddDialogOpen] = useState(false);
- const [reserveEditDialogOpen, setReserveEditDialogOpen] = useState(false);
- const [reserveDeleteDialogOpen, setReserveDeleteDialogOpen] = useState(false);
- const [showPublishError, setShowPublishError] = useState(false);
- const { subscription } = props;
- const placement = props.placement ?? "left";
- const reservations = account?.reservations || [];
- const showReservationAdd = config.enable_reservations && !subscription?.reservation && account?.stats.reservations_remaining > 0;
- const showReservationAddDisabled =
- !showReservationAdd &&
- config.enable_reservations &&
- !subscription?.reservation &&
- (config.enable_payments || account?.stats.reservations_remaining === 0);
- const showReservationEdit = config.enable_reservations && !!subscription?.reservation;
- const showReservationDelete = config.enable_reservations && !!subscription?.reservation;
- const handleChangeDisplayName = async () => {
- setDisplayNameDialogOpen(true);
- };
- const handleReserveAdd = async () => {
- setReserveAddDialogOpen(true);
- };
- const handleReserveEdit = async () => {
- setReserveEditDialogOpen(true);
- };
- const handleReserveDelete = async () => {
- setReserveDeleteDialogOpen(true);
- };
- const handleSendTestMessage = async () => {
- const { baseUrl } = props.subscription;
- const { topic } = props.subscription;
- const tags = shuffle([
- "grinning",
- "octopus",
- "upside_down_face",
- "palm_tree",
- "maple_leaf",
- "apple",
- "skull",
- "warning",
- "jack_o_lantern",
- "de-server-1",
- "backups",
- "cron-script",
- "script-error",
- "phils-automation",
- "mouse",
- "go-rocks",
- "hi-ben",
- ]).slice(0, Math.round(Math.random() * 4));
- const priority = shuffle([1, 2, 3, 4, 5])[0];
- const title = shuffle([
- "",
- "",
- "", // Higher chance of no title
- "Oh my, another test message?",
- "Titles are optional, did you know that?",
- "ntfy is open source, and will always be free. Cool, right?",
- "I don't really like apples",
- "My favorite TV show is The Wire. You should watch it!",
- "You can attach files and URLs to messages too",
- "You can delay messages up to 3 days",
- ])[0];
- const nowSeconds = Math.round(Date.now() / 1000);
- const message = shuffle([
- `Hello friend, this is a test notification from ntfy web. It's ${formatShortDateTime(nowSeconds)} right now. Is that early or late?`,
- `So I heard you like ntfy? If that's true, go to GitHub and star it, or to the Play store and rate it. Thanks! Oh yeah, this is a test notification.`,
- `It's almost like you want to hear what I have to say. I'm not even a machine. I'm just a sentence that Phil typed on a random Thursday.`,
- `Alright then, it's ${formatShortDateTime(nowSeconds)} already. Boy oh boy, where did the time go? I hope you're alright, friend.`,
- `There are nine million bicycles in Beijing That's a fact; It's a thing we can't deny. I wonder if that's true ...`,
- `I'm really excited that you're trying out ntfy. Did you know that there are a few public topics, such as ntfy.sh/stats and ntfy.sh/announcements.`,
- `It's interesting to hear what people use ntfy for. I've heard people talk about using it for so many cool things. What do you use it for?`,
- ])[0];
- try {
- await api.publish(baseUrl, topic, message, {
- title,
- priority,
- tags,
- });
- } catch (e) {
- console.log(`[SubscriptionPopup] Error publishing message`, e);
- setShowPublishError(true);
- }
- };
- const handleClearAll = async () => {
- console.log(`[SubscriptionPopup] Deleting all notifications from ${props.subscription.id}`);
- await subscriptionManager.deleteNotifications(props.subscription.id);
- };
- const handleUnsubscribe = async () => {
- console.log(`[SubscriptionPopup] Unsubscribing from ${props.subscription.id}`, props.subscription);
- await subscriptionManager.remove(props.subscription.id);
- if (session.exists() && !subscription.internal) {
- try {
- await accountApi.deleteSubscription(props.subscription.baseUrl, props.subscription.topic);
- } catch (e) {
- console.log(`[SubscriptionPopup] Error unsubscribing`, e);
- if (e instanceof UnauthorizedError) {
- session.resetAndRedirect(routes.login);
- }
- }
- }
- const newSelected = await subscriptionManager.first(); // May be undefined
- if (newSelected && !newSelected.internal) {
- navigate(routes.forSubscription(newSelected));
- } else {
- navigate(routes.app);
- }
- };
- return (
- <>
- <PopupMenu horizontal={placement} anchorEl={props.anchor} open={!!props.anchor} onClose={props.onClose}>
- <MenuItem onClick={handleChangeDisplayName}>{t("action_bar_change_display_name")}</MenuItem>
- {showReservationAdd && <MenuItem onClick={handleReserveAdd}>{t("action_bar_reservation_add")}</MenuItem>}
- {showReservationAddDisabled && (
- <MenuItem sx={{ cursor: "default" }}>
- <span style={{ opacity: 0.3 }}>{t("action_bar_reservation_add")}</span>
- <ReserveLimitChip />
- </MenuItem>
- )}
- {showReservationEdit && <MenuItem onClick={handleReserveEdit}>{t("action_bar_reservation_edit")}</MenuItem>}
- {showReservationDelete && <MenuItem onClick={handleReserveDelete}>{t("action_bar_reservation_delete")}</MenuItem>}
- <MenuItem onClick={handleSendTestMessage}>{t("action_bar_send_test_notification")}</MenuItem>
- <MenuItem onClick={handleClearAll}>{t("action_bar_clear_notifications")}</MenuItem>
- <MenuItem onClick={handleUnsubscribe}>{t("action_bar_unsubscribe")}</MenuItem>
- </PopupMenu>
- <Portal>
- <Snackbar
- open={showPublishError}
- autoHideDuration={3000}
- onClose={() => setShowPublishError(false)}
- message={t("message_bar_error_publishing")}
- />
- <DisplayNameDialog open={displayNameDialogOpen} subscription={subscription} onClose={() => setDisplayNameDialogOpen(false)} />
- {showReservationAdd && (
- <ReserveAddDialog
- open={reserveAddDialogOpen}
- topic={subscription.topic}
- reservations={reservations}
- onClose={() => setReserveAddDialogOpen(false)}
- />
- )}
- {showReservationEdit && (
- <ReserveEditDialog
- open={reserveEditDialogOpen}
- reservation={subscription.reservation}
- reservations={props.reservations}
- onClose={() => setReserveEditDialogOpen(false)}
- />
- )}
- {showReservationDelete && (
- <ReserveDeleteDialog
- open={reserveDeleteDialogOpen}
- topic={subscription.topic}
- onClose={() => setReserveDeleteDialogOpen(false)}
- />
- )}
- </Portal>
- </>
- );
- };
- const DisplayNameDialog = (props) => {
- const { t } = useTranslation();
- const { subscription } = props;
- const [error, setError] = useState("");
- const [displayName, setDisplayName] = useState(subscription.displayName ?? "");
- const fullScreen = useMediaQuery(theme.breakpoints.down("sm"));
- const handleSave = async () => {
- await subscriptionManager.setDisplayName(subscription.id, displayName);
- if (session.exists() && !subscription.internal) {
- try {
- console.log(`[SubscriptionSettingsDialog] Updating subscription display name to ${displayName}`);
- await accountApi.updateSubscription(subscription.baseUrl, subscription.topic, { display_name: displayName });
- } catch (e) {
- console.log(`[SubscriptionSettingsDialog] Error updating subscription`, e);
- if (e instanceof UnauthorizedError) {
- session.resetAndRedirect(routes.login);
- } else {
- setError(e.message);
- return;
- }
- }
- }
- props.onClose();
- };
- return (
- <Dialog open={props.open} onClose={props.onClose} maxWidth="sm" fullWidth fullScreen={fullScreen}>
- <DialogTitle>{t("display_name_dialog_title")}</DialogTitle>
- <DialogContent>
- <DialogContentText>{t("display_name_dialog_description")}</DialogContentText>
- <TextField
- autoFocus
- placeholder={t("display_name_dialog_placeholder")}
- value={displayName}
- onChange={(ev) => setDisplayName(ev.target.value)}
- type="text"
- fullWidth
- variant="standard"
- inputProps={{
- maxLength: 64,
- "aria-label": t("display_name_dialog_placeholder"),
- }}
- InputProps={{
- endAdornment: (
- <InputAdornment position="end">
- <IconButton onClick={() => setDisplayName("")} edge="end">
- <Clear />
- </IconButton>
- </InputAdornment>
- ),
- }}
- />
- </DialogContent>
- <DialogFooter status={error}>
- <Button onClick={props.onClose}>{t("common_cancel")}</Button>
- <Button onClick={handleSave}>{t("common_save")}</Button>
- </DialogFooter>
- </Dialog>
- );
- };
- export const ReserveLimitChip = () => {
- const { account } = useContext(AccountContext);
- if (account?.role === Role.ADMIN || account?.stats.reservations_remaining > 0) {
- return <></>;
- }
- if (config.enable_payments) {
- return account?.limits.reservations > 0 ? <LimitReachedChip /> : <ProChip />;
- }
- if (account) {
- return <LimitReachedChip />;
- }
- return <></>;
- };
- const LimitReachedChip = () => {
- const { t } = useTranslation();
- return (
- <Chip
- label={t("action_bar_reservation_limit_reached")}
- variant="outlined"
- color="primary"
- sx={{
- opacity: 0.8,
- borderWidth: "2px",
- height: "24px",
- marginLeft: "5px",
- }}
- />
- );
- };
- export const ProChip = () => (
- <Chip
- label="ntfy Pro"
- variant="outlined"
- color="primary"
- sx={{
- opacity: 0.8,
- fontWeight: "bold",
- borderWidth: "2px",
- height: "24px",
- marginLeft: "5px",
- }}
- />
- );
|