mirror of
https://github.com/woodchen-ink/certimate.git
synced 2025-07-18 17:31:55 +08:00
250 lines
6.1 KiB
TypeScript
250 lines
6.1 KiB
TypeScript
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<boolean>(false);
|
|
|
|
const [webhook, setWebhook] = useState<WebhookSetting>({
|
|
id: config.id ?? "",
|
|
name: "notifyChannels",
|
|
data: {
|
|
url: "",
|
|
enabled: false,
|
|
},
|
|
});
|
|
|
|
const [originWebhook, setOriginWebhook] = useState<WebhookSetting>({
|
|
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("common.errmsg.url_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 [testing, setTesting] = useState<boolean>(false);
|
|
const handlePushTestClick = async () => {
|
|
if (testing) return;
|
|
|
|
try {
|
|
setTesting(true);
|
|
|
|
await notifyTest("webhook");
|
|
|
|
toast({
|
|
title: t("settings.notification.push_test_message.succeeded.message"),
|
|
description: t("settings.notification.push_test_message.succeeded.message"),
|
|
});
|
|
} catch (e) {
|
|
const msg = getErrMessage(e);
|
|
|
|
toast({
|
|
title: t("settings.notification.push_test_message.failed.message"),
|
|
description: `${t("settings.notification.push_test_message.failed.message")}: ${msg}`,
|
|
variant: "destructive",
|
|
});
|
|
} finally {
|
|
setTesting(false);
|
|
}
|
|
};
|
|
|
|
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 (
|
|
<div className="flex flex-col space-y-4">
|
|
<div>
|
|
<Label>{t("settings.notification.webhook.url.label")}</Label>
|
|
<Input
|
|
placeholder={t("settings.notification.webhook.url.placeholder")}
|
|
value={webhook.data.url}
|
|
onChange={(e) => {
|
|
const newData = {
|
|
...webhook,
|
|
data: {
|
|
...webhook.data,
|
|
url: e.target.value,
|
|
},
|
|
};
|
|
|
|
checkChanged(newData.data);
|
|
setWebhook(newData);
|
|
}}
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex justify-between gap-4">
|
|
<div className="flex items-center space-x-1">
|
|
<Switch id="airplane-mode" checked={webhook.data.enabled} onCheckedChange={handleSwitchChange} />
|
|
<Label htmlFor="airplane-mode">{t("settings.notification.config.enable")}</Label>
|
|
</div>
|
|
|
|
<div className="flex items-center space-x-1">
|
|
<Show when={changed}>
|
|
<Button
|
|
onClick={() => {
|
|
handleSaveClick();
|
|
}}
|
|
>
|
|
{t("common.save")}
|
|
</Button>
|
|
</Show>
|
|
|
|
<Show when={!changed && webhook.id != ""}>
|
|
<Button
|
|
variant="secondary"
|
|
loading={testing}
|
|
onClick={() => {
|
|
handlePushTestClick();
|
|
}}
|
|
>
|
|
{t("settings.notification.push_test_message")}
|
|
</Button>
|
|
</Show>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Webhook;
|