import { useEffect, useState } from "react"; import { useTranslation } from "react-i18next"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; import { Switch } from "@/components/ui/switch"; import { useToast } from "@/components/ui/use-toast"; import { getErrMessage } from "@/lib/error"; import { isValidURL } from "@/lib/url"; import { NotifyChannels, NotifyChannelWebhook } from "@/domain/settings"; import { update } from "@/repository/settings"; import { useNotifyContext } from "@/providers/notify"; import { notifyTest } from "@/api/notify"; import Show from "@/components/Show"; type WebhookSetting = { id: string; name: string; data: NotifyChannelWebhook; }; const Webhook = () => { const { config, setChannels } = useNotifyContext(); const { t } = useTranslation(); const [changed, setChanged] = useState(false); const [webhook, setWebhook] = useState({ id: config.id ?? "", name: "notifyChannels", data: { url: "", enabled: false, }, }); const [originWebhook, setOriginWebhook] = useState({ id: config.id ?? "", name: "notifyChannels", data: { url: "", enabled: false, }, }); useEffect(() => { setChanged(false); }, [config]); useEffect(() => { const data = getDetailWebhook(); setOriginWebhook({ id: config.id ?? "", name: "webhook", data, }); }, [config]); useEffect(() => { const data = getDetailWebhook(); setWebhook({ id: config.id ?? "", name: "webhook", data, }); }, [config]); const { toast } = useToast(); const checkChanged = (data: NotifyChannelWebhook) => { if (data.url !== originWebhook.data.url) { setChanged(true); } else { setChanged(false); } }; const getDetailWebhook = () => { const df: NotifyChannelWebhook = { url: "", enabled: false, }; if (!config.content) { return df; } const chanels = config.content as NotifyChannels; if (!chanels.webhook) { return df; } return chanels.webhook as NotifyChannelWebhook; }; const handleSaveClick = async () => { try { webhook.data.url = webhook.data.url.trim(); if (!isValidURL(webhook.data.url)) { toast({ title: t("common.save.failed.message"), description: t("settings.notification.url.errmsg.invalid"), variant: "destructive", }); return; } const resp = await update({ ...config, name: "notifyChannels", content: { ...config.content, webhook: { ...webhook.data, }, }, }); setChannels(resp); toast({ title: t("common.save.succeeded.message"), description: t("settings.notification.config.saved.message"), }); } catch (e) { const msg = getErrMessage(e); toast({ title: t("common.save.failed.message"), description: `${t("settings.notification.config.failed.message")}: ${msg}`, variant: "destructive", }); } }; const handlePushTestClick = async () => { try { await notifyTest("webhook"); toast({ title: t("settings.notification.config.push.test.message.success.message"), description: t("settings.notification.config.push.test.message.success.message"), }); } catch (e) { const msg = getErrMessage(e); toast({ title: t("settings.notification.config.push.test.message.failed.message"), description: `${t("settings.notification.config.push.test.message.failed.message")}: ${msg}`, variant: "destructive", }); } }; const handleSwitchChange = async () => { const newData = { ...webhook, data: { ...webhook.data, enabled: !webhook.data.enabled, }, }; setWebhook(newData); try { const resp = await update({ ...config, name: "notifyChannels", content: { ...config.content, webhook: { ...newData.data, }, }, }); setChannels(resp); } catch (e) { const msg = getErrMessage(e); toast({ title: t("common.save.failed.message"), description: `${t("settings.notification.config.failed.message")}: ${msg}`, variant: "destructive", }); } }; return (
{ const newData = { ...webhook, data: { ...webhook.data, url: e.target.value, }, }; checkChanged(newData.data); setWebhook(newData); }} />
); }; export default Webhook;