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 { getErrMsg } from "@/utils/error"; import { NotifyChannelDingTalk, NotifyChannels } from "@/domain/settings"; import { useNotifyContext } from "@/providers/notify"; import { update } from "@/repository/settings"; import Show from "@/components/Show"; import { notifyTest } from "@/api/notify"; type DingTalkSetting = { id: string; name: string; data: NotifyChannelDingTalk; }; const DingTalk = () => { const { config, setChannels } = useNotifyContext(); const { t } = useTranslation(); const [changed, setChanged] = useState(false); const [dingtalk, setDingtalk] = useState({ id: config.id ?? "", name: "notifyChannels", data: { accessToken: "", secret: "", enabled: false, }, }); const [originDingtalk, setOriginDingtalk] = useState({ id: config.id ?? "", name: "notifyChannels", data: { accessToken: "", secret: "", enabled: false, }, }); useEffect(() => { setChanged(false); }, [config]); useEffect(() => { const data = getDetailDingTalk(); setOriginDingtalk({ id: config.id ?? "", name: "dingtalk", data, }); }, [config]); useEffect(() => { const data = getDetailDingTalk(); setDingtalk({ id: config.id ?? "", name: "dingtalk", data, }); }, [config]); const { toast } = useToast(); const getDetailDingTalk = () => { const df: NotifyChannelDingTalk = { accessToken: "", secret: "", enabled: false, }; if (!config.content) { return df; } const chanels = config.content as NotifyChannels; if (!chanels.dingtalk) { return df; } return chanels.dingtalk as NotifyChannelDingTalk; }; const checkChanged = (data: NotifyChannelDingTalk) => { if (data.accessToken !== originDingtalk.data.accessToken || data.secret !== originDingtalk.data.secret) { setChanged(true); } else { setChanged(false); } }; const handleSaveClick = async () => { try { const resp = await update({ ...config, name: "notifyChannels", content: { ...config.content, dingtalk: { ...dingtalk.data, }, }, }); setChannels(resp); toast({ title: t("common.save.succeeded.message"), description: t("settings.notification.config.saved.message"), }); } catch (e) { const msg = getErrMsg(e); toast({ title: t("common.save.failed.message"), description: `${t("settings.notification.config.failed.message")}: ${msg}`, variant: "destructive", }); } finally { setTesting(false); } }; const [testing, setTesting] = useState(false); const handlePushTestClick = async () => { if (testing) return; try { setTesting(true); await notifyTest("dingtalk"); toast({ title: t("settings.notification.push_test_message.succeeded.message"), description: t("settings.notification.push_test_message.succeeded.message"), }); } catch (e) { const msg = getErrMsg(e); toast({ title: t("settings.notification.push_test_message.failed.message"), description: `${t("settings.notification.push_test_message.failed.message")}: ${msg}`, variant: "destructive", }); } }; const handleSwitchChange = async () => { const newData = { ...dingtalk, data: { ...dingtalk.data, enabled: !dingtalk.data.enabled, }, }; setDingtalk(newData); try { const resp = await update({ ...config, name: "notifyChannels", content: { ...config.content, dingtalk: { ...newData.data, }, }, }); setChannels(resp); } catch (e) { const msg = getErrMsg(e); toast({ title: t("common.save.failed.message"), description: `${t("settings.notification.config.failed.message")}: ${msg}`, variant: "destructive", }); } }; return (
{ const newData = { ...dingtalk, data: { ...dingtalk.data, accessToken: e.target.value, }, }; checkChanged(newData.data); setDingtalk(newData); }} />
{ const newData = { ...dingtalk, data: { ...dingtalk.data, secret: e.target.value, }, }; checkChanged(newData.data); setDingtalk(newData); }} />
); }; export default DingTalk;