mirror of
https://github.com/usememos/memos.git
synced 2025-04-13 09:02:09 +02:00
* Docker * feat: support set openai api host * fix css * fix eslint * use API in backend & put host check in plugin/openai * fix go-static-checks
274 lines
8.5 KiB
TypeScript
274 lines
8.5 KiB
TypeScript
import { useEffect, useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { Button, Divider, Input, Switch, Textarea } from "@mui/joy";
|
|
import { useGlobalStore } from "../../store/module";
|
|
import * as api from "../../helpers/api";
|
|
import toastHelper from "../Toast";
|
|
import showUpdateCustomizedProfileDialog from "../UpdateCustomizedProfileDialog";
|
|
import { useAppDispatch } from "../../store";
|
|
import { setGlobalState } from "../../store/reducer/global";
|
|
import "@/less/settings/system-section.less";
|
|
|
|
interface State {
|
|
dbSize: number;
|
|
allowSignUp: boolean;
|
|
disablePublicMemos: boolean;
|
|
openAIApiKey: string;
|
|
openAIApiHost: string;
|
|
additionalStyle: string;
|
|
additionalScript: string;
|
|
}
|
|
|
|
const formatBytes = (bytes: number) => {
|
|
if (bytes <= 0) return "0 Bytes";
|
|
const k = 1024,
|
|
dm = 2,
|
|
sizes = ["Bytes", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"],
|
|
i = Math.floor(Math.log(bytes) / Math.log(k));
|
|
return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + sizes[i];
|
|
};
|
|
|
|
const SystemSection = () => {
|
|
const { t } = useTranslation();
|
|
const globalStore = useGlobalStore();
|
|
const systemStatus = globalStore.state.systemStatus;
|
|
const [state, setState] = useState<State>({
|
|
dbSize: systemStatus.dbSize,
|
|
allowSignUp: systemStatus.allowSignUp,
|
|
additionalStyle: systemStatus.additionalStyle,
|
|
openAIApiKey: "",
|
|
openAIApiHost: systemStatus.openAIApiHost,
|
|
additionalScript: systemStatus.additionalScript,
|
|
disablePublicMemos: systemStatus.disablePublicMemos,
|
|
});
|
|
|
|
const dispatch = useAppDispatch();
|
|
|
|
useEffect(() => {
|
|
globalStore.fetchSystemStatus();
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
setState({
|
|
dbSize: systemStatus.dbSize,
|
|
allowSignUp: systemStatus.allowSignUp,
|
|
additionalStyle: systemStatus.additionalStyle,
|
|
openAIApiKey: "",
|
|
openAIApiHost: systemStatus.openAIApiHost,
|
|
additionalScript: systemStatus.additionalScript,
|
|
disablePublicMemos: systemStatus.disablePublicMemos,
|
|
});
|
|
}, [systemStatus]);
|
|
|
|
const handleAllowSignUpChanged = async (value: boolean) => {
|
|
setState({
|
|
...state,
|
|
allowSignUp: value,
|
|
});
|
|
await api.upsertSystemSetting({
|
|
name: "allowSignUp",
|
|
value: JSON.stringify(value),
|
|
});
|
|
};
|
|
|
|
const handleUpdateCustomizedProfileButtonClick = () => {
|
|
showUpdateCustomizedProfileDialog();
|
|
};
|
|
|
|
const handleVacuumBtnClick = async () => {
|
|
try {
|
|
await api.vacuumDatabase();
|
|
await globalStore.fetchSystemStatus();
|
|
} catch (error) {
|
|
console.error(error);
|
|
return;
|
|
}
|
|
toastHelper.success(t("message.succeed-vacuum-database"));
|
|
};
|
|
|
|
const handleOpenAIApiKeyChanged = (value: string) => {
|
|
setState({
|
|
...state,
|
|
openAIApiKey: value,
|
|
});
|
|
};
|
|
|
|
const handleSaveOpenAIApiKey = async () => {
|
|
try {
|
|
await api.upsertSystemSetting({
|
|
name: "openAIApiKey",
|
|
value: JSON.stringify(state.openAIApiKey),
|
|
});
|
|
} catch (error) {
|
|
console.error(error);
|
|
return;
|
|
}
|
|
toastHelper.success("OpenAI Api Key updated");
|
|
};
|
|
|
|
const handleOpenAIApiHostChanged = (value: string) => {
|
|
setState({
|
|
...state,
|
|
openAIApiHost: value,
|
|
});
|
|
};
|
|
|
|
const handleSaveOpenAIApiHost = async () => {
|
|
try {
|
|
await api.upsertSystemSetting({
|
|
name: "openAIApiHost",
|
|
value: JSON.stringify(state.openAIApiHost),
|
|
});
|
|
} catch (error) {
|
|
console.error(error);
|
|
return;
|
|
}
|
|
toastHelper.success("OpenAI Api Host updated");
|
|
};
|
|
|
|
const handleAdditionalStyleChanged = (value: string) => {
|
|
setState({
|
|
...state,
|
|
additionalStyle: value,
|
|
});
|
|
};
|
|
|
|
const handleSaveAdditionalStyle = async () => {
|
|
try {
|
|
await api.upsertSystemSetting({
|
|
name: "additionalStyle",
|
|
value: JSON.stringify(state.additionalStyle),
|
|
});
|
|
} catch (error) {
|
|
console.error(error);
|
|
return;
|
|
}
|
|
toastHelper.success(t("message.succeed-update-additional-style"));
|
|
};
|
|
|
|
const handleAdditionalScriptChanged = (value: string) => {
|
|
setState({
|
|
...state,
|
|
additionalScript: value,
|
|
});
|
|
};
|
|
|
|
const handleSaveAdditionalScript = async () => {
|
|
try {
|
|
await api.upsertSystemSetting({
|
|
name: "additionalScript",
|
|
value: JSON.stringify(state.additionalScript),
|
|
});
|
|
} catch (error) {
|
|
console.error(error);
|
|
return;
|
|
}
|
|
toastHelper.success(t("message.succeed-update-additional-script"));
|
|
};
|
|
|
|
const handleDisablePublicMemosChanged = async (value: boolean) => {
|
|
setState({
|
|
...state,
|
|
disablePublicMemos: value,
|
|
});
|
|
// Update global store immediately as MemoEditor/Selector is dependent on this value.
|
|
dispatch(setGlobalState({ systemStatus: { ...systemStatus, disablePublicMemos: value } }));
|
|
await api.upsertSystemSetting({
|
|
name: "disablePublicMemos",
|
|
value: JSON.stringify(value),
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div className="section-container system-section-container">
|
|
<p className="title-text">{t("common.basic")}</p>
|
|
<div className="form-label">
|
|
<div className="normal-text">
|
|
{t("setting.system-section.server-name")}: <span className="font-mono font-bold">{systemStatus.customizedProfile.name}</span>
|
|
</div>
|
|
<Button onClick={handleUpdateCustomizedProfileButtonClick}>{t("common.edit")}</Button>
|
|
</div>
|
|
<div className="form-label">
|
|
<span className="normal-text">
|
|
{t("setting.system-section.database-file-size")}: <span className="font-mono font-bold">{formatBytes(state.dbSize)}</span>
|
|
</span>
|
|
<Button onClick={handleVacuumBtnClick}>{t("common.vacuum")}</Button>
|
|
</div>
|
|
<p className="title-text">{t("common.settings")}</p>
|
|
<div className="form-label">
|
|
<span className="normal-text">{t("setting.system-section.allow-user-signup")}</span>
|
|
<Switch checked={state.allowSignUp} onChange={(event) => handleAllowSignUpChanged(event.target.checked)} />
|
|
</div>
|
|
<div className="form-label">
|
|
<span className="normal-text">{t("setting.system-section.disable-public-memos")}</span>
|
|
<Switch checked={state.disablePublicMemos} onChange={(event) => handleDisablePublicMemosChanged(event.target.checked)} />
|
|
</div>
|
|
<Divider className="!mt-3 !my-4" />
|
|
<div className="form-label">
|
|
<span className="normal-text">OpenAI API Key</span>
|
|
<Button onClick={handleSaveOpenAIApiKey}>{t("common.save")}</Button>
|
|
</div>
|
|
<Input
|
|
className="w-full"
|
|
sx={{
|
|
fontFamily: "monospace",
|
|
fontSize: "14px",
|
|
}}
|
|
placeholder="Write only"
|
|
value={state.openAIApiKey}
|
|
onChange={(event) => handleOpenAIApiKeyChanged(event.target.value)}
|
|
/>
|
|
<div className="form-label mt-2">
|
|
<span className="normal-text">OpenAI API Host</span>
|
|
<Button onClick={handleSaveOpenAIApiHost}>{t("common.save")}</Button>
|
|
</div>
|
|
<Input
|
|
className="w-full"
|
|
sx={{
|
|
fontFamily: "monospace",
|
|
fontSize: "14px",
|
|
}}
|
|
placeholder="OpenAI Host. Default: https://api.openai.com"
|
|
value={state.openAIApiHost}
|
|
onChange={(event) => handleOpenAIApiHostChanged(event.target.value)}
|
|
/>
|
|
<Divider className="!mt-3 !my-4" />
|
|
<div className="form-label">
|
|
<span className="normal-text">{t("setting.system-section.additional-style")}</span>
|
|
<Button onClick={handleSaveAdditionalStyle}>{t("common.save")}</Button>
|
|
</div>
|
|
<Textarea
|
|
className="w-full"
|
|
sx={{
|
|
fontFamily: "monospace",
|
|
fontSize: "14px",
|
|
}}
|
|
minRows={2}
|
|
maxRows={4}
|
|
placeholder={t("setting.system-section.additional-style-placeholder")}
|
|
value={state.additionalStyle}
|
|
onChange={(event) => handleAdditionalStyleChanged(event.target.value)}
|
|
/>
|
|
<div className="form-label mt-2">
|
|
<span className="normal-text">{t("setting.system-section.additional-script")}</span>
|
|
<Button onClick={handleSaveAdditionalScript}>{t("common.save")}</Button>
|
|
</div>
|
|
<Textarea
|
|
className="w-full"
|
|
color="neutral"
|
|
sx={{
|
|
fontFamily: "monospace",
|
|
fontSize: "14px",
|
|
}}
|
|
minRows={2}
|
|
maxRows={4}
|
|
placeholder={t("setting.system-section.additional-script-placeholder")}
|
|
value={state.additionalScript}
|
|
onChange={(event) => handleAdditionalScriptChanged(event.target.value)}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default SystemSection;
|