12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127 |
- import { useState, useEffect, useMemo } from "react";
- import styles from "./settings.module.scss";
- import ResetIcon from "../icons/reload.svg";
- import AddIcon from "../icons/add.svg";
- import CloseIcon from "../icons/close.svg";
- import CopyIcon from "../icons/copy.svg";
- import ClearIcon from "../icons/clear.svg";
- import LoadingIcon from "../icons/three-dots.svg";
- import EditIcon from "../icons/edit.svg";
- import EyeIcon from "../icons/eye.svg";
- import DownloadIcon from "../icons/download.svg";
- import UploadIcon from "../icons/upload.svg";
- import ConfigIcon from "../icons/config.svg";
- import ConfirmIcon from "../icons/confirm.svg";
- import ConnectionIcon from "../icons/connection.svg";
- import CloudSuccessIcon from "../icons/cloud-success.svg";
- import CloudFailIcon from "../icons/cloud-fail.svg";
- import {
- Input,
- List,
- ListItem,
- Modal,
- PasswordInput,
- Popover,
- Select,
- showConfirm,
- showToast,
- } from "./ui-lib";
- import { ModelConfigList } from "./model-config";
- import { IconButton } from "./button";
- import {
- SubmitKey,
- useChatStore,
- Theme,
- useUpdateStore,
- useAccessStore,
- useAppConfig,
- } from "../store";
- import Locale, {
- AllLangs,
- ALL_LANG_OPTIONS,
- changeLang,
- getLang,
- } from "../locales";
- import { copyToClipboard } from "../utils";
- import Link from "next/link";
- import {
- Azure,
- OPENAI_BASE_URL,
- Path,
- RELEASE_URL,
- STORAGE_KEY,
- ServiceProvider,
- SlotID,
- UPDATE_URL,
- } from "../constant";
- import { Prompt, SearchService, usePromptStore } from "../store/prompt";
- import { ErrorBoundary } from "./error";
- import { InputRange } from "./input-range";
- import { useNavigate } from "react-router-dom";
- import { Avatar, AvatarPicker } from "./emoji";
- import { getClientConfig } from "../config/client";
- import { useSyncStore } from "../store/sync";
- import { nanoid } from "nanoid";
- import { useMaskStore } from "../store/mask";
- import { ProviderType } from "../utils/cloud";
- function EditPromptModal(props: { id: string; onClose: () => void }) {
- const promptStore = usePromptStore();
- const prompt = promptStore.get(props.id);
- return prompt ? (
- <div className="modal-mask">
- <Modal
- title={Locale.Settings.Prompt.EditModal.Title}
- onClose={props.onClose}
- actions={[
- <IconButton
- key=""
- onClick={props.onClose}
- text={Locale.UI.Confirm}
- bordered
- />,
- ]}
- >
- <div className={styles["edit-prompt-modal"]}>
- <input
- type="text"
- value={prompt.title}
- readOnly={!prompt.isUser}
- className={styles["edit-prompt-title"]}
- onInput={(e) =>
- promptStore.updatePrompt(
- props.id,
- (prompt) => (prompt.title = e.currentTarget.value),
- )
- }
- ></input>
- <Input
- value={prompt.content}
- readOnly={!prompt.isUser}
- className={styles["edit-prompt-content"]}
- rows={10}
- onInput={(e) =>
- promptStore.updatePrompt(
- props.id,
- (prompt) => (prompt.content = e.currentTarget.value),
- )
- }
- ></Input>
- </div>
- </Modal>
- </div>
- ) : null;
- }
- function UserPromptModal(props: { onClose?: () => void }) {
- const promptStore = usePromptStore();
- const userPrompts = promptStore.getUserPrompts();
- const builtinPrompts = SearchService.builtinPrompts;
- const allPrompts = userPrompts.concat(builtinPrompts);
- const [searchInput, setSearchInput] = useState("");
- const [searchPrompts, setSearchPrompts] = useState<Prompt[]>([]);
- const prompts = searchInput.length > 0 ? searchPrompts : allPrompts;
- const [editingPromptId, setEditingPromptId] = useState<string>();
- useEffect(() => {
- if (searchInput.length > 0) {
- const searchResult = SearchService.search(searchInput);
- setSearchPrompts(searchResult);
- } else {
- setSearchPrompts([]);
- }
- }, [searchInput]);
- return (
- <div className="modal-mask">
- <Modal
- title={Locale.Settings.Prompt.Modal.Title}
- onClose={() => props.onClose?.()}
- actions={[
- <IconButton
- key="add"
- onClick={() => {
- const promptId = promptStore.add({
- id: nanoid(),
- createdAt: Date.now(),
- title: "Empty Prompt",
- content: "Empty Prompt Content",
- });
- setEditingPromptId(promptId);
- }}
- icon={<AddIcon />}
- bordered
- text={Locale.Settings.Prompt.Modal.Add}
- />,
- ]}
- >
- <div className={styles["user-prompt-modal"]}>
- <input
- type="text"
- className={styles["user-prompt-search"]}
- placeholder={Locale.Settings.Prompt.Modal.Search}
- value={searchInput}
- onInput={(e) => setSearchInput(e.currentTarget.value)}
- ></input>
- <div className={styles["user-prompt-list"]}>
- {prompts.map((v, _) => (
- <div className={styles["user-prompt-item"]} key={v.id ?? v.title}>
- <div className={styles["user-prompt-header"]}>
- <div className={styles["user-prompt-title"]}>{v.title}</div>
- <div className={styles["user-prompt-content"] + " one-line"}>
- {v.content}
- </div>
- </div>
- <div className={styles["user-prompt-buttons"]}>
- {v.isUser && (
- <IconButton
- icon={<ClearIcon />}
- className={styles["user-prompt-button"]}
- onClick={() => promptStore.remove(v.id!)}
- />
- )}
- {v.isUser ? (
- <IconButton
- icon={<EditIcon />}
- className={styles["user-prompt-button"]}
- onClick={() => setEditingPromptId(v.id)}
- />
- ) : (
- <IconButton
- icon={<EyeIcon />}
- className={styles["user-prompt-button"]}
- onClick={() => setEditingPromptId(v.id)}
- />
- )}
- <IconButton
- icon={<CopyIcon />}
- className={styles["user-prompt-button"]}
- onClick={() => copyToClipboard(v.content)}
- />
- </div>
- </div>
- ))}
- </div>
- </div>
- </Modal>
- {editingPromptId !== undefined && (
- <EditPromptModal
- id={editingPromptId!}
- onClose={() => setEditingPromptId(undefined)}
- />
- )}
- </div>
- );
- }
- function DangerItems() {
- const chatStore = useChatStore();
- const appConfig = useAppConfig();
- return (
- <List>
- <ListItem
- title={Locale.Settings.Danger.Reset.Title}
- subTitle={Locale.Settings.Danger.Reset.SubTitle}
- >
- <IconButton
- text={Locale.Settings.Danger.Reset.Action}
- onClick={async () => {
- if (await showConfirm(Locale.Settings.Danger.Reset.Confirm)) {
- appConfig.reset();
- }
- }}
- type="danger"
- />
- </ListItem>
- <ListItem
- title={Locale.Settings.Danger.Clear.Title}
- subTitle={Locale.Settings.Danger.Clear.SubTitle}
- >
- <IconButton
- text={Locale.Settings.Danger.Clear.Action}
- onClick={async () => {
- if (await showConfirm(Locale.Settings.Danger.Clear.Confirm)) {
- chatStore.clearAllData();
- }
- }}
- type="danger"
- />
- </ListItem>
- </List>
- );
- }
- function CheckButton() {
- const syncStore = useSyncStore();
- const couldCheck = useMemo(() => {
- return syncStore.coundSync();
- }, [syncStore]);
- const [checkState, setCheckState] = useState<
- "none" | "checking" | "success" | "failed"
- >("none");
- async function check() {
- setCheckState("checking");
- const valid = await syncStore.check();
- setCheckState(valid ? "success" : "failed");
- }
- if (!couldCheck) return null;
- return (
- <IconButton
- text={Locale.Settings.Sync.Config.Modal.Check}
- bordered
- onClick={check}
- icon={
- checkState === "none" ? (
- <ConnectionIcon />
- ) : checkState === "checking" ? (
- <LoadingIcon />
- ) : checkState === "success" ? (
- <CloudSuccessIcon />
- ) : checkState === "failed" ? (
- <CloudFailIcon />
- ) : (
- <ConnectionIcon />
- )
- }
- ></IconButton>
- );
- }
- function SyncConfigModal(props: { onClose?: () => void }) {
- const syncStore = useSyncStore();
- return (
- <div className="modal-mask">
- <Modal
- title={Locale.Settings.Sync.Config.Modal.Title}
- onClose={() => props.onClose?.()}
- actions={[
- <CheckButton key="check" />,
- <IconButton
- key="confirm"
- onClick={props.onClose}
- icon={<ConfirmIcon />}
- bordered
- text={Locale.UI.Confirm}
- />,
- ]}
- >
- <List>
- <ListItem
- title={Locale.Settings.Sync.Config.SyncType.Title}
- subTitle={Locale.Settings.Sync.Config.SyncType.SubTitle}
- >
- <select
- value={syncStore.provider}
- onChange={(e) => {
- syncStore.update(
- (config) =>
- (config.provider = e.target.value as ProviderType),
- );
- }}
- >
- {Object.entries(ProviderType).map(([k, v]) => (
- <option value={v} key={k}>
- {k}
- </option>
- ))}
- </select>
- </ListItem>
- <ListItem
- title={Locale.Settings.Sync.Config.Proxy.Title}
- subTitle={Locale.Settings.Sync.Config.Proxy.SubTitle}
- >
- <input
- type="checkbox"
- checked={syncStore.useProxy}
- onChange={(e) => {
- syncStore.update(
- (config) => (config.useProxy = e.currentTarget.checked),
- );
- }}
- ></input>
- </ListItem>
- {syncStore.useProxy ? (
- <ListItem
- title={Locale.Settings.Sync.Config.ProxyUrl.Title}
- subTitle={Locale.Settings.Sync.Config.ProxyUrl.SubTitle}
- >
- <input
- type="text"
- value={syncStore.proxyUrl}
- onChange={(e) => {
- syncStore.update(
- (config) => (config.proxyUrl = e.currentTarget.value),
- );
- }}
- ></input>
- </ListItem>
- ) : null}
- </List>
- {syncStore.provider === ProviderType.WebDAV && (
- <>
- <List>
- <ListItem title={Locale.Settings.Sync.Config.WebDav.Endpoint}>
- <input
- type="text"
- value={syncStore.webdav.endpoint}
- onChange={(e) => {
- syncStore.update(
- (config) =>
- (config.webdav.endpoint = e.currentTarget.value),
- );
- }}
- ></input>
- </ListItem>
- <ListItem title={Locale.Settings.Sync.Config.WebDav.UserName}>
- <input
- type="text"
- value={syncStore.webdav.username}
- onChange={(e) => {
- syncStore.update(
- (config) =>
- (config.webdav.username = e.currentTarget.value),
- );
- }}
- ></input>
- </ListItem>
- <ListItem title={Locale.Settings.Sync.Config.WebDav.Password}>
- <PasswordInput
- value={syncStore.webdav.password}
- onChange={(e) => {
- syncStore.update(
- (config) =>
- (config.webdav.password = e.currentTarget.value),
- );
- }}
- ></PasswordInput>
- </ListItem>
- </List>
- </>
- )}
- {syncStore.provider === ProviderType.UpStash && (
- <List>
- <ListItem title={Locale.Settings.Sync.Config.UpStash.Endpoint}>
- <input
- type="text"
- value={syncStore.upstash.endpoint}
- onChange={(e) => {
- syncStore.update(
- (config) =>
- (config.upstash.endpoint = e.currentTarget.value),
- );
- }}
- ></input>
- </ListItem>
- <ListItem title={Locale.Settings.Sync.Config.UpStash.UserName}>
- <input
- type="text"
- value={syncStore.upstash.username}
- placeholder={STORAGE_KEY}
- onChange={(e) => {
- syncStore.update(
- (config) =>
- (config.upstash.username = e.currentTarget.value),
- );
- }}
- ></input>
- </ListItem>
- <ListItem title={Locale.Settings.Sync.Config.UpStash.Password}>
- <PasswordInput
- value={syncStore.upstash.apiKey}
- onChange={(e) => {
- syncStore.update(
- (config) => (config.upstash.apiKey = e.currentTarget.value),
- );
- }}
- ></PasswordInput>
- </ListItem>
- </List>
- )}
- </Modal>
- </div>
- );
- }
- function SyncItems() {
- const syncStore = useSyncStore();
- const chatStore = useChatStore();
- const promptStore = usePromptStore();
- const maskStore = useMaskStore();
- const couldSync = useMemo(() => {
- return syncStore.coundSync();
- }, [syncStore]);
- const [showSyncConfigModal, setShowSyncConfigModal] = useState(false);
- const stateOverview = useMemo(() => {
- const sessions = chatStore.sessions;
- const messageCount = sessions.reduce((p, c) => p + c.messages.length, 0);
- return {
- chat: sessions.length,
- message: messageCount,
- prompt: Object.keys(promptStore.prompts).length,
- mask: Object.keys(maskStore.masks).length,
- };
- }, [chatStore.sessions, maskStore.masks, promptStore.prompts]);
- return (
- <>
- <List>
- <ListItem
- title={Locale.Settings.Sync.CloudState}
- subTitle={
- syncStore.lastProvider
- ? `${new Date(syncStore.lastSyncTime).toLocaleString()} [${
- syncStore.lastProvider
- }]`
- : Locale.Settings.Sync.NotSyncYet
- }
- >
- <div style={{ display: "flex" }}>
- <IconButton
- icon={<ConfigIcon />}
- text={Locale.UI.Config}
- onClick={() => {
- setShowSyncConfigModal(true);
- }}
- />
- {couldSync && (
- <IconButton
- icon={<ResetIcon />}
- text={Locale.UI.Sync}
- onClick={async () => {
- try {
- await syncStore.sync();
- showToast(Locale.Settings.Sync.Success);
- } catch (e) {
- showToast(Locale.Settings.Sync.Fail);
- console.error("[Sync]", e);
- }
- }}
- />
- )}
- </div>
- </ListItem>
- <ListItem
- title={Locale.Settings.Sync.LocalState}
- subTitle={Locale.Settings.Sync.Overview(stateOverview)}
- >
- <div style={{ display: "flex" }}>
- <IconButton
- icon={<UploadIcon />}
- text={Locale.UI.Export}
- onClick={() => {
- syncStore.export();
- }}
- />
- <IconButton
- icon={<DownloadIcon />}
- text={Locale.UI.Import}
- onClick={() => {
- syncStore.import();
- }}
- />
- </div>
- </ListItem>
- </List>
- {showSyncConfigModal && (
- <SyncConfigModal onClose={() => setShowSyncConfigModal(false)} />
- )}
- </>
- );
- }
- export function Settings() {
- const navigate = useNavigate();
- const [showEmojiPicker, setShowEmojiPicker] = useState(false);
- const config = useAppConfig();
- const updateConfig = config.update;
- const updateStore = useUpdateStore();
- const [checkingUpdate, setCheckingUpdate] = useState(false);
- const currentVersion = updateStore.formatVersion(updateStore.version);
- const remoteId = updateStore.formatVersion(updateStore.remoteVersion);
- const hasNewVersion = currentVersion !== remoteId;
- const updateUrl = getClientConfig()?.isApp ? RELEASE_URL : UPDATE_URL;
- function checkUpdate(force = false) {
- setCheckingUpdate(true);
- updateStore.getLatestVersion(force).then(() => {
- setCheckingUpdate(false);
- });
- console.log("[Update] local version ", updateStore.version);
- console.log("[Update] remote version ", updateStore.remoteVersion);
- }
- const accessStore = useAccessStore();
- const shouldHideBalanceQuery = useMemo(() => {
- const isOpenAiUrl = accessStore.openaiUrl.includes(OPENAI_BASE_URL);
- return (
- accessStore.hideBalanceQuery ||
- isOpenAiUrl ||
- accessStore.provider === ServiceProvider.Azure
- );
- }, [
- accessStore.hideBalanceQuery,
- accessStore.openaiUrl,
- accessStore.provider,
- ]);
- const usage = {
- used: updateStore.used,
- subscription: updateStore.subscription,
- };
- const [loadingUsage, setLoadingUsage] = useState(false);
- function checkUsage(force = false) {
- if (shouldHideBalanceQuery) {
- return;
- }
- setLoadingUsage(true);
- updateStore.updateUsage(force).finally(() => {
- setLoadingUsage(false);
- });
- }
- const enabledAccessControl = useMemo(
- () => accessStore.enabledAccessControl(),
- // eslint-disable-next-line react-hooks/exhaustive-deps
- [],
- );
- const promptStore = usePromptStore();
- const builtinCount = SearchService.count.builtin;
- const customCount = promptStore.getUserPrompts().length ?? 0;
- const [shouldShowPromptModal, setShowPromptModal] = useState(false);
- const showUsage = accessStore.isAuthorized();
- useEffect(() => {
- // checks per minutes
- checkUpdate();
- showUsage && checkUsage();
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, []);
- useEffect(() => {
- const keydownEvent = (e: KeyboardEvent) => {
- if (e.key === "Escape") {
- navigate(Path.Home);
- }
- };
- if (clientConfig?.isApp) { // Force to set custom endpoint to true if it's app
- accessStore.update((state) => {
- state.useCustomConfig = true;
- });
- }
- document.addEventListener("keydown", keydownEvent);
- return () => {
- document.removeEventListener("keydown", keydownEvent);
- };
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, []);
- const clientConfig = useMemo(() => getClientConfig(), []);
- const showAccessCode = enabledAccessControl && !clientConfig?.isApp;
- return (
- <ErrorBoundary>
- <div className="window-header" data-tauri-drag-region>
- <div className="window-header-title">
- <div className="window-header-main-title">
- {Locale.Settings.Title}
- </div>
- <div className="window-header-sub-title">
- {Locale.Settings.SubTitle}
- </div>
- </div>
- <div className="window-actions">
- <div className="window-action-button"></div>
- <div className="window-action-button"></div>
- <div className="window-action-button">
- <IconButton
- icon={<CloseIcon />}
- onClick={() => navigate(Path.Home)}
- bordered
- />
- </div>
- </div>
- </div>
- <div className={styles["settings"]}>
- <List>
- <ListItem title={Locale.Settings.Avatar}>
- <Popover
- onClose={() => setShowEmojiPicker(false)}
- content={
- <AvatarPicker
- onEmojiClick={(avatar: string) => {
- updateConfig((config) => (config.avatar = avatar));
- setShowEmojiPicker(false);
- }}
- />
- }
- open={showEmojiPicker}
- >
- <div
- className={styles.avatar}
- onClick={() => setShowEmojiPicker(true)}
- >
- <Avatar avatar={config.avatar} />
- </div>
- </Popover>
- </ListItem>
- <ListItem
- title={Locale.Settings.Update.Version(currentVersion ?? "unknown")}
- subTitle={
- checkingUpdate
- ? Locale.Settings.Update.IsChecking
- : hasNewVersion
- ? Locale.Settings.Update.FoundUpdate(remoteId ?? "ERROR")
- : Locale.Settings.Update.IsLatest
- }
- >
- {checkingUpdate ? (
- <LoadingIcon />
- ) : hasNewVersion ? (
- <Link href={updateUrl} target="_blank" className="link">
- {Locale.Settings.Update.GoToUpdate}
- </Link>
- ) : (
- <IconButton
- icon={<ResetIcon></ResetIcon>}
- text={Locale.Settings.Update.CheckUpdate}
- onClick={() => checkUpdate(true)}
- />
- )}
- </ListItem>
- <ListItem title={Locale.Settings.SendKey}>
- <Select
- value={config.submitKey}
- onChange={(e) => {
- updateConfig(
- (config) =>
- (config.submitKey = e.target.value as any as SubmitKey),
- );
- }}
- >
- {Object.values(SubmitKey).map((v) => (
- <option value={v} key={v}>
- {v}
- </option>
- ))}
- </Select>
- </ListItem>
- <ListItem title={Locale.Settings.Theme}>
- <Select
- value={config.theme}
- onChange={(e) => {
- updateConfig(
- (config) => (config.theme = e.target.value as any as Theme),
- );
- }}
- >
- {Object.values(Theme).map((v) => (
- <option value={v} key={v}>
- {v}
- </option>
- ))}
- </Select>
- </ListItem>
- <ListItem title={Locale.Settings.Lang.Name}>
- <Select
- value={getLang()}
- onChange={(e) => {
- changeLang(e.target.value as any);
- }}
- >
- {AllLangs.map((lang) => (
- <option value={lang} key={lang}>
- {ALL_LANG_OPTIONS[lang]}
- </option>
- ))}
- </Select>
- </ListItem>
- <ListItem
- title={Locale.Settings.FontSize.Title}
- subTitle={Locale.Settings.FontSize.SubTitle}
- >
- <InputRange
- title={`${config.fontSize ?? 14}px`}
- value={config.fontSize}
- min="12"
- max="40"
- step="1"
- onChange={(e) =>
- updateConfig(
- (config) =>
- (config.fontSize = Number.parseInt(e.currentTarget.value)),
- )
- }
- ></InputRange>
- </ListItem>
- <ListItem
- title={Locale.Settings.AutoGenerateTitle.Title}
- subTitle={Locale.Settings.AutoGenerateTitle.SubTitle}
- >
- <input
- type="checkbox"
- checked={config.enableAutoGenerateTitle}
- onChange={(e) =>
- updateConfig(
- (config) =>
- (config.enableAutoGenerateTitle = e.currentTarget.checked),
- )
- }
- ></input>
- </ListItem>
- <ListItem
- title={Locale.Settings.SendPreviewBubble.Title}
- subTitle={Locale.Settings.SendPreviewBubble.SubTitle}
- >
- <input
- type="checkbox"
- checked={config.sendPreviewBubble}
- onChange={(e) =>
- updateConfig(
- (config) =>
- (config.sendPreviewBubble = e.currentTarget.checked),
- )
- }
- ></input>
- </ListItem>
- </List>
- <SyncItems />
- <List>
- <ListItem
- title={Locale.Settings.Mask.Splash.Title}
- subTitle={Locale.Settings.Mask.Splash.SubTitle}
- >
- <input
- type="checkbox"
- checked={!config.dontShowMaskSplashScreen}
- onChange={(e) =>
- updateConfig(
- (config) =>
- (config.dontShowMaskSplashScreen =
- !e.currentTarget.checked),
- )
- }
- ></input>
- </ListItem>
- <ListItem
- title={Locale.Settings.Mask.Builtin.Title}
- subTitle={Locale.Settings.Mask.Builtin.SubTitle}
- >
- <input
- type="checkbox"
- checked={config.hideBuiltinMasks}
- onChange={(e) =>
- updateConfig(
- (config) =>
- (config.hideBuiltinMasks = e.currentTarget.checked),
- )
- }
- ></input>
- </ListItem>
- </List>
- <List>
- <ListItem
- title={Locale.Settings.Prompt.Disable.Title}
- subTitle={Locale.Settings.Prompt.Disable.SubTitle}
- >
- <input
- type="checkbox"
- checked={config.disablePromptHint}
- onChange={(e) =>
- updateConfig(
- (config) =>
- (config.disablePromptHint = e.currentTarget.checked),
- )
- }
- ></input>
- </ListItem>
- <ListItem
- title={Locale.Settings.Prompt.List}
- subTitle={Locale.Settings.Prompt.ListCount(
- builtinCount,
- customCount,
- )}
- >
- <IconButton
- icon={<EditIcon />}
- text={Locale.Settings.Prompt.Edit}
- onClick={() => setShowPromptModal(true)}
- />
- </ListItem>
- </List>
- <List id={SlotID.CustomModel}>
- {showAccessCode && (
- <ListItem
- title={Locale.Settings.Access.AccessCode.Title}
- subTitle={Locale.Settings.Access.AccessCode.SubTitle}
- >
- <PasswordInput
- value={accessStore.accessCode}
- type="text"
- placeholder={Locale.Settings.Access.AccessCode.Placeholder}
- onChange={(e) => {
- accessStore.update(
- (access) => (access.accessCode = e.currentTarget.value),
- );
- }}
- />
- </ListItem>
- )}
- {!accessStore.hideUserApiKey && (
- <>
- {
- // Conditionally render the following ListItem based on clientConfig.isApp
- !clientConfig?.isApp && ( // only show if isApp is false
- <ListItem
- title={Locale.Settings.Access.CustomEndpoint.Title}
- subTitle={Locale.Settings.Access.CustomEndpoint.SubTitle}
- >
- <input
- type="checkbox"
- checked={accessStore.useCustomConfig}
- onChange={(e) =>
- accessStore.update(
- (access) =>
- (access.useCustomConfig = e.currentTarget.checked),
- )
- }
- ></input>
- </ListItem>
- )
- }
- {accessStore.useCustomConfig && (
- <>
- <ListItem
- title={Locale.Settings.Access.Provider.Title}
- subTitle={Locale.Settings.Access.Provider.SubTitle}
- >
- <Select
- value={accessStore.provider}
- onChange={(e) => {
- accessStore.update(
- (access) =>
- (access.provider = e.target
- .value as ServiceProvider),
- );
- }}
- >
- {Object.entries(ServiceProvider).map(([k, v]) => (
- <option value={v} key={k}>
- {k}
- </option>
- ))}
- </Select>
- </ListItem>
- {accessStore.provider === "OpenAI" ? (
- <>
- <ListItem
- title={Locale.Settings.Access.OpenAI.Endpoint.Title}
- subTitle={
- Locale.Settings.Access.OpenAI.Endpoint.SubTitle
- }
- >
- <input
- type="text"
- value={accessStore.openaiUrl}
- placeholder={OPENAI_BASE_URL}
- onChange={(e) =>
- accessStore.update(
- (access) =>
- (access.openaiUrl = e.currentTarget.value),
- )
- }
- ></input>
- </ListItem>
- <ListItem
- title={Locale.Settings.Access.OpenAI.ApiKey.Title}
- subTitle={Locale.Settings.Access.OpenAI.ApiKey.SubTitle}
- >
- <PasswordInput
- value={accessStore.openaiApiKey}
- type="text"
- placeholder={
- Locale.Settings.Access.OpenAI.ApiKey.Placeholder
- }
- onChange={(e) => {
- accessStore.update(
- (access) =>
- (access.openaiApiKey = e.currentTarget.value),
- );
- }}
- />
- </ListItem>
- </>
- ) : (
- <>
- <ListItem
- title={Locale.Settings.Access.Azure.Endpoint.Title}
- subTitle={
- Locale.Settings.Access.Azure.Endpoint.SubTitle +
- Azure.ExampleEndpoint
- }
- >
- <input
- type="text"
- value={accessStore.azureUrl}
- placeholder={Azure.ExampleEndpoint}
- onChange={(e) =>
- accessStore.update(
- (access) =>
- (access.azureUrl = e.currentTarget.value),
- )
- }
- ></input>
- </ListItem>
- <ListItem
- title={Locale.Settings.Access.Azure.ApiKey.Title}
- subTitle={Locale.Settings.Access.Azure.ApiKey.SubTitle}
- >
- <PasswordInput
- value={accessStore.azureApiKey}
- type="text"
- placeholder={
- Locale.Settings.Access.Azure.ApiKey.Placeholder
- }
- onChange={(e) => {
- accessStore.update(
- (access) =>
- (access.azureApiKey = e.currentTarget.value),
- );
- }}
- />
- </ListItem>
- <ListItem
- title={Locale.Settings.Access.Azure.ApiVerion.Title}
- subTitle={
- Locale.Settings.Access.Azure.ApiVerion.SubTitle
- }
- >
- <input
- type="text"
- value={accessStore.azureApiVersion}
- placeholder="2023-08-01-preview"
- onChange={(e) =>
- accessStore.update(
- (access) =>
- (access.azureApiVersion =
- e.currentTarget.value),
- )
- }
- ></input>
- </ListItem>
- </>
- )}
- </>
- )}
- </>
- )}
- {!shouldHideBalanceQuery && !clientConfig?.isApp ? (
- <ListItem
- title={Locale.Settings.Usage.Title}
- subTitle={
- showUsage
- ? loadingUsage
- ? Locale.Settings.Usage.IsChecking
- : Locale.Settings.Usage.SubTitle(
- usage?.used ?? "[?]",
- usage?.subscription ?? "[?]",
- )
- : Locale.Settings.Usage.NoAccess
- }
- >
- {!showUsage || loadingUsage ? (
- <div />
- ) : (
- <IconButton
- icon={<ResetIcon></ResetIcon>}
- text={Locale.Settings.Usage.Check}
- onClick={() => checkUsage(true)}
- />
- )}
- </ListItem>
- ) : null}
- <ListItem
- title={Locale.Settings.Access.CustomModel.Title}
- subTitle={Locale.Settings.Access.CustomModel.SubTitle}
- >
- <input
- type="text"
- value={config.customModels}
- placeholder="model1,model2,model3"
- onChange={(e) =>
- config.update(
- (config) => (config.customModels = e.currentTarget.value),
- )
- }
- ></input>
- </ListItem>
- </List>
- <List>
- <ModelConfigList
- modelConfig={config.modelConfig}
- updateConfig={(updater) => {
- const modelConfig = { ...config.modelConfig };
- updater(modelConfig);
- config.update((config) => (config.modelConfig = modelConfig));
- }}
- />
- </List>
- {shouldShowPromptModal && (
- <UserPromptModal onClose={() => setShowPromptModal(false)} />
- )}
- <DangerItems />
- </div>
- </ErrorBoundary>
- );
- }
|