mirror of https://github.com/usememos/memos
146 lines
4.8 KiB
TypeScript
146 lines
4.8 KiB
TypeScript
import { useState } from "react";
|
|
import { useTranslate } from "@/utils/i18n";
|
|
import { toast } from "react-hot-toast";
|
|
import { useGlobalStore } from "@/store/module";
|
|
import * as api from "@/helpers/api";
|
|
import Textarea from "@mui/joy/Textarea/Textarea";
|
|
import Icon from "./Icon";
|
|
import { generateDialog } from "./Dialog";
|
|
import LocaleSelect from "./LocaleSelect";
|
|
import AppearanceSelect from "./AppearanceSelect";
|
|
|
|
type Props = DialogProps;
|
|
|
|
const UpdateCustomizedProfileDialog: React.FC<Props> = ({ destroy }: Props) => {
|
|
const t = useTranslate();
|
|
const globalStore = useGlobalStore();
|
|
const [state, setState] = useState<CustomizedProfile>(globalStore.state.systemStatus.customizedProfile);
|
|
|
|
const handleCloseButtonClick = () => {
|
|
destroy();
|
|
};
|
|
|
|
const setPartialState = (partialState: Partial<CustomizedProfile>) => {
|
|
setState((state) => {
|
|
return {
|
|
...state,
|
|
...partialState,
|
|
};
|
|
});
|
|
};
|
|
|
|
const handleNameChanged = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
setPartialState({
|
|
name: e.target.value as string,
|
|
});
|
|
};
|
|
|
|
const handleLogoUrlChanged = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
setPartialState({
|
|
logoUrl: e.target.value as string,
|
|
});
|
|
};
|
|
|
|
const handleDescriptionChanged = (e: React.ChangeEvent<HTMLTextAreaElement>) => {
|
|
setPartialState({
|
|
description: e.target.value as string,
|
|
});
|
|
};
|
|
|
|
const handleLocaleSelectChange = (locale: Locale) => {
|
|
setPartialState({
|
|
locale: locale,
|
|
});
|
|
};
|
|
|
|
const handleAppearanceSelectChange = (appearance: Appearance) => {
|
|
setPartialState({
|
|
appearance: appearance,
|
|
});
|
|
};
|
|
|
|
const handleRestoreButtonClick = () => {
|
|
setPartialState({
|
|
name: "memos",
|
|
logoUrl: "/logo.webp",
|
|
description: "",
|
|
locale: "en",
|
|
appearance: "system",
|
|
externalUrl: "",
|
|
});
|
|
};
|
|
|
|
const handleSaveButtonClick = async () => {
|
|
if (state.name === "") {
|
|
toast.error(t("message.fill-server-name"));
|
|
return;
|
|
}
|
|
|
|
try {
|
|
await api.upsertSystemSetting({
|
|
name: "customized-profile",
|
|
value: JSON.stringify(state),
|
|
});
|
|
await globalStore.fetchSystemStatus();
|
|
} catch (error) {
|
|
console.error(error);
|
|
return;
|
|
}
|
|
toast.success(t("message.succeed-update-customized-profile"));
|
|
destroy();
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div className="dialog-header-container">
|
|
<p className="title-text">{t("setting.system-section.customize-server.title")}</p>
|
|
<button className="btn close-btn" onClick={handleCloseButtonClick}>
|
|
<Icon.X />
|
|
</button>
|
|
</div>
|
|
<div className="dialog-content-container min-w-[16rem]">
|
|
<p className="text-sm mb-1">
|
|
{t("setting.system-section.server-name")}
|
|
<span className="text-sm text-gray-400 ml-1">({t("setting.system-section.customize-server.default")})</span>
|
|
</p>
|
|
<input type="text" className="input-text" value={state.name} onChange={handleNameChanged} />
|
|
<p className="text-sm mb-1 mt-2">{t("setting.system-section.customize-server.icon-url")}</p>
|
|
<input type="text" className="input-text" value={state.logoUrl} onChange={handleLogoUrlChanged} />
|
|
<p className="text-sm mb-1 mt-2">{t("setting.system-section.customize-server.description")}</p>
|
|
<Textarea minRows="2" maxRows="4" className="!input-text" value={state.description} onChange={handleDescriptionChanged} />
|
|
<p className="text-sm mb-1 mt-2">{t("setting.system-section.customize-server.locale")}</p>
|
|
<LocaleSelect className="!w-full" value={state.locale} onChange={handleLocaleSelectChange} />
|
|
<p className="text-sm mb-1 mt-2">{t("setting.system-section.customize-server.appearance")}</p>
|
|
<AppearanceSelect className="!w-full" value={state.appearance} onChange={handleAppearanceSelectChange} />
|
|
<div className="mt-4 w-full flex flex-row justify-between items-center space-x-2">
|
|
<div className="flex flex-row justify-start items-center">
|
|
<button className="btn-normal" onClick={handleRestoreButtonClick}>
|
|
{t("common.restore")}
|
|
</button>
|
|
</div>
|
|
<div className="flex flex-row justify-end items-center">
|
|
<button className="btn-text" onClick={handleCloseButtonClick}>
|
|
{t("common.cancel")}
|
|
</button>
|
|
<button className="btn-primary" onClick={handleSaveButtonClick}>
|
|
{t("common.save")}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
function showUpdateCustomizedProfileDialog() {
|
|
generateDialog(
|
|
{
|
|
className: "update-customized-profile-dialog",
|
|
dialogName: "update-customized-profile-dialog",
|
|
},
|
|
UpdateCustomizedProfileDialog
|
|
);
|
|
}
|
|
|
|
export default showUpdateCustomizedProfileDialog;
|