settings.tsx 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122
  1. import { useState, useEffect, useMemo } from "react";
  2. import styles from "./settings.module.scss";
  3. import ResetIcon from "../icons/reload.svg";
  4. import AddIcon from "../icons/add.svg";
  5. import CloseIcon from "../icons/close.svg";
  6. import CopyIcon from "../icons/copy.svg";
  7. import ClearIcon from "../icons/clear.svg";
  8. import LoadingIcon from "../icons/three-dots.svg";
  9. import EditIcon from "../icons/edit.svg";
  10. import EyeIcon from "../icons/eye.svg";
  11. import DownloadIcon from "../icons/download.svg";
  12. import UploadIcon from "../icons/upload.svg";
  13. import ConfigIcon from "../icons/config.svg";
  14. import ConfirmIcon from "../icons/confirm.svg";
  15. import ConnectionIcon from "../icons/connection.svg";
  16. import CloudSuccessIcon from "../icons/cloud-success.svg";
  17. import CloudFailIcon from "../icons/cloud-fail.svg";
  18. import {
  19. Input,
  20. List,
  21. ListItem,
  22. Modal,
  23. PasswordInput,
  24. Popover,
  25. Select,
  26. showConfirm,
  27. showToast,
  28. } from "./ui-lib";
  29. import { ModelConfigList } from "./model-config";
  30. import { IconButton } from "./button";
  31. import {
  32. SubmitKey,
  33. useChatStore,
  34. Theme,
  35. useUpdateStore,
  36. useAccessStore,
  37. useAppConfig,
  38. } from "../store";
  39. import Locale, {
  40. AllLangs,
  41. ALL_LANG_OPTIONS,
  42. changeLang,
  43. getLang,
  44. } from "../locales";
  45. import { copyToClipboard } from "../utils";
  46. import Link from "next/link";
  47. import {
  48. Azure,
  49. OPENAI_BASE_URL,
  50. Path,
  51. RELEASE_URL,
  52. STORAGE_KEY,
  53. ServiceProvider,
  54. SlotID,
  55. UPDATE_URL,
  56. } from "../constant";
  57. import { Prompt, SearchService, usePromptStore } from "../store/prompt";
  58. import { ErrorBoundary } from "./error";
  59. import { InputRange } from "./input-range";
  60. import { useNavigate } from "react-router-dom";
  61. import { Avatar, AvatarPicker } from "./emoji";
  62. import { getClientConfig } from "../config/client";
  63. import { useSyncStore } from "../store/sync";
  64. import { nanoid } from "nanoid";
  65. import { useMaskStore } from "../store/mask";
  66. import { ProviderType } from "../utils/cloud";
  67. function EditPromptModal(props: { id: string; onClose: () => void }) {
  68. const promptStore = usePromptStore();
  69. const prompt = promptStore.get(props.id);
  70. return prompt ? (
  71. <div className="modal-mask">
  72. <Modal
  73. title={Locale.Settings.Prompt.EditModal.Title}
  74. onClose={props.onClose}
  75. actions={[
  76. <IconButton
  77. key=""
  78. onClick={props.onClose}
  79. text={Locale.UI.Confirm}
  80. bordered
  81. />,
  82. ]}
  83. >
  84. <div className={styles["edit-prompt-modal"]}>
  85. <input
  86. type="text"
  87. value={prompt.title}
  88. readOnly={!prompt.isUser}
  89. className={styles["edit-prompt-title"]}
  90. onInput={(e) =>
  91. promptStore.updatePrompt(
  92. props.id,
  93. (prompt) => (prompt.title = e.currentTarget.value),
  94. )
  95. }
  96. ></input>
  97. <Input
  98. value={prompt.content}
  99. readOnly={!prompt.isUser}
  100. className={styles["edit-prompt-content"]}
  101. rows={10}
  102. onInput={(e) =>
  103. promptStore.updatePrompt(
  104. props.id,
  105. (prompt) => (prompt.content = e.currentTarget.value),
  106. )
  107. }
  108. ></Input>
  109. </div>
  110. </Modal>
  111. </div>
  112. ) : null;
  113. }
  114. function UserPromptModal(props: { onClose?: () => void }) {
  115. const promptStore = usePromptStore();
  116. const userPrompts = promptStore.getUserPrompts();
  117. const builtinPrompts = SearchService.builtinPrompts;
  118. const allPrompts = userPrompts.concat(builtinPrompts);
  119. const [searchInput, setSearchInput] = useState("");
  120. const [searchPrompts, setSearchPrompts] = useState<Prompt[]>([]);
  121. const prompts = searchInput.length > 0 ? searchPrompts : allPrompts;
  122. const [editingPromptId, setEditingPromptId] = useState<string>();
  123. useEffect(() => {
  124. if (searchInput.length > 0) {
  125. const searchResult = SearchService.search(searchInput);
  126. setSearchPrompts(searchResult);
  127. } else {
  128. setSearchPrompts([]);
  129. }
  130. }, [searchInput]);
  131. return (
  132. <div className="modal-mask">
  133. <Modal
  134. title={Locale.Settings.Prompt.Modal.Title}
  135. onClose={() => props.onClose?.()}
  136. actions={[
  137. <IconButton
  138. key="add"
  139. onClick={() => {
  140. const promptId = promptStore.add({
  141. id: nanoid(),
  142. createdAt: Date.now(),
  143. title: "Empty Prompt",
  144. content: "Empty Prompt Content",
  145. });
  146. setEditingPromptId(promptId);
  147. }}
  148. icon={<AddIcon />}
  149. bordered
  150. text={Locale.Settings.Prompt.Modal.Add}
  151. />,
  152. ]}
  153. >
  154. <div className={styles["user-prompt-modal"]}>
  155. <input
  156. type="text"
  157. className={styles["user-prompt-search"]}
  158. placeholder={Locale.Settings.Prompt.Modal.Search}
  159. value={searchInput}
  160. onInput={(e) => setSearchInput(e.currentTarget.value)}
  161. ></input>
  162. <div className={styles["user-prompt-list"]}>
  163. {prompts.map((v, _) => (
  164. <div className={styles["user-prompt-item"]} key={v.id ?? v.title}>
  165. <div className={styles["user-prompt-header"]}>
  166. <div className={styles["user-prompt-title"]}>{v.title}</div>
  167. <div className={styles["user-prompt-content"] + " one-line"}>
  168. {v.content}
  169. </div>
  170. </div>
  171. <div className={styles["user-prompt-buttons"]}>
  172. {v.isUser && (
  173. <IconButton
  174. icon={<ClearIcon />}
  175. className={styles["user-prompt-button"]}
  176. onClick={() => promptStore.remove(v.id!)}
  177. />
  178. )}
  179. {v.isUser ? (
  180. <IconButton
  181. icon={<EditIcon />}
  182. className={styles["user-prompt-button"]}
  183. onClick={() => setEditingPromptId(v.id)}
  184. />
  185. ) : (
  186. <IconButton
  187. icon={<EyeIcon />}
  188. className={styles["user-prompt-button"]}
  189. onClick={() => setEditingPromptId(v.id)}
  190. />
  191. )}
  192. <IconButton
  193. icon={<CopyIcon />}
  194. className={styles["user-prompt-button"]}
  195. onClick={() => copyToClipboard(v.content)}
  196. />
  197. </div>
  198. </div>
  199. ))}
  200. </div>
  201. </div>
  202. </Modal>
  203. {editingPromptId !== undefined && (
  204. <EditPromptModal
  205. id={editingPromptId!}
  206. onClose={() => setEditingPromptId(undefined)}
  207. />
  208. )}
  209. </div>
  210. );
  211. }
  212. function DangerItems() {
  213. const chatStore = useChatStore();
  214. const appConfig = useAppConfig();
  215. return (
  216. <List>
  217. <ListItem
  218. title={Locale.Settings.Danger.Reset.Title}
  219. subTitle={Locale.Settings.Danger.Reset.SubTitle}
  220. >
  221. <IconButton
  222. text={Locale.Settings.Danger.Reset.Action}
  223. onClick={async () => {
  224. if (await showConfirm(Locale.Settings.Danger.Reset.Confirm)) {
  225. appConfig.reset();
  226. }
  227. }}
  228. type="danger"
  229. />
  230. </ListItem>
  231. <ListItem
  232. title={Locale.Settings.Danger.Clear.Title}
  233. subTitle={Locale.Settings.Danger.Clear.SubTitle}
  234. >
  235. <IconButton
  236. text={Locale.Settings.Danger.Clear.Action}
  237. onClick={async () => {
  238. if (await showConfirm(Locale.Settings.Danger.Clear.Confirm)) {
  239. chatStore.clearAllData();
  240. }
  241. }}
  242. type="danger"
  243. />
  244. </ListItem>
  245. </List>
  246. );
  247. }
  248. function CheckButton() {
  249. const syncStore = useSyncStore();
  250. const couldCheck = useMemo(() => {
  251. return syncStore.coundSync();
  252. }, [syncStore]);
  253. const [checkState, setCheckState] = useState<
  254. "none" | "checking" | "success" | "failed"
  255. >("none");
  256. async function check() {
  257. setCheckState("checking");
  258. const valid = await syncStore.check();
  259. setCheckState(valid ? "success" : "failed");
  260. }
  261. if (!couldCheck) return null;
  262. return (
  263. <IconButton
  264. text={Locale.Settings.Sync.Config.Modal.Check}
  265. bordered
  266. onClick={check}
  267. icon={
  268. checkState === "none" ? (
  269. <ConnectionIcon />
  270. ) : checkState === "checking" ? (
  271. <LoadingIcon />
  272. ) : checkState === "success" ? (
  273. <CloudSuccessIcon />
  274. ) : checkState === "failed" ? (
  275. <CloudFailIcon />
  276. ) : (
  277. <ConnectionIcon />
  278. )
  279. }
  280. ></IconButton>
  281. );
  282. }
  283. function SyncConfigModal(props: { onClose?: () => void }) {
  284. const syncStore = useSyncStore();
  285. return (
  286. <div className="modal-mask">
  287. <Modal
  288. title={Locale.Settings.Sync.Config.Modal.Title}
  289. onClose={() => props.onClose?.()}
  290. actions={[
  291. <CheckButton key="check" />,
  292. <IconButton
  293. key="confirm"
  294. onClick={props.onClose}
  295. icon={<ConfirmIcon />}
  296. bordered
  297. text={Locale.UI.Confirm}
  298. />,
  299. ]}
  300. >
  301. <List>
  302. <ListItem
  303. title={Locale.Settings.Sync.Config.SyncType.Title}
  304. subTitle={Locale.Settings.Sync.Config.SyncType.SubTitle}
  305. >
  306. <select
  307. value={syncStore.provider}
  308. onChange={(e) => {
  309. syncStore.update(
  310. (config) =>
  311. (config.provider = e.target.value as ProviderType),
  312. );
  313. }}
  314. >
  315. {Object.entries(ProviderType).map(([k, v]) => (
  316. <option value={v} key={k}>
  317. {k}
  318. </option>
  319. ))}
  320. </select>
  321. </ListItem>
  322. <ListItem
  323. title={Locale.Settings.Sync.Config.Proxy.Title}
  324. subTitle={Locale.Settings.Sync.Config.Proxy.SubTitle}
  325. >
  326. <input
  327. type="checkbox"
  328. checked={syncStore.useProxy}
  329. onChange={(e) => {
  330. syncStore.update(
  331. (config) => (config.useProxy = e.currentTarget.checked),
  332. );
  333. }}
  334. ></input>
  335. </ListItem>
  336. {syncStore.useProxy ? (
  337. <ListItem
  338. title={Locale.Settings.Sync.Config.ProxyUrl.Title}
  339. subTitle={Locale.Settings.Sync.Config.ProxyUrl.SubTitle}
  340. >
  341. <input
  342. type="text"
  343. value={syncStore.proxyUrl}
  344. onChange={(e) => {
  345. syncStore.update(
  346. (config) => (config.proxyUrl = e.currentTarget.value),
  347. );
  348. }}
  349. ></input>
  350. </ListItem>
  351. ) : null}
  352. </List>
  353. {syncStore.provider === ProviderType.WebDAV && (
  354. <>
  355. <List>
  356. <ListItem title={Locale.Settings.Sync.Config.WebDav.Endpoint}>
  357. <input
  358. type="text"
  359. value={syncStore.webdav.endpoint}
  360. onChange={(e) => {
  361. syncStore.update(
  362. (config) =>
  363. (config.webdav.endpoint = e.currentTarget.value),
  364. );
  365. }}
  366. ></input>
  367. </ListItem>
  368. <ListItem title={Locale.Settings.Sync.Config.WebDav.UserName}>
  369. <input
  370. type="text"
  371. value={syncStore.webdav.username}
  372. onChange={(e) => {
  373. syncStore.update(
  374. (config) =>
  375. (config.webdav.username = e.currentTarget.value),
  376. );
  377. }}
  378. ></input>
  379. </ListItem>
  380. <ListItem title={Locale.Settings.Sync.Config.WebDav.Password}>
  381. <PasswordInput
  382. value={syncStore.webdav.password}
  383. onChange={(e) => {
  384. syncStore.update(
  385. (config) =>
  386. (config.webdav.password = e.currentTarget.value),
  387. );
  388. }}
  389. ></PasswordInput>
  390. </ListItem>
  391. </List>
  392. </>
  393. )}
  394. {syncStore.provider === ProviderType.UpStash && (
  395. <List>
  396. <ListItem title={Locale.Settings.Sync.Config.UpStash.Endpoint}>
  397. <input
  398. type="text"
  399. value={syncStore.upstash.endpoint}
  400. onChange={(e) => {
  401. syncStore.update(
  402. (config) =>
  403. (config.upstash.endpoint = e.currentTarget.value),
  404. );
  405. }}
  406. ></input>
  407. </ListItem>
  408. <ListItem title={Locale.Settings.Sync.Config.UpStash.UserName}>
  409. <input
  410. type="text"
  411. value={syncStore.upstash.username}
  412. placeholder={STORAGE_KEY}
  413. onChange={(e) => {
  414. syncStore.update(
  415. (config) =>
  416. (config.upstash.username = e.currentTarget.value),
  417. );
  418. }}
  419. ></input>
  420. </ListItem>
  421. <ListItem title={Locale.Settings.Sync.Config.UpStash.Password}>
  422. <PasswordInput
  423. value={syncStore.upstash.apiKey}
  424. onChange={(e) => {
  425. syncStore.update(
  426. (config) => (config.upstash.apiKey = e.currentTarget.value),
  427. );
  428. }}
  429. ></PasswordInput>
  430. </ListItem>
  431. </List>
  432. )}
  433. </Modal>
  434. </div>
  435. );
  436. }
  437. function SyncItems() {
  438. const syncStore = useSyncStore();
  439. const chatStore = useChatStore();
  440. const promptStore = usePromptStore();
  441. const maskStore = useMaskStore();
  442. const couldSync = useMemo(() => {
  443. return syncStore.coundSync();
  444. }, [syncStore]);
  445. const [showSyncConfigModal, setShowSyncConfigModal] = useState(false);
  446. const stateOverview = useMemo(() => {
  447. const sessions = chatStore.sessions;
  448. const messageCount = sessions.reduce((p, c) => p + c.messages.length, 0);
  449. return {
  450. chat: sessions.length,
  451. message: messageCount,
  452. prompt: Object.keys(promptStore.prompts).length,
  453. mask: Object.keys(maskStore.masks).length,
  454. };
  455. }, [chatStore.sessions, maskStore.masks, promptStore.prompts]);
  456. return (
  457. <>
  458. <List>
  459. <ListItem
  460. title={Locale.Settings.Sync.CloudState}
  461. subTitle={
  462. syncStore.lastProvider
  463. ? `${new Date(syncStore.lastSyncTime).toLocaleString()} [${
  464. syncStore.lastProvider
  465. }]`
  466. : Locale.Settings.Sync.NotSyncYet
  467. }
  468. >
  469. <div style={{ display: "flex" }}>
  470. <IconButton
  471. icon={<ConfigIcon />}
  472. text={Locale.UI.Config}
  473. onClick={() => {
  474. setShowSyncConfigModal(true);
  475. }}
  476. />
  477. {couldSync && (
  478. <IconButton
  479. icon={<ResetIcon />}
  480. text={Locale.UI.Sync}
  481. onClick={async () => {
  482. try {
  483. await syncStore.sync();
  484. showToast(Locale.Settings.Sync.Success);
  485. } catch (e) {
  486. showToast(Locale.Settings.Sync.Fail);
  487. console.error("[Sync]", e);
  488. }
  489. }}
  490. />
  491. )}
  492. </div>
  493. </ListItem>
  494. <ListItem
  495. title={Locale.Settings.Sync.LocalState}
  496. subTitle={Locale.Settings.Sync.Overview(stateOverview)}
  497. >
  498. <div style={{ display: "flex" }}>
  499. <IconButton
  500. icon={<UploadIcon />}
  501. text={Locale.UI.Export}
  502. onClick={() => {
  503. syncStore.export();
  504. }}
  505. />
  506. <IconButton
  507. icon={<DownloadIcon />}
  508. text={Locale.UI.Import}
  509. onClick={() => {
  510. syncStore.import();
  511. }}
  512. />
  513. </div>
  514. </ListItem>
  515. </List>
  516. {showSyncConfigModal && (
  517. <SyncConfigModal onClose={() => setShowSyncConfigModal(false)} />
  518. )}
  519. </>
  520. );
  521. }
  522. export function Settings() {
  523. const navigate = useNavigate();
  524. const [showEmojiPicker, setShowEmojiPicker] = useState(false);
  525. const config = useAppConfig();
  526. const updateConfig = config.update;
  527. const updateStore = useUpdateStore();
  528. const [checkingUpdate, setCheckingUpdate] = useState(false);
  529. const currentVersion = updateStore.formatVersion(updateStore.version);
  530. const remoteId = updateStore.formatVersion(updateStore.remoteVersion);
  531. const hasNewVersion = currentVersion !== remoteId;
  532. const updateUrl = getClientConfig()?.isApp ? RELEASE_URL : UPDATE_URL;
  533. function checkUpdate(force = false) {
  534. setCheckingUpdate(true);
  535. updateStore.getLatestVersion(force).then(() => {
  536. setCheckingUpdate(false);
  537. });
  538. console.log("[Update] local version ", updateStore.version);
  539. console.log("[Update] remote version ", updateStore.remoteVersion);
  540. }
  541. const accessStore = useAccessStore();
  542. const shouldHideBalanceQuery = useMemo(() => {
  543. const isOpenAiUrl = accessStore.openaiUrl.includes(OPENAI_BASE_URL);
  544. return (
  545. accessStore.hideBalanceQuery ||
  546. isOpenAiUrl ||
  547. accessStore.provider === ServiceProvider.Azure
  548. );
  549. }, [
  550. accessStore.hideBalanceQuery,
  551. accessStore.openaiUrl,
  552. accessStore.provider,
  553. ]);
  554. const usage = {
  555. used: updateStore.used,
  556. subscription: updateStore.subscription,
  557. };
  558. const [loadingUsage, setLoadingUsage] = useState(false);
  559. function checkUsage(force = false) {
  560. if (shouldHideBalanceQuery) {
  561. return;
  562. }
  563. setLoadingUsage(true);
  564. updateStore.updateUsage(force).finally(() => {
  565. setLoadingUsage(false);
  566. });
  567. }
  568. const enabledAccessControl = useMemo(
  569. () => accessStore.enabledAccessControl(),
  570. // eslint-disable-next-line react-hooks/exhaustive-deps
  571. [],
  572. );
  573. const promptStore = usePromptStore();
  574. const builtinCount = SearchService.count.builtin;
  575. const customCount = promptStore.getUserPrompts().length ?? 0;
  576. const [shouldShowPromptModal, setShowPromptModal] = useState(false);
  577. const showUsage = accessStore.isAuthorized();
  578. useEffect(() => {
  579. // checks per minutes
  580. checkUpdate();
  581. showUsage && checkUsage();
  582. // eslint-disable-next-line react-hooks/exhaustive-deps
  583. }, []);
  584. useEffect(() => {
  585. const keydownEvent = (e: KeyboardEvent) => {
  586. if (e.key === "Escape") {
  587. navigate(Path.Home);
  588. }
  589. };
  590. if (clientConfig?.isApp) { // Force to set custom endpoint to true if it's app
  591. accessStore.update((state) => {
  592. state.useCustomConfig = true;
  593. });
  594. }
  595. document.addEventListener("keydown", keydownEvent);
  596. return () => {
  597. document.removeEventListener("keydown", keydownEvent);
  598. };
  599. // eslint-disable-next-line react-hooks/exhaustive-deps
  600. }, []);
  601. const clientConfig = useMemo(() => getClientConfig(), []);
  602. const showAccessCode = enabledAccessControl && !clientConfig?.isApp;
  603. return (
  604. <ErrorBoundary>
  605. <div className="window-header" data-tauri-drag-region>
  606. <div className="window-header-title">
  607. <div className="window-header-main-title">
  608. {Locale.Settings.Title}
  609. </div>
  610. <div className="window-header-sub-title">
  611. {Locale.Settings.SubTitle}
  612. </div>
  613. </div>
  614. <div className="window-actions">
  615. <div className="window-action-button"></div>
  616. <div className="window-action-button"></div>
  617. <div className="window-action-button">
  618. <IconButton
  619. icon={<CloseIcon />}
  620. onClick={() => navigate(Path.Home)}
  621. bordered
  622. />
  623. </div>
  624. </div>
  625. </div>
  626. <div className={styles["settings"]}>
  627. <List>
  628. <ListItem title={Locale.Settings.Avatar}>
  629. <Popover
  630. onClose={() => setShowEmojiPicker(false)}
  631. content={
  632. <AvatarPicker
  633. onEmojiClick={(avatar: string) => {
  634. updateConfig((config) => (config.avatar = avatar));
  635. setShowEmojiPicker(false);
  636. }}
  637. />
  638. }
  639. open={showEmojiPicker}
  640. >
  641. <div
  642. className={styles.avatar}
  643. onClick={() => setShowEmojiPicker(true)}
  644. >
  645. <Avatar avatar={config.avatar} />
  646. </div>
  647. </Popover>
  648. </ListItem>
  649. <ListItem
  650. title={Locale.Settings.Update.Version(currentVersion ?? "unknown")}
  651. subTitle={
  652. checkingUpdate
  653. ? Locale.Settings.Update.IsChecking
  654. : hasNewVersion
  655. ? Locale.Settings.Update.FoundUpdate(remoteId ?? "ERROR")
  656. : Locale.Settings.Update.IsLatest
  657. }
  658. >
  659. {checkingUpdate ? (
  660. <LoadingIcon />
  661. ) : hasNewVersion ? (
  662. <Link href={updateUrl} target="_blank" className="link">
  663. {Locale.Settings.Update.GoToUpdate}
  664. </Link>
  665. ) : (
  666. <IconButton
  667. icon={<ResetIcon></ResetIcon>}
  668. text={Locale.Settings.Update.CheckUpdate}
  669. onClick={() => checkUpdate(true)}
  670. />
  671. )}
  672. </ListItem>
  673. <ListItem title={Locale.Settings.SendKey}>
  674. <Select
  675. value={config.submitKey}
  676. onChange={(e) => {
  677. updateConfig(
  678. (config) =>
  679. (config.submitKey = e.target.value as any as SubmitKey),
  680. );
  681. }}
  682. >
  683. {Object.values(SubmitKey).map((v) => (
  684. <option value={v} key={v}>
  685. {v}
  686. </option>
  687. ))}
  688. </Select>
  689. </ListItem>
  690. <ListItem title={Locale.Settings.Theme}>
  691. <Select
  692. value={config.theme}
  693. onChange={(e) => {
  694. updateConfig(
  695. (config) => (config.theme = e.target.value as any as Theme),
  696. );
  697. }}
  698. >
  699. {Object.values(Theme).map((v) => (
  700. <option value={v} key={v}>
  701. {v}
  702. </option>
  703. ))}
  704. </Select>
  705. </ListItem>
  706. <ListItem title={Locale.Settings.Lang.Name}>
  707. <Select
  708. value={getLang()}
  709. onChange={(e) => {
  710. changeLang(e.target.value as any);
  711. }}
  712. >
  713. {AllLangs.map((lang) => (
  714. <option value={lang} key={lang}>
  715. {ALL_LANG_OPTIONS[lang]}
  716. </option>
  717. ))}
  718. </Select>
  719. </ListItem>
  720. <ListItem
  721. title={Locale.Settings.FontSize.Title}
  722. subTitle={Locale.Settings.FontSize.SubTitle}
  723. >
  724. <InputRange
  725. title={`${config.fontSize ?? 14}px`}
  726. value={config.fontSize}
  727. min="12"
  728. max="40"
  729. step="1"
  730. onChange={(e) =>
  731. updateConfig(
  732. (config) =>
  733. (config.fontSize = Number.parseInt(e.currentTarget.value)),
  734. )
  735. }
  736. ></InputRange>
  737. </ListItem>
  738. <ListItem
  739. title={Locale.Settings.AutoGenerateTitle.Title}
  740. subTitle={Locale.Settings.AutoGenerateTitle.SubTitle}
  741. >
  742. <input
  743. type="checkbox"
  744. checked={config.enableAutoGenerateTitle}
  745. onChange={(e) =>
  746. updateConfig(
  747. (config) =>
  748. (config.enableAutoGenerateTitle = e.currentTarget.checked),
  749. )
  750. }
  751. ></input>
  752. </ListItem>
  753. <ListItem
  754. title={Locale.Settings.SendPreviewBubble.Title}
  755. subTitle={Locale.Settings.SendPreviewBubble.SubTitle}
  756. >
  757. <input
  758. type="checkbox"
  759. checked={config.sendPreviewBubble}
  760. onChange={(e) =>
  761. updateConfig(
  762. (config) =>
  763. (config.sendPreviewBubble = e.currentTarget.checked),
  764. )
  765. }
  766. ></input>
  767. </ListItem>
  768. </List>
  769. <SyncItems />
  770. <List>
  771. <ListItem
  772. title={Locale.Settings.Mask.Splash.Title}
  773. subTitle={Locale.Settings.Mask.Splash.SubTitle}
  774. >
  775. <input
  776. type="checkbox"
  777. checked={!config.dontShowMaskSplashScreen}
  778. onChange={(e) =>
  779. updateConfig(
  780. (config) =>
  781. (config.dontShowMaskSplashScreen =
  782. !e.currentTarget.checked),
  783. )
  784. }
  785. ></input>
  786. </ListItem>
  787. <ListItem
  788. title={Locale.Settings.Mask.Builtin.Title}
  789. subTitle={Locale.Settings.Mask.Builtin.SubTitle}
  790. >
  791. <input
  792. type="checkbox"
  793. checked={config.hideBuiltinMasks}
  794. onChange={(e) =>
  795. updateConfig(
  796. (config) =>
  797. (config.hideBuiltinMasks = e.currentTarget.checked),
  798. )
  799. }
  800. ></input>
  801. </ListItem>
  802. </List>
  803. <List>
  804. <ListItem
  805. title={Locale.Settings.Prompt.Disable.Title}
  806. subTitle={Locale.Settings.Prompt.Disable.SubTitle}
  807. >
  808. <input
  809. type="checkbox"
  810. checked={config.disablePromptHint}
  811. onChange={(e) =>
  812. updateConfig(
  813. (config) =>
  814. (config.disablePromptHint = e.currentTarget.checked),
  815. )
  816. }
  817. ></input>
  818. </ListItem>
  819. <ListItem
  820. title={Locale.Settings.Prompt.List}
  821. subTitle={Locale.Settings.Prompt.ListCount(
  822. builtinCount,
  823. customCount,
  824. )}
  825. >
  826. <IconButton
  827. icon={<EditIcon />}
  828. text={Locale.Settings.Prompt.Edit}
  829. onClick={() => setShowPromptModal(true)}
  830. />
  831. </ListItem>
  832. </List>
  833. <List id={SlotID.CustomModel}>
  834. {showAccessCode && (
  835. <ListItem
  836. title={Locale.Settings.Access.AccessCode.Title}
  837. subTitle={Locale.Settings.Access.AccessCode.SubTitle}
  838. >
  839. <PasswordInput
  840. value={accessStore.accessCode}
  841. type="text"
  842. placeholder={Locale.Settings.Access.AccessCode.Placeholder}
  843. onChange={(e) => {
  844. accessStore.update(
  845. (access) => (access.accessCode = e.currentTarget.value),
  846. );
  847. }}
  848. />
  849. </ListItem>
  850. )}
  851. {!accessStore.hideUserApiKey && (
  852. <>
  853. <ListItem
  854. title={Locale.Settings.Access.CustomEndpoint.Title}
  855. subTitle={Locale.Settings.Access.CustomEndpoint.SubTitle}
  856. >
  857. <input
  858. type="checkbox"
  859. checked={accessStore.useCustomConfig}
  860. onChange={(e) =>
  861. accessStore.update(
  862. (access) =>
  863. (access.useCustomConfig = e.currentTarget.checked),
  864. )
  865. }
  866. ></input>
  867. </ListItem>
  868. {accessStore.useCustomConfig && (
  869. <>
  870. <ListItem
  871. title={Locale.Settings.Access.Provider.Title}
  872. subTitle={Locale.Settings.Access.Provider.SubTitle}
  873. >
  874. <Select
  875. value={accessStore.provider}
  876. onChange={(e) => {
  877. accessStore.update(
  878. (access) =>
  879. (access.provider = e.target
  880. .value as ServiceProvider),
  881. );
  882. }}
  883. >
  884. {Object.entries(ServiceProvider).map(([k, v]) => (
  885. <option value={v} key={k}>
  886. {k}
  887. </option>
  888. ))}
  889. </Select>
  890. </ListItem>
  891. {accessStore.provider === "OpenAI" ? (
  892. <>
  893. <ListItem
  894. title={Locale.Settings.Access.OpenAI.Endpoint.Title}
  895. subTitle={
  896. Locale.Settings.Access.OpenAI.Endpoint.SubTitle
  897. }
  898. >
  899. <input
  900. type="text"
  901. value={accessStore.openaiUrl}
  902. placeholder={OPENAI_BASE_URL}
  903. onChange={(e) =>
  904. accessStore.update(
  905. (access) =>
  906. (access.openaiUrl = e.currentTarget.value),
  907. )
  908. }
  909. ></input>
  910. </ListItem>
  911. <ListItem
  912. title={Locale.Settings.Access.OpenAI.ApiKey.Title}
  913. subTitle={Locale.Settings.Access.OpenAI.ApiKey.SubTitle}
  914. >
  915. <PasswordInput
  916. value={accessStore.openaiApiKey}
  917. type="text"
  918. placeholder={
  919. Locale.Settings.Access.OpenAI.ApiKey.Placeholder
  920. }
  921. onChange={(e) => {
  922. accessStore.update(
  923. (access) =>
  924. (access.openaiApiKey = e.currentTarget.value),
  925. );
  926. }}
  927. />
  928. </ListItem>
  929. </>
  930. ) : (
  931. <>
  932. <ListItem
  933. title={Locale.Settings.Access.Azure.Endpoint.Title}
  934. subTitle={
  935. Locale.Settings.Access.Azure.Endpoint.SubTitle +
  936. Azure.ExampleEndpoint
  937. }
  938. >
  939. <input
  940. type="text"
  941. value={accessStore.azureUrl}
  942. placeholder={Azure.ExampleEndpoint}
  943. onChange={(e) =>
  944. accessStore.update(
  945. (access) =>
  946. (access.azureUrl = e.currentTarget.value),
  947. )
  948. }
  949. ></input>
  950. </ListItem>
  951. <ListItem
  952. title={Locale.Settings.Access.Azure.ApiKey.Title}
  953. subTitle={Locale.Settings.Access.Azure.ApiKey.SubTitle}
  954. >
  955. <PasswordInput
  956. value={accessStore.azureApiKey}
  957. type="text"
  958. placeholder={
  959. Locale.Settings.Access.Azure.ApiKey.Placeholder
  960. }
  961. onChange={(e) => {
  962. accessStore.update(
  963. (access) =>
  964. (access.azureApiKey = e.currentTarget.value),
  965. );
  966. }}
  967. />
  968. </ListItem>
  969. <ListItem
  970. title={Locale.Settings.Access.Azure.ApiVerion.Title}
  971. subTitle={
  972. Locale.Settings.Access.Azure.ApiVerion.SubTitle
  973. }
  974. >
  975. <input
  976. type="text"
  977. value={accessStore.azureApiVersion}
  978. placeholder="2023-08-01-preview"
  979. onChange={(e) =>
  980. accessStore.update(
  981. (access) =>
  982. (access.azureApiVersion =
  983. e.currentTarget.value),
  984. )
  985. }
  986. ></input>
  987. </ListItem>
  988. </>
  989. )}
  990. </>
  991. )}
  992. </>
  993. )}
  994. {!shouldHideBalanceQuery && !clientConfig?.isApp ? (
  995. <ListItem
  996. title={Locale.Settings.Usage.Title}
  997. subTitle={
  998. showUsage
  999. ? loadingUsage
  1000. ? Locale.Settings.Usage.IsChecking
  1001. : Locale.Settings.Usage.SubTitle(
  1002. usage?.used ?? "[?]",
  1003. usage?.subscription ?? "[?]",
  1004. )
  1005. : Locale.Settings.Usage.NoAccess
  1006. }
  1007. >
  1008. {!showUsage || loadingUsage ? (
  1009. <div />
  1010. ) : (
  1011. <IconButton
  1012. icon={<ResetIcon></ResetIcon>}
  1013. text={Locale.Settings.Usage.Check}
  1014. onClick={() => checkUsage(true)}
  1015. />
  1016. )}
  1017. </ListItem>
  1018. ) : null}
  1019. <ListItem
  1020. title={Locale.Settings.Access.CustomModel.Title}
  1021. subTitle={Locale.Settings.Access.CustomModel.SubTitle}
  1022. >
  1023. <input
  1024. type="text"
  1025. value={config.customModels}
  1026. placeholder="model1,model2,model3"
  1027. onChange={(e) =>
  1028. config.update(
  1029. (config) => (config.customModels = e.currentTarget.value),
  1030. )
  1031. }
  1032. ></input>
  1033. </ListItem>
  1034. </List>
  1035. <List>
  1036. <ModelConfigList
  1037. modelConfig={config.modelConfig}
  1038. updateConfig={(updater) => {
  1039. const modelConfig = { ...config.modelConfig };
  1040. updater(modelConfig);
  1041. config.update((config) => (config.modelConfig = modelConfig));
  1042. }}
  1043. />
  1044. </List>
  1045. {shouldShowPromptModal && (
  1046. <UserPromptModal onClose={() => setShowPromptModal(false)} />
  1047. )}
  1048. <DangerItems />
  1049. </div>
  1050. </ErrorBoundary>
  1051. );
  1052. }