|
|
|
|
import { Button, Divider, Input, Option, Select, Switch } from "@mui/joy";
|
|
|
|
|
import React, { useState } from "react";
|
|
|
|
|
import { toast } from "react-hot-toast";
|
|
|
|
|
import { VISIBILITY_SELECTOR_ITEMS } from "@/helpers/consts";
|
|
|
|
|
import { useGlobalStore, useUserStore } from "@/store/module";
|
|
|
|
|
import { useTranslate } from "@/utils/i18n";
|
|
|
|
|
import AppearanceSelect from "../AppearanceSelect";
|
|
|
|
|
import LearnMore from "../LearnMore";
|
|
|
|
|
import LocaleSelect from "../LocaleSelect";
|
|
|
|
|
import VisibilityIcon from "../VisibilityIcon";
|
|
|
|
|
import WebhookSection from "./WebhookSection";
|
|
|
|
|
import "@/less/settings/preferences-section.less";
|
|
|
|
|
|
|
|
|
|
const PreferencesSection = () => {
|
|
|
|
|
const t = useTranslate();
|
|
|
|
|
const globalStore = useGlobalStore();
|
|
|
|
|
const userStore = useUserStore();
|
|
|
|
|
const { appearance, locale } = globalStore.state;
|
|
|
|
|
const { setting, localSetting } = userStore.state.user as User;
|
|
|
|
|
const [telegramUserId, setTelegramUserId] = useState<string>(setting.telegramUserId);
|
|
|
|
|
|
|
|
|
|
const handleLocaleSelectChange = async (locale: Locale) => {
|
|
|
|
|
await userStore.upsertUserSetting("locale", locale);
|
|
|
|
|
globalStore.setLocale(locale);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleAppearanceSelectChange = async (appearance: Appearance) => {
|
|
|
|
|
await userStore.upsertUserSetting("appearance", appearance);
|
|
|
|
|
globalStore.setAppearance(appearance);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleDefaultMemoVisibilityChanged = async (value: string) => {
|
|
|
|
|
await userStore.upsertUserSetting("memo-visibility", value);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleDoubleClickEnabledChanged = (event: React.ChangeEvent<HTMLInputElement>) => {
|
|
|
|
|
userStore.upsertLocalSetting({ ...localSetting, enableDoubleClickEditing: event.target.checked });
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleSaveTelegramUserId = async () => {
|
|
|
|
|
try {
|
|
|
|
|
await userStore.upsertUserSetting("telegram-user-id", telegramUserId);
|
|
|
|
|
toast.success(t("message.update-succeed"));
|
|
|
|
|
} catch (error: any) {
|
|
|
|
|
console.error(error);
|
|
|
|
|
toast.error(error.response.data.message);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleTelegramUserIdChanged = async (value: string) => {
|
|
|
|
|
setTelegramUserId(value);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="section-container preferences-section-container">
|
|
|
|
|
<p className="title-text">{t("common.basic")}</p>
|
|
|
|
|
<div className="form-label selector">
|
|
|
|
|
<span className="text-sm">{t("common.language")}</span>
|
|
|
|
|
<LocaleSelect value={locale} onChange={handleLocaleSelectChange} />
|
|
|
|
|
</div>
|
|
|
|
|
<div className="form-label selector">
|
|
|
|
|
<span className="text-sm">{t("setting.preference-section.theme")}</span>
|
|
|
|
|
<AppearanceSelect value={appearance} onChange={handleAppearanceSelectChange} />
|
|
|
|
|
</div>
|
|
|
|
|
<p className="title-text">{t("setting.preference")}</p>
|
|
|
|
|
<div className="form-label selector">
|
|
|
|
|
<span className="text-sm break-keep text-ellipsis overflow-hidden">{t("setting.preference-section.default-memo-visibility")}</span>
|
|
|
|
|
<Select
|
|
|
|
|
className="!min-w-fit"
|
|
|
|
|
value={setting.memoVisibility}
|
|
|
|
|
startDecorator={<VisibilityIcon visibility={setting.memoVisibility} />}
|
|
|
|
|
onChange={(_, visibility) => {
|
|
|
|
|
if (visibility) {
|
|
|
|
|
handleDefaultMemoVisibilityChanged(visibility);
|
|
|
|
|
}
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{VISIBILITY_SELECTOR_ITEMS.map((item) => (
|
|
|
|
|
<Option key={item} value={item} className="whitespace-nowrap">
|
|
|
|
|
{t(`memo.visibility.${item.toLowerCase() as Lowercase<typeof item>}`)}
|
|
|
|
|
</Option>
|
|
|
|
|
))}
|
|
|
|
|
</Select>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<label className="form-label selector">
|
|
|
|
|
<span className="text-sm break-keep">{t("setting.preference-section.enable-double-click")}</span>
|
|
|
|
|
<Switch className="ml-2" checked={localSetting.enableDoubleClickEditing} onChange={handleDoubleClickEnabledChanged} />
|
|
|
|
|
</label>
|
|
|
|
|
|
|
|
|
|
<Divider className="!mt-3 !my-4" />
|
|
|
|
|
|
|
|
|
|
<div className="mb-2 w-full flex flex-row justify-between items-center">
|
|
|
|
|
<div className="w-auto flex items-center">
|
|
|
|
|
<span className="text-sm mr-1">{t("setting.preference-section.telegram-user-id")}</span>
|
|
|
|
|
<LearnMore url="https://usememos.com/docs/integration/telegram-bot" />
|
|
|
|
|
</div>
|
|
|
|
|
<Button variant="outlined" color="neutral" onClick={handleSaveTelegramUserId}>
|
|
|
|
|
{t("common.save")}
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
<Input
|
|
|
|
|
className="w-full"
|
|
|
|
|
sx={{
|
|
|
|
|
fontFamily: "monospace",
|
|
|
|
|
fontSize: "14px",
|
|
|
|
|
}}
|
|
|
|
|
value={telegramUserId}
|
|
|
|
|
onChange={(event) => handleTelegramUserIdChanged(event.target.value)}
|
|
|
|
|
placeholder={t("setting.preference-section.telegram-user-id-placeholder")}
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<Divider className="!my-4" />
|
|
|
|
|
|
|
|
|
|
<WebhookSection />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default PreferencesSection;
|