chat.tsx 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330
  1. import { useDebouncedCallback } from "use-debounce";
  2. import React, {
  3. useState,
  4. useRef,
  5. useEffect,
  6. useMemo,
  7. useCallback,
  8. Fragment,
  9. } from "react";
  10. import SendWhiteIcon from "../icons/send-white.svg";
  11. import BrainIcon from "../icons/brain.svg";
  12. import RenameIcon from "../icons/rename.svg";
  13. import ExportIcon from "../icons/share.svg";
  14. import ReturnIcon from "../icons/return.svg";
  15. import CopyIcon from "../icons/copy.svg";
  16. import LoadingIcon from "../icons/three-dots.svg";
  17. import PromptIcon from "../icons/prompt.svg";
  18. import MaskIcon from "../icons/mask.svg";
  19. import MaxIcon from "../icons/max.svg";
  20. import MinIcon from "../icons/min.svg";
  21. import ResetIcon from "../icons/reload.svg";
  22. import BreakIcon from "../icons/break.svg";
  23. import SettingsIcon from "../icons/chat-settings.svg";
  24. import DeleteIcon from "../icons/clear.svg";
  25. import PinIcon from "../icons/pin.svg";
  26. import EditIcon from "../icons/rename.svg";
  27. import ConfirmIcon from "../icons/confirm.svg";
  28. import CancelIcon from "../icons/cancel.svg";
  29. import LightIcon from "../icons/light.svg";
  30. import DarkIcon from "../icons/dark.svg";
  31. import AutoIcon from "../icons/auto.svg";
  32. import BottomIcon from "../icons/bottom.svg";
  33. import StopIcon from "../icons/pause.svg";
  34. import RobotIcon from "../icons/robot.svg";
  35. import {
  36. ChatMessage,
  37. SubmitKey,
  38. useChatStore,
  39. BOT_HELLO,
  40. createMessage,
  41. useAccessStore,
  42. Theme,
  43. useAppConfig,
  44. DEFAULT_TOPIC,
  45. ModelType,
  46. } from "../store";
  47. import {
  48. copyToClipboard,
  49. selectOrCopy,
  50. autoGrowTextArea,
  51. useMobileScreen,
  52. } from "../utils";
  53. import dynamic from "next/dynamic";
  54. import { ChatControllerPool } from "../client/controller";
  55. import { Prompt, usePromptStore } from "../store/prompt";
  56. import Locale from "../locales";
  57. import { IconButton } from "./button";
  58. import styles from "./chat.module.scss";
  59. import {
  60. List,
  61. ListItem,
  62. Modal,
  63. Selector,
  64. showConfirm,
  65. showPrompt,
  66. showToast,
  67. } from "./ui-lib";
  68. import { useNavigate } from "react-router-dom";
  69. import {
  70. CHAT_PAGE_SIZE,
  71. LAST_INPUT_KEY,
  72. Path,
  73. REQUEST_TIMEOUT_MS,
  74. UNFINISHED_INPUT,
  75. } from "../constant";
  76. import { Avatar } from "./emoji";
  77. import { ContextPrompts, MaskAvatar, MaskConfig } from "./mask";
  78. import { useMaskStore } from "../store/mask";
  79. import { ChatCommandPrefix, useChatCommand, useCommand } from "../command";
  80. import { prettyObject } from "../utils/format";
  81. import { ExportMessageModal } from "./exporter";
  82. import { getClientConfig } from "../config/client";
  83. import { useAllModels } from "../utils/hooks";
  84. const Markdown = dynamic(async () => (await import("./markdown")).Markdown, {
  85. loading: () => <LoadingIcon />,
  86. });
  87. export function SessionConfigModel(props: { onClose: () => void }) {
  88. const chatStore = useChatStore();
  89. const session = chatStore.currentSession();
  90. const maskStore = useMaskStore();
  91. const navigate = useNavigate();
  92. return (
  93. <div className="modal-mask">
  94. <Modal
  95. title={Locale.Context.Edit}
  96. onClose={() => props.onClose()}
  97. actions={[
  98. <IconButton
  99. key="reset"
  100. icon={<ResetIcon />}
  101. bordered
  102. text={Locale.Chat.Config.Reset}
  103. onClick={async () => {
  104. if (await showConfirm(Locale.Memory.ResetConfirm)) {
  105. chatStore.updateCurrentSession(
  106. (session) => (session.memoryPrompt = ""),
  107. );
  108. }
  109. }}
  110. />,
  111. <IconButton
  112. key="copy"
  113. icon={<CopyIcon />}
  114. bordered
  115. text={Locale.Chat.Config.SaveAs}
  116. onClick={() => {
  117. navigate(Path.Masks);
  118. setTimeout(() => {
  119. maskStore.create(session.mask);
  120. }, 500);
  121. }}
  122. />,
  123. ]}
  124. >
  125. <MaskConfig
  126. mask={session.mask}
  127. updateMask={(updater) => {
  128. const mask = { ...session.mask };
  129. updater(mask);
  130. chatStore.updateCurrentSession((session) => (session.mask = mask));
  131. }}
  132. shouldSyncFromGlobal
  133. extraListItems={
  134. session.mask.modelConfig.sendMemory ? (
  135. <ListItem
  136. className="copyable"
  137. title={`${Locale.Memory.Title} (${session.lastSummarizeIndex} of ${session.messages.length})`}
  138. subTitle={session.memoryPrompt || Locale.Memory.EmptyContent}
  139. ></ListItem>
  140. ) : (
  141. <></>
  142. )
  143. }
  144. ></MaskConfig>
  145. </Modal>
  146. </div>
  147. );
  148. }
  149. function PromptToast(props: {
  150. showToast?: boolean;
  151. showModal?: boolean;
  152. setShowModal: (_: boolean) => void;
  153. }) {
  154. const chatStore = useChatStore();
  155. const session = chatStore.currentSession();
  156. const context = session.mask.context;
  157. return (
  158. <div className={styles["prompt-toast"]} key="prompt-toast">
  159. {props.showToast && (
  160. <div
  161. className={styles["prompt-toast-inner"] + " clickable"}
  162. role="button"
  163. onClick={() => props.setShowModal(true)}
  164. >
  165. <BrainIcon />
  166. <span className={styles["prompt-toast-content"]}>
  167. {Locale.Context.Toast(context.length)}
  168. </span>
  169. </div>
  170. )}
  171. {props.showModal && (
  172. <SessionConfigModel onClose={() => props.setShowModal(false)} />
  173. )}
  174. </div>
  175. );
  176. }
  177. function useSubmitHandler() {
  178. const config = useAppConfig();
  179. const submitKey = config.submitKey;
  180. const isComposing = useRef(false);
  181. useEffect(() => {
  182. const onCompositionStart = () => {
  183. isComposing.current = true;
  184. };
  185. const onCompositionEnd = () => {
  186. isComposing.current = false;
  187. };
  188. window.addEventListener("compositionstart", onCompositionStart);
  189. window.addEventListener("compositionend", onCompositionEnd);
  190. return () => {
  191. window.removeEventListener("compositionstart", onCompositionStart);
  192. window.removeEventListener("compositionend", onCompositionEnd);
  193. };
  194. }, []);
  195. const shouldSubmit = (e: React.KeyboardEvent<HTMLTextAreaElement>) => {
  196. if (e.key !== "Enter") return false;
  197. if (e.key === "Enter" && (e.nativeEvent.isComposing || isComposing.current))
  198. return false;
  199. return (
  200. (config.submitKey === SubmitKey.AltEnter && e.altKey) ||
  201. (config.submitKey === SubmitKey.CtrlEnter && e.ctrlKey) ||
  202. (config.submitKey === SubmitKey.ShiftEnter && e.shiftKey) ||
  203. (config.submitKey === SubmitKey.MetaEnter && e.metaKey) ||
  204. (config.submitKey === SubmitKey.Enter &&
  205. !e.altKey &&
  206. !e.ctrlKey &&
  207. !e.shiftKey &&
  208. !e.metaKey)
  209. );
  210. };
  211. return {
  212. submitKey,
  213. shouldSubmit,
  214. };
  215. }
  216. export type RenderPompt = Pick<Prompt, "title" | "content">;
  217. export function PromptHints(props: {
  218. prompts: RenderPompt[];
  219. onPromptSelect: (prompt: RenderPompt) => void;
  220. }) {
  221. const noPrompts = props.prompts.length === 0;
  222. const [selectIndex, setSelectIndex] = useState(0);
  223. const selectedRef = useRef<HTMLDivElement>(null);
  224. useEffect(() => {
  225. setSelectIndex(0);
  226. }, [props.prompts.length]);
  227. useEffect(() => {
  228. const onKeyDown = (e: KeyboardEvent) => {
  229. if (noPrompts || e.metaKey || e.altKey || e.ctrlKey) {
  230. return;
  231. }
  232. // arrow up / down to select prompt
  233. const changeIndex = (delta: number) => {
  234. e.stopPropagation();
  235. e.preventDefault();
  236. const nextIndex = Math.max(
  237. 0,
  238. Math.min(props.prompts.length - 1, selectIndex + delta),
  239. );
  240. setSelectIndex(nextIndex);
  241. selectedRef.current?.scrollIntoView({
  242. block: "center",
  243. });
  244. };
  245. if (e.key === "ArrowUp") {
  246. changeIndex(1);
  247. } else if (e.key === "ArrowDown") {
  248. changeIndex(-1);
  249. } else if (e.key === "Enter") {
  250. const selectedPrompt = props.prompts.at(selectIndex);
  251. if (selectedPrompt) {
  252. props.onPromptSelect(selectedPrompt);
  253. }
  254. }
  255. };
  256. window.addEventListener("keydown", onKeyDown);
  257. return () => window.removeEventListener("keydown", onKeyDown);
  258. // eslint-disable-next-line react-hooks/exhaustive-deps
  259. }, [props.prompts.length, selectIndex]);
  260. if (noPrompts) return null;
  261. return (
  262. <div className={styles["prompt-hints"]}>
  263. {props.prompts.map((prompt, i) => (
  264. <div
  265. ref={i === selectIndex ? selectedRef : null}
  266. className={
  267. styles["prompt-hint"] +
  268. ` ${i === selectIndex ? styles["prompt-hint-selected"] : ""}`
  269. }
  270. key={prompt.title + i.toString()}
  271. onClick={() => props.onPromptSelect(prompt)}
  272. onMouseEnter={() => setSelectIndex(i)}
  273. >
  274. <div className={styles["hint-title"]}>{prompt.title}</div>
  275. <div className={styles["hint-content"]}>{prompt.content}</div>
  276. </div>
  277. ))}
  278. </div>
  279. );
  280. }
  281. function ClearContextDivider() {
  282. const chatStore = useChatStore();
  283. return (
  284. <div
  285. className={styles["clear-context"]}
  286. onClick={() =>
  287. chatStore.updateCurrentSession(
  288. (session) => (session.clearContextIndex = undefined),
  289. )
  290. }
  291. >
  292. <div className={styles["clear-context-tips"]}>{Locale.Context.Clear}</div>
  293. <div className={styles["clear-context-revert-btn"]}>
  294. {Locale.Context.Revert}
  295. </div>
  296. </div>
  297. );
  298. }
  299. function ChatAction(props: {
  300. text: string;
  301. icon: JSX.Element;
  302. onClick: () => void;
  303. }) {
  304. const iconRef = useRef<HTMLDivElement>(null);
  305. const textRef = useRef<HTMLDivElement>(null);
  306. const [width, setWidth] = useState({
  307. full: 16,
  308. icon: 16,
  309. });
  310. function updateWidth() {
  311. if (!iconRef.current || !textRef.current) return;
  312. const getWidth = (dom: HTMLDivElement) => dom.getBoundingClientRect().width;
  313. const textWidth = getWidth(textRef.current);
  314. const iconWidth = getWidth(iconRef.current);
  315. setWidth({
  316. full: textWidth + iconWidth,
  317. icon: iconWidth,
  318. });
  319. }
  320. return (
  321. <div
  322. className={`${styles["chat-input-action"]} clickable`}
  323. onClick={() => {
  324. props.onClick();
  325. setTimeout(updateWidth, 1);
  326. }}
  327. onMouseEnter={updateWidth}
  328. onTouchStart={updateWidth}
  329. style={
  330. {
  331. "--icon-width": `${width.icon}px`,
  332. "--full-width": `${width.full}px`,
  333. } as React.CSSProperties
  334. }
  335. >
  336. <div ref={iconRef} className={styles["icon"]}>
  337. {props.icon}
  338. </div>
  339. <div className={styles["text"]} ref={textRef}>
  340. {props.text}
  341. </div>
  342. </div>
  343. );
  344. }
  345. function useScrollToBottom() {
  346. // for auto-scroll
  347. const scrollRef = useRef<HTMLDivElement>(null);
  348. const [autoScroll, setAutoScroll] = useState(true);
  349. function scrollDomToBottom() {
  350. const dom = scrollRef.current;
  351. if (dom) {
  352. requestAnimationFrame(() => {
  353. setAutoScroll(true);
  354. dom.scrollTo(0, dom.scrollHeight);
  355. });
  356. }
  357. }
  358. // auto scroll
  359. useEffect(() => {
  360. if (autoScroll) {
  361. scrollDomToBottom();
  362. }
  363. });
  364. return {
  365. scrollRef,
  366. autoScroll,
  367. setAutoScroll,
  368. scrollDomToBottom,
  369. };
  370. }
  371. export function ChatActions(props: {
  372. showPromptModal: () => void;
  373. scrollToBottom: () => void;
  374. showPromptHints: () => void;
  375. hitBottom: boolean;
  376. }) {
  377. const config = useAppConfig();
  378. const navigate = useNavigate();
  379. const chatStore = useChatStore();
  380. // switch themes
  381. const theme = config.theme;
  382. function nextTheme() {
  383. const themes = [Theme.Auto, Theme.Light, Theme.Dark];
  384. const themeIndex = themes.indexOf(theme);
  385. const nextIndex = (themeIndex + 1) % themes.length;
  386. const nextTheme = themes[nextIndex];
  387. config.update((config) => (config.theme = nextTheme));
  388. }
  389. // stop all responses
  390. const couldStop = ChatControllerPool.hasPending();
  391. const stopAll = () => ChatControllerPool.stopAll();
  392. // switch model
  393. const currentModel = chatStore.currentSession().mask.modelConfig.model;
  394. const allModels = useAllModels();
  395. const models = useMemo(
  396. () => allModels.filter((m) => m.available),
  397. [allModels],
  398. );
  399. const [showModelSelector, setShowModelSelector] = useState(false);
  400. useEffect(() => {
  401. // if current model is not available
  402. // switch to first available model
  403. const isUnavaliableModel = !models.some((m) => m.name === currentModel);
  404. if (isUnavaliableModel && models.length > 0) {
  405. const nextModel = models[0].name as ModelType;
  406. chatStore.updateCurrentSession(
  407. (session) => (session.mask.modelConfig.model = nextModel),
  408. );
  409. showToast(nextModel);
  410. }
  411. // eslint-disable-next-line react-hooks/exhaustive-deps
  412. }, [currentModel, models]);
  413. return (
  414. <div className={styles["chat-input-actions"]}>
  415. {couldStop && (
  416. <ChatAction
  417. onClick={stopAll}
  418. text={Locale.Chat.InputActions.Stop}
  419. icon={<StopIcon />}
  420. />
  421. )}
  422. {!props.hitBottom && (
  423. <ChatAction
  424. onClick={props.scrollToBottom}
  425. text={Locale.Chat.InputActions.ToBottom}
  426. icon={<BottomIcon />}
  427. />
  428. )}
  429. {props.hitBottom && (
  430. <ChatAction
  431. onClick={props.showPromptModal}
  432. text={Locale.Chat.InputActions.Settings}
  433. icon={<SettingsIcon />}
  434. />
  435. )}
  436. <ChatAction
  437. onClick={nextTheme}
  438. text={Locale.Chat.InputActions.Theme[theme]}
  439. icon={
  440. <>
  441. {theme === Theme.Auto ? (
  442. <AutoIcon />
  443. ) : theme === Theme.Light ? (
  444. <LightIcon />
  445. ) : theme === Theme.Dark ? (
  446. <DarkIcon />
  447. ) : null}
  448. </>
  449. }
  450. />
  451. <ChatAction
  452. onClick={props.showPromptHints}
  453. text={Locale.Chat.InputActions.Prompt}
  454. icon={<PromptIcon />}
  455. />
  456. <ChatAction
  457. onClick={() => {
  458. navigate(Path.Masks);
  459. }}
  460. text={Locale.Chat.InputActions.Masks}
  461. icon={<MaskIcon />}
  462. />
  463. <ChatAction
  464. text={Locale.Chat.InputActions.Clear}
  465. icon={<BreakIcon />}
  466. onClick={() => {
  467. chatStore.updateCurrentSession((session) => {
  468. if (session.clearContextIndex === session.messages.length) {
  469. session.clearContextIndex = undefined;
  470. } else {
  471. session.clearContextIndex = session.messages.length;
  472. session.memoryPrompt = ""; // will clear memory
  473. }
  474. });
  475. }}
  476. />
  477. <ChatAction
  478. onClick={() => setShowModelSelector(true)}
  479. text={currentModel}
  480. icon={<RobotIcon />}
  481. />
  482. {showModelSelector && (
  483. <Selector
  484. defaultSelectedValue={currentModel}
  485. items={models.map((m) => ({
  486. title: m.displayName,
  487. value: m.name,
  488. }))}
  489. onClose={() => setShowModelSelector(false)}
  490. onSelection={(s) => {
  491. if (s.length === 0) return;
  492. chatStore.updateCurrentSession((session) => {
  493. session.mask.modelConfig.model = s[0] as ModelType;
  494. session.mask.syncGlobalConfig = false;
  495. });
  496. showToast(s[0]);
  497. }}
  498. />
  499. )}
  500. </div>
  501. );
  502. }
  503. export function EditMessageModal(props: { onClose: () => void }) {
  504. const chatStore = useChatStore();
  505. const session = chatStore.currentSession();
  506. const [messages, setMessages] = useState(session.messages.slice());
  507. return (
  508. <div className="modal-mask">
  509. <Modal
  510. title={Locale.Chat.EditMessage.Title}
  511. onClose={props.onClose}
  512. actions={[
  513. <IconButton
  514. text={Locale.UI.Cancel}
  515. icon={<CancelIcon />}
  516. key="cancel"
  517. onClick={() => {
  518. props.onClose();
  519. }}
  520. />,
  521. <IconButton
  522. type="primary"
  523. text={Locale.UI.Confirm}
  524. icon={<ConfirmIcon />}
  525. key="ok"
  526. onClick={() => {
  527. chatStore.updateCurrentSession(
  528. (session) => (session.messages = messages),
  529. );
  530. props.onClose();
  531. }}
  532. />,
  533. ]}
  534. >
  535. <List>
  536. <ListItem
  537. title={Locale.Chat.EditMessage.Topic.Title}
  538. subTitle={Locale.Chat.EditMessage.Topic.SubTitle}
  539. >
  540. <input
  541. type="text"
  542. value={session.topic}
  543. onInput={(e) =>
  544. chatStore.updateCurrentSession(
  545. (session) => (session.topic = e.currentTarget.value),
  546. )
  547. }
  548. ></input>
  549. </ListItem>
  550. </List>
  551. <ContextPrompts
  552. context={messages}
  553. updateContext={(updater) => {
  554. const newMessages = messages.slice();
  555. updater(newMessages);
  556. setMessages(newMessages);
  557. }}
  558. />
  559. </Modal>
  560. </div>
  561. );
  562. }
  563. function _Chat() {
  564. type RenderMessage = ChatMessage & { preview?: boolean };
  565. const chatStore = useChatStore();
  566. const session = chatStore.currentSession();
  567. const config = useAppConfig();
  568. const fontSize = config.fontSize;
  569. const [showExport, setShowExport] = useState(false);
  570. const inputRef = useRef<HTMLTextAreaElement>(null);
  571. const [userInput, setUserInput] = useState("");
  572. const [isLoading, setIsLoading] = useState(false);
  573. const { submitKey, shouldSubmit } = useSubmitHandler();
  574. const { scrollRef, setAutoScroll, scrollDomToBottom } = useScrollToBottom();
  575. const [hitBottom, setHitBottom] = useState(true);
  576. const isMobileScreen = useMobileScreen();
  577. const navigate = useNavigate();
  578. // prompt hints
  579. const promptStore = usePromptStore();
  580. const [promptHints, setPromptHints] = useState<RenderPompt[]>([]);
  581. const onSearch = useDebouncedCallback(
  582. (text: string) => {
  583. const matchedPrompts = promptStore.search(text);
  584. setPromptHints(matchedPrompts);
  585. },
  586. 100,
  587. { leading: true, trailing: true },
  588. );
  589. // auto grow input
  590. const [inputRows, setInputRows] = useState(2);
  591. const measure = useDebouncedCallback(
  592. () => {
  593. const rows = inputRef.current ? autoGrowTextArea(inputRef.current) : 1;
  594. const inputRows = Math.min(
  595. 20,
  596. Math.max(2 + Number(!isMobileScreen), rows),
  597. );
  598. setInputRows(inputRows);
  599. },
  600. 100,
  601. {
  602. leading: true,
  603. trailing: true,
  604. },
  605. );
  606. // eslint-disable-next-line react-hooks/exhaustive-deps
  607. useEffect(measure, [userInput]);
  608. // chat commands shortcuts
  609. const chatCommands = useChatCommand({
  610. new: () => chatStore.newSession(),
  611. newm: () => navigate(Path.NewChat),
  612. prev: () => chatStore.nextSession(-1),
  613. next: () => chatStore.nextSession(1),
  614. clear: () =>
  615. chatStore.updateCurrentSession(
  616. (session) => (session.clearContextIndex = session.messages.length),
  617. ),
  618. del: () => chatStore.deleteSession(chatStore.currentSessionIndex),
  619. });
  620. // only search prompts when user input is short
  621. const SEARCH_TEXT_LIMIT = 30;
  622. const onInput = (text: string) => {
  623. setUserInput(text);
  624. const n = text.trim().length;
  625. // clear search results
  626. if (n === 0) {
  627. setPromptHints([]);
  628. } else if (text.startsWith(ChatCommandPrefix)) {
  629. setPromptHints(chatCommands.search(text));
  630. } else if (!config.disablePromptHint && n < SEARCH_TEXT_LIMIT) {
  631. // check if need to trigger auto completion
  632. if (text.startsWith("/")) {
  633. let searchText = text.slice(1);
  634. onSearch(searchText);
  635. }
  636. }
  637. };
  638. const doSubmit = (userInput: string) => {
  639. if (userInput.trim() === "") return;
  640. const matchCommand = chatCommands.match(userInput);
  641. if (matchCommand.matched) {
  642. setUserInput("");
  643. setPromptHints([]);
  644. matchCommand.invoke();
  645. return;
  646. }
  647. setIsLoading(true);
  648. chatStore.onUserInput(userInput).then(() => setIsLoading(false));
  649. localStorage.setItem(LAST_INPUT_KEY, userInput);
  650. setUserInput("");
  651. setPromptHints([]);
  652. if (!isMobileScreen) inputRef.current?.focus();
  653. setAutoScroll(true);
  654. };
  655. const onPromptSelect = (prompt: RenderPompt) => {
  656. setTimeout(() => {
  657. setPromptHints([]);
  658. const matchedChatCommand = chatCommands.match(prompt.content);
  659. if (matchedChatCommand.matched) {
  660. // if user is selecting a chat command, just trigger it
  661. matchedChatCommand.invoke();
  662. setUserInput("");
  663. } else {
  664. // or fill the prompt
  665. setUserInput(prompt.content);
  666. }
  667. inputRef.current?.focus();
  668. }, 30);
  669. };
  670. // stop response
  671. const onUserStop = (messageId: string) => {
  672. ChatControllerPool.stop(session.id, messageId);
  673. };
  674. useEffect(() => {
  675. chatStore.updateCurrentSession((session) => {
  676. const stopTiming = Date.now() - REQUEST_TIMEOUT_MS;
  677. session.messages.forEach((m) => {
  678. // check if should stop all stale messages
  679. if (m.isError || new Date(m.date).getTime() < stopTiming) {
  680. if (m.streaming) {
  681. m.streaming = false;
  682. }
  683. if (m.content.length === 0) {
  684. m.isError = true;
  685. m.content = prettyObject({
  686. error: true,
  687. message: "empty response",
  688. });
  689. }
  690. }
  691. });
  692. // auto sync mask config from global config
  693. if (session.mask.syncGlobalConfig) {
  694. console.log("[Mask] syncing from global, name = ", session.mask.name);
  695. session.mask.modelConfig = { ...config.modelConfig };
  696. }
  697. });
  698. // eslint-disable-next-line react-hooks/exhaustive-deps
  699. }, []);
  700. // check if should send message
  701. const onInputKeyDown = (e: React.KeyboardEvent<HTMLTextAreaElement>) => {
  702. // if ArrowUp and no userInput, fill with last input
  703. if (
  704. e.key === "ArrowUp" &&
  705. userInput.length <= 0 &&
  706. !(e.metaKey || e.altKey || e.ctrlKey)
  707. ) {
  708. setUserInput(localStorage.getItem(LAST_INPUT_KEY) ?? "");
  709. e.preventDefault();
  710. return;
  711. }
  712. if (shouldSubmit(e) && promptHints.length === 0) {
  713. doSubmit(userInput);
  714. e.preventDefault();
  715. }
  716. };
  717. const onRightClick = (e: any, message: ChatMessage) => {
  718. // copy to clipboard
  719. if (selectOrCopy(e.currentTarget, message.content)) {
  720. if (userInput.length === 0) {
  721. setUserInput(message.content);
  722. }
  723. e.preventDefault();
  724. }
  725. };
  726. const deleteMessage = (msgId?: string) => {
  727. chatStore.updateCurrentSession(
  728. (session) =>
  729. (session.messages = session.messages.filter((m) => m.id !== msgId)),
  730. );
  731. };
  732. const onDelete = (msgId: string) => {
  733. deleteMessage(msgId);
  734. };
  735. const onResend = (message: ChatMessage) => {
  736. // when it is resending a message
  737. // 1. for a user's message, find the next bot response
  738. // 2. for a bot's message, find the last user's input
  739. // 3. delete original user input and bot's message
  740. // 4. resend the user's input
  741. const resendingIndex = session.messages.findIndex(
  742. (m) => m.id === message.id,
  743. );
  744. if (resendingIndex < 0 || resendingIndex >= session.messages.length) {
  745. console.error("[Chat] failed to find resending message", message);
  746. return;
  747. }
  748. let userMessage: ChatMessage | undefined;
  749. let botMessage: ChatMessage | undefined;
  750. if (message.role === "assistant") {
  751. // if it is resending a bot's message, find the user input for it
  752. botMessage = message;
  753. for (let i = resendingIndex; i >= 0; i -= 1) {
  754. if (session.messages[i].role === "user") {
  755. userMessage = session.messages[i];
  756. break;
  757. }
  758. }
  759. } else if (message.role === "user") {
  760. // if it is resending a user's input, find the bot's response
  761. userMessage = message;
  762. for (let i = resendingIndex; i < session.messages.length; i += 1) {
  763. if (session.messages[i].role === "assistant") {
  764. botMessage = session.messages[i];
  765. break;
  766. }
  767. }
  768. }
  769. if (userMessage === undefined) {
  770. console.error("[Chat] failed to resend", message);
  771. return;
  772. }
  773. // delete the original messages
  774. deleteMessage(userMessage.id);
  775. deleteMessage(botMessage?.id);
  776. // resend the message
  777. setIsLoading(true);
  778. chatStore.onUserInput(userMessage.content).then(() => setIsLoading(false));
  779. inputRef.current?.focus();
  780. };
  781. const onPinMessage = (message: ChatMessage) => {
  782. chatStore.updateCurrentSession((session) =>
  783. session.mask.context.push(message),
  784. );
  785. showToast(Locale.Chat.Actions.PinToastContent, {
  786. text: Locale.Chat.Actions.PinToastAction,
  787. onClick: () => {
  788. setShowPromptModal(true);
  789. },
  790. });
  791. };
  792. const context: RenderMessage[] = useMemo(() => {
  793. return session.mask.hideContext ? [] : session.mask.context.slice();
  794. }, [session.mask.context, session.mask.hideContext]);
  795. const accessStore = useAccessStore();
  796. if (
  797. context.length === 0 &&
  798. session.messages.at(0)?.content !== BOT_HELLO.content
  799. ) {
  800. const copiedHello = Object.assign({}, BOT_HELLO);
  801. if (!accessStore.isAuthorized()) {
  802. copiedHello.content = Locale.Error.Unauthorized;
  803. }
  804. context.push(copiedHello);
  805. }
  806. // preview messages
  807. const renderMessages = useMemo(() => {
  808. return context
  809. .concat(session.messages as RenderMessage[])
  810. .concat(
  811. isLoading
  812. ? [
  813. {
  814. ...createMessage({
  815. role: "assistant",
  816. content: "……",
  817. }),
  818. preview: true,
  819. },
  820. ]
  821. : [],
  822. )
  823. .concat(
  824. userInput.length > 0 && config.sendPreviewBubble
  825. ? [
  826. {
  827. ...createMessage({
  828. role: "user",
  829. content: userInput,
  830. }),
  831. preview: true,
  832. },
  833. ]
  834. : [],
  835. );
  836. }, [
  837. config.sendPreviewBubble,
  838. context,
  839. isLoading,
  840. session.messages,
  841. userInput,
  842. ]);
  843. const [msgRenderIndex, _setMsgRenderIndex] = useState(
  844. Math.max(0, renderMessages.length - CHAT_PAGE_SIZE),
  845. );
  846. function setMsgRenderIndex(newIndex: number) {
  847. newIndex = Math.min(renderMessages.length - CHAT_PAGE_SIZE, newIndex);
  848. newIndex = Math.max(0, newIndex);
  849. _setMsgRenderIndex(newIndex);
  850. }
  851. const messages = useMemo(() => {
  852. const endRenderIndex = Math.min(
  853. msgRenderIndex + 3 * CHAT_PAGE_SIZE,
  854. renderMessages.length,
  855. );
  856. return renderMessages.slice(msgRenderIndex, endRenderIndex);
  857. }, [msgRenderIndex, renderMessages]);
  858. const onChatBodyScroll = (e: HTMLElement) => {
  859. const bottomHeight = e.scrollTop + e.clientHeight;
  860. const edgeThreshold = e.clientHeight;
  861. const isTouchTopEdge = e.scrollTop <= edgeThreshold;
  862. const isTouchBottomEdge = bottomHeight >= e.scrollHeight - edgeThreshold;
  863. const isHitBottom =
  864. bottomHeight >= e.scrollHeight - (isMobileScreen ? 4 : 10);
  865. const prevPageMsgIndex = msgRenderIndex - CHAT_PAGE_SIZE;
  866. const nextPageMsgIndex = msgRenderIndex + CHAT_PAGE_SIZE;
  867. if (isTouchTopEdge && !isTouchBottomEdge) {
  868. setMsgRenderIndex(prevPageMsgIndex);
  869. } else if (isTouchBottomEdge) {
  870. setMsgRenderIndex(nextPageMsgIndex);
  871. }
  872. setHitBottom(isHitBottom);
  873. setAutoScroll(isHitBottom);
  874. };
  875. function scrollToBottom() {
  876. setMsgRenderIndex(renderMessages.length - CHAT_PAGE_SIZE);
  877. scrollDomToBottom();
  878. }
  879. // clear context index = context length + index in messages
  880. const clearContextIndex =
  881. (session.clearContextIndex ?? -1) >= 0
  882. ? session.clearContextIndex! + context.length - msgRenderIndex
  883. : -1;
  884. const [showPromptModal, setShowPromptModal] = useState(false);
  885. const clientConfig = useMemo(() => getClientConfig(), []);
  886. const autoFocus = !isMobileScreen; // wont auto focus on mobile screen
  887. const showMaxIcon = !isMobileScreen && !clientConfig?.isApp;
  888. useCommand({
  889. fill: setUserInput,
  890. submit: (text) => {
  891. doSubmit(text);
  892. },
  893. code: (text) => {
  894. if (accessStore.disableFastLink) return;
  895. console.log("[Command] got code from url: ", text);
  896. showConfirm(Locale.URLCommand.Code + `code = ${text}`).then((res) => {
  897. if (res) {
  898. accessStore.update((access) => (access.accessCode = text));
  899. }
  900. });
  901. },
  902. settings: (text) => {
  903. if (accessStore.disableFastLink) return;
  904. try {
  905. const payload = JSON.parse(text) as {
  906. key?: string;
  907. url?: string;
  908. };
  909. console.log("[Command] got settings from url: ", payload);
  910. if (payload.key || payload.url) {
  911. showConfirm(
  912. Locale.URLCommand.Settings +
  913. `\n${JSON.stringify(payload, null, 4)}`,
  914. ).then((res) => {
  915. if (!res) return;
  916. if (payload.key) {
  917. accessStore.update(
  918. (access) => (access.openaiApiKey = payload.key!),
  919. );
  920. }
  921. if (payload.url) {
  922. accessStore.update((access) => (access.openaiUrl = payload.url!));
  923. }
  924. });
  925. }
  926. } catch {
  927. console.error("[Command] failed to get settings from url: ", text);
  928. }
  929. },
  930. });
  931. // edit / insert message modal
  932. const [isEditingMessage, setIsEditingMessage] = useState(false);
  933. // remember unfinished input
  934. useEffect(() => {
  935. // try to load from local storage
  936. const key = UNFINISHED_INPUT(session.id);
  937. const mayBeUnfinishedInput = localStorage.getItem(key);
  938. if (mayBeUnfinishedInput && userInput.length === 0) {
  939. setUserInput(mayBeUnfinishedInput);
  940. localStorage.removeItem(key);
  941. }
  942. const dom = inputRef.current;
  943. return () => {
  944. localStorage.setItem(key, dom?.value ?? "");
  945. };
  946. // eslint-disable-next-line react-hooks/exhaustive-deps
  947. }, []);
  948. return (
  949. <div className={styles.chat} key={session.id}>
  950. <div className="window-header" data-tauri-drag-region>
  951. {isMobileScreen && (
  952. <div className="window-actions">
  953. <div className={"window-action-button"}>
  954. <IconButton
  955. icon={<ReturnIcon />}
  956. bordered
  957. title={Locale.Chat.Actions.ChatList}
  958. onClick={() => navigate(Path.Home)}
  959. />
  960. </div>
  961. </div>
  962. )}
  963. <div className={`window-header-title ${styles["chat-body-title"]}`}>
  964. <div
  965. className={`window-header-main-title ${styles["chat-body-main-title"]}`}
  966. onClickCapture={() => setIsEditingMessage(true)}
  967. >
  968. {!session.topic ? DEFAULT_TOPIC : session.topic}
  969. </div>
  970. <div className="window-header-sub-title">
  971. {Locale.Chat.SubTitle(session.messages.length)}
  972. </div>
  973. </div>
  974. <div className="window-actions">
  975. {!isMobileScreen && (
  976. <div className="window-action-button">
  977. <IconButton
  978. icon={<RenameIcon />}
  979. bordered
  980. onClick={() => setIsEditingMessage(true)}
  981. />
  982. </div>
  983. )}
  984. <div className="window-action-button">
  985. <IconButton
  986. icon={<ExportIcon />}
  987. bordered
  988. title={Locale.Chat.Actions.Export}
  989. onClick={() => {
  990. setShowExport(true);
  991. }}
  992. />
  993. </div>
  994. {showMaxIcon && (
  995. <div className="window-action-button">
  996. <IconButton
  997. icon={config.tightBorder ? <MinIcon /> : <MaxIcon />}
  998. bordered
  999. onClick={() => {
  1000. config.update(
  1001. (config) => (config.tightBorder = !config.tightBorder),
  1002. );
  1003. }}
  1004. />
  1005. </div>
  1006. )}
  1007. </div>
  1008. <PromptToast
  1009. showToast={!hitBottom}
  1010. showModal={showPromptModal}
  1011. setShowModal={setShowPromptModal}
  1012. />
  1013. </div>
  1014. <div
  1015. className={styles["chat-body"]}
  1016. ref={scrollRef}
  1017. onScroll={(e) => onChatBodyScroll(e.currentTarget)}
  1018. onMouseDown={() => inputRef.current?.blur()}
  1019. onTouchStart={() => {
  1020. inputRef.current?.blur();
  1021. setAutoScroll(false);
  1022. }}
  1023. >
  1024. {messages.map((message, i) => {
  1025. const isUser = message.role === "user";
  1026. const isContext = i < context.length;
  1027. const showActions =
  1028. i > 0 &&
  1029. !(message.preview || message.content.length === 0) &&
  1030. !isContext;
  1031. const showTyping = message.preview || message.streaming;
  1032. const shouldShowClearContextDivider = i === clearContextIndex - 1;
  1033. return (
  1034. <Fragment key={message.id}>
  1035. <div
  1036. className={
  1037. isUser ? styles["chat-message-user"] : styles["chat-message"]
  1038. }
  1039. >
  1040. <div className={styles["chat-message-container"]}>
  1041. <div className={styles["chat-message-header"]}>
  1042. <div className={styles["chat-message-avatar"]}>
  1043. <div className={styles["chat-message-edit"]}>
  1044. <IconButton
  1045. icon={<EditIcon />}
  1046. onClick={async () => {
  1047. const newMessage = await showPrompt(
  1048. Locale.Chat.Actions.Edit,
  1049. message.content,
  1050. 10,
  1051. );
  1052. chatStore.updateCurrentSession((session) => {
  1053. const m = session.mask.context
  1054. .concat(session.messages)
  1055. .find((m) => m.id === message.id);
  1056. if (m) {
  1057. m.content = newMessage;
  1058. }
  1059. });
  1060. }}
  1061. ></IconButton>
  1062. </div>
  1063. {isUser ? (
  1064. <Avatar avatar={config.avatar} />
  1065. ) : (
  1066. <>
  1067. {["system"].includes(message.role) ? (
  1068. <Avatar avatar="2699-fe0f" />
  1069. ) : (
  1070. <MaskAvatar
  1071. avatar={session.mask.avatar}
  1072. model={
  1073. message.model || session.mask.modelConfig.model
  1074. }
  1075. />
  1076. )}
  1077. </>
  1078. )}
  1079. </div>
  1080. {showActions && (
  1081. <div className={styles["chat-message-actions"]}>
  1082. <div className={styles["chat-input-actions"]}>
  1083. {message.streaming ? (
  1084. <ChatAction
  1085. text={Locale.Chat.Actions.Stop}
  1086. icon={<StopIcon />}
  1087. onClick={() => onUserStop(message.id ?? i)}
  1088. />
  1089. ) : (
  1090. <>
  1091. <ChatAction
  1092. text={Locale.Chat.Actions.Retry}
  1093. icon={<ResetIcon />}
  1094. onClick={() => onResend(message)}
  1095. />
  1096. <ChatAction
  1097. text={Locale.Chat.Actions.Delete}
  1098. icon={<DeleteIcon />}
  1099. onClick={() => onDelete(message.id ?? i)}
  1100. />
  1101. <ChatAction
  1102. text={Locale.Chat.Actions.Pin}
  1103. icon={<PinIcon />}
  1104. onClick={() => onPinMessage(message)}
  1105. />
  1106. <ChatAction
  1107. text={Locale.Chat.Actions.Copy}
  1108. icon={<CopyIcon />}
  1109. onClick={() => copyToClipboard(message.content)}
  1110. />
  1111. </>
  1112. )}
  1113. </div>
  1114. </div>
  1115. )}
  1116. </div>
  1117. {showTyping && (
  1118. <div className={styles["chat-message-status"]}>
  1119. {Locale.Chat.Typing}
  1120. </div>
  1121. )}
  1122. <div className={styles["chat-message-item"]}>
  1123. <Markdown
  1124. content={message.content}
  1125. loading={
  1126. (message.preview || message.streaming) &&
  1127. message.content.length === 0 &&
  1128. !isUser
  1129. }
  1130. onContextMenu={(e) => onRightClick(e, message)}
  1131. onDoubleClickCapture={() => {
  1132. if (!isMobileScreen) return;
  1133. setUserInput(message.content);
  1134. }}
  1135. fontSize={fontSize}
  1136. parentRef={scrollRef}
  1137. defaultShow={i >= messages.length - 6}
  1138. />
  1139. </div>
  1140. <div className={styles["chat-message-action-date"]}>
  1141. {isContext
  1142. ? Locale.Chat.IsContext
  1143. : message.date.toLocaleString()}
  1144. </div>
  1145. </div>
  1146. </div>
  1147. {shouldShowClearContextDivider && <ClearContextDivider />}
  1148. </Fragment>
  1149. );
  1150. })}
  1151. </div>
  1152. <div className={styles["chat-input-panel"]}>
  1153. <PromptHints prompts={promptHints} onPromptSelect={onPromptSelect} />
  1154. <ChatActions
  1155. showPromptModal={() => setShowPromptModal(true)}
  1156. scrollToBottom={scrollToBottom}
  1157. hitBottom={hitBottom}
  1158. showPromptHints={() => {
  1159. // Click again to close
  1160. if (promptHints.length > 0) {
  1161. setPromptHints([]);
  1162. return;
  1163. }
  1164. inputRef.current?.focus();
  1165. setUserInput("/");
  1166. onSearch("");
  1167. }}
  1168. />
  1169. <div className={styles["chat-input-panel-inner"]}>
  1170. <textarea
  1171. ref={inputRef}
  1172. className={styles["chat-input"]}
  1173. placeholder={Locale.Chat.Input(submitKey)}
  1174. onInput={(e) => onInput(e.currentTarget.value)}
  1175. value={userInput}
  1176. onKeyDown={onInputKeyDown}
  1177. onFocus={scrollToBottom}
  1178. onClick={scrollToBottom}
  1179. rows={inputRows}
  1180. autoFocus={autoFocus}
  1181. style={{
  1182. fontSize: config.fontSize,
  1183. }}
  1184. />
  1185. <IconButton
  1186. icon={<SendWhiteIcon />}
  1187. text={Locale.Chat.Send}
  1188. className={styles["chat-input-send"]}
  1189. type="primary"
  1190. onClick={() => doSubmit(userInput)}
  1191. />
  1192. </div>
  1193. </div>
  1194. {showExport && (
  1195. <ExportMessageModal onClose={() => setShowExport(false)} />
  1196. )}
  1197. {isEditingMessage && (
  1198. <EditMessageModal
  1199. onClose={() => {
  1200. setIsEditingMessage(false);
  1201. }}
  1202. />
  1203. )}
  1204. </div>
  1205. );
  1206. }
  1207. export function Chat() {
  1208. const chatStore = useChatStore();
  1209. const sessionIndex = chatStore.currentSessionIndex;
  1210. return <_Chat key={sessionIndex}></_Chat>;
  1211. }