chat.tsx 38 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309
  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 models = useAllModels()
  395. .filter((m) => m.available)
  396. .map((m) => m.name);
  397. const [showModelSelector, setShowModelSelector] = useState(false);
  398. return (
  399. <div className={styles["chat-input-actions"]}>
  400. {couldStop && (
  401. <ChatAction
  402. onClick={stopAll}
  403. text={Locale.Chat.InputActions.Stop}
  404. icon={<StopIcon />}
  405. />
  406. )}
  407. {!props.hitBottom && (
  408. <ChatAction
  409. onClick={props.scrollToBottom}
  410. text={Locale.Chat.InputActions.ToBottom}
  411. icon={<BottomIcon />}
  412. />
  413. )}
  414. {props.hitBottom && (
  415. <ChatAction
  416. onClick={props.showPromptModal}
  417. text={Locale.Chat.InputActions.Settings}
  418. icon={<SettingsIcon />}
  419. />
  420. )}
  421. <ChatAction
  422. onClick={nextTheme}
  423. text={Locale.Chat.InputActions.Theme[theme]}
  424. icon={
  425. <>
  426. {theme === Theme.Auto ? (
  427. <AutoIcon />
  428. ) : theme === Theme.Light ? (
  429. <LightIcon />
  430. ) : theme === Theme.Dark ? (
  431. <DarkIcon />
  432. ) : null}
  433. </>
  434. }
  435. />
  436. <ChatAction
  437. onClick={props.showPromptHints}
  438. text={Locale.Chat.InputActions.Prompt}
  439. icon={<PromptIcon />}
  440. />
  441. <ChatAction
  442. onClick={() => {
  443. navigate(Path.Masks);
  444. }}
  445. text={Locale.Chat.InputActions.Masks}
  446. icon={<MaskIcon />}
  447. />
  448. <ChatAction
  449. text={Locale.Chat.InputActions.Clear}
  450. icon={<BreakIcon />}
  451. onClick={() => {
  452. chatStore.updateCurrentSession((session) => {
  453. if (session.clearContextIndex === session.messages.length) {
  454. session.clearContextIndex = undefined;
  455. } else {
  456. session.clearContextIndex = session.messages.length;
  457. session.memoryPrompt = ""; // will clear memory
  458. }
  459. });
  460. }}
  461. />
  462. <ChatAction
  463. onClick={() => setShowModelSelector(true)}
  464. text={currentModel}
  465. icon={<RobotIcon />}
  466. />
  467. {showModelSelector && (
  468. <Selector
  469. defaultSelectedValue={currentModel}
  470. items={models.map((m) => ({
  471. title: m,
  472. value: m,
  473. }))}
  474. onClose={() => setShowModelSelector(false)}
  475. onSelection={(s) => {
  476. if (s.length === 0) return;
  477. chatStore.updateCurrentSession((session) => {
  478. session.mask.modelConfig.model = s[0] as ModelType;
  479. session.mask.syncGlobalConfig = false;
  480. });
  481. showToast(s[0]);
  482. }}
  483. />
  484. )}
  485. </div>
  486. );
  487. }
  488. export function EditMessageModal(props: { onClose: () => void }) {
  489. const chatStore = useChatStore();
  490. const session = chatStore.currentSession();
  491. const [messages, setMessages] = useState(session.messages.slice());
  492. return (
  493. <div className="modal-mask">
  494. <Modal
  495. title={Locale.Chat.EditMessage.Title}
  496. onClose={props.onClose}
  497. actions={[
  498. <IconButton
  499. text={Locale.UI.Cancel}
  500. icon={<CancelIcon />}
  501. key="cancel"
  502. onClick={() => {
  503. props.onClose();
  504. }}
  505. />,
  506. <IconButton
  507. type="primary"
  508. text={Locale.UI.Confirm}
  509. icon={<ConfirmIcon />}
  510. key="ok"
  511. onClick={() => {
  512. chatStore.updateCurrentSession(
  513. (session) => (session.messages = messages),
  514. );
  515. props.onClose();
  516. }}
  517. />,
  518. ]}
  519. >
  520. <List>
  521. <ListItem
  522. title={Locale.Chat.EditMessage.Topic.Title}
  523. subTitle={Locale.Chat.EditMessage.Topic.SubTitle}
  524. >
  525. <input
  526. type="text"
  527. value={session.topic}
  528. onInput={(e) =>
  529. chatStore.updateCurrentSession(
  530. (session) => (session.topic = e.currentTarget.value),
  531. )
  532. }
  533. ></input>
  534. </ListItem>
  535. </List>
  536. <ContextPrompts
  537. context={messages}
  538. updateContext={(updater) => {
  539. const newMessages = messages.slice();
  540. updater(newMessages);
  541. setMessages(newMessages);
  542. }}
  543. />
  544. </Modal>
  545. </div>
  546. );
  547. }
  548. function _Chat() {
  549. type RenderMessage = ChatMessage & { preview?: boolean };
  550. const chatStore = useChatStore();
  551. const session = chatStore.currentSession();
  552. const config = useAppConfig();
  553. const fontSize = config.fontSize;
  554. const [showExport, setShowExport] = useState(false);
  555. const inputRef = useRef<HTMLTextAreaElement>(null);
  556. const [userInput, setUserInput] = useState("");
  557. const [isLoading, setIsLoading] = useState(false);
  558. const { submitKey, shouldSubmit } = useSubmitHandler();
  559. const { scrollRef, setAutoScroll, scrollDomToBottom } = useScrollToBottom();
  560. const [hitBottom, setHitBottom] = useState(true);
  561. const isMobileScreen = useMobileScreen();
  562. const navigate = useNavigate();
  563. // prompt hints
  564. const promptStore = usePromptStore();
  565. const [promptHints, setPromptHints] = useState<RenderPompt[]>([]);
  566. const onSearch = useDebouncedCallback(
  567. (text: string) => {
  568. const matchedPrompts = promptStore.search(text);
  569. setPromptHints(matchedPrompts);
  570. },
  571. 100,
  572. { leading: true, trailing: true },
  573. );
  574. // auto grow input
  575. const [inputRows, setInputRows] = useState(2);
  576. const measure = useDebouncedCallback(
  577. () => {
  578. const rows = inputRef.current ? autoGrowTextArea(inputRef.current) : 1;
  579. const inputRows = Math.min(
  580. 20,
  581. Math.max(2 + Number(!isMobileScreen), rows),
  582. );
  583. setInputRows(inputRows);
  584. },
  585. 100,
  586. {
  587. leading: true,
  588. trailing: true,
  589. },
  590. );
  591. // eslint-disable-next-line react-hooks/exhaustive-deps
  592. useEffect(measure, [userInput]);
  593. // chat commands shortcuts
  594. const chatCommands = useChatCommand({
  595. new: () => chatStore.newSession(),
  596. newm: () => navigate(Path.NewChat),
  597. prev: () => chatStore.nextSession(-1),
  598. next: () => chatStore.nextSession(1),
  599. clear: () =>
  600. chatStore.updateCurrentSession(
  601. (session) => (session.clearContextIndex = session.messages.length),
  602. ),
  603. del: () => chatStore.deleteSession(chatStore.currentSessionIndex),
  604. });
  605. // only search prompts when user input is short
  606. const SEARCH_TEXT_LIMIT = 30;
  607. const onInput = (text: string) => {
  608. setUserInput(text);
  609. const n = text.trim().length;
  610. // clear search results
  611. if (n === 0) {
  612. setPromptHints([]);
  613. } else if (text.startsWith(ChatCommandPrefix)) {
  614. setPromptHints(chatCommands.search(text));
  615. } else if (!config.disablePromptHint && n < SEARCH_TEXT_LIMIT) {
  616. // check if need to trigger auto completion
  617. if (text.startsWith("/")) {
  618. let searchText = text.slice(1);
  619. onSearch(searchText);
  620. }
  621. }
  622. };
  623. const doSubmit = (userInput: string) => {
  624. if (userInput.trim() === "") return;
  625. const matchCommand = chatCommands.match(userInput);
  626. if (matchCommand.matched) {
  627. setUserInput("");
  628. setPromptHints([]);
  629. matchCommand.invoke();
  630. return;
  631. }
  632. setIsLoading(true);
  633. chatStore.onUserInput(userInput).then(() => setIsLoading(false));
  634. localStorage.setItem(LAST_INPUT_KEY, userInput);
  635. setUserInput("");
  636. setPromptHints([]);
  637. if (!isMobileScreen) inputRef.current?.focus();
  638. setAutoScroll(true);
  639. };
  640. const onPromptSelect = (prompt: RenderPompt) => {
  641. setTimeout(() => {
  642. setPromptHints([]);
  643. const matchedChatCommand = chatCommands.match(prompt.content);
  644. if (matchedChatCommand.matched) {
  645. // if user is selecting a chat command, just trigger it
  646. matchedChatCommand.invoke();
  647. setUserInput("");
  648. } else {
  649. // or fill the prompt
  650. setUserInput(prompt.content);
  651. }
  652. inputRef.current?.focus();
  653. }, 30);
  654. };
  655. // stop response
  656. const onUserStop = (messageId: string) => {
  657. ChatControllerPool.stop(session.id, messageId);
  658. };
  659. useEffect(() => {
  660. chatStore.updateCurrentSession((session) => {
  661. const stopTiming = Date.now() - REQUEST_TIMEOUT_MS;
  662. session.messages.forEach((m) => {
  663. // check if should stop all stale messages
  664. if (m.isError || new Date(m.date).getTime() < stopTiming) {
  665. if (m.streaming) {
  666. m.streaming = false;
  667. }
  668. if (m.content.length === 0) {
  669. m.isError = true;
  670. m.content = prettyObject({
  671. error: true,
  672. message: "empty response",
  673. });
  674. }
  675. }
  676. });
  677. // auto sync mask config from global config
  678. if (session.mask.syncGlobalConfig) {
  679. console.log("[Mask] syncing from global, name = ", session.mask.name);
  680. session.mask.modelConfig = { ...config.modelConfig };
  681. }
  682. });
  683. // eslint-disable-next-line react-hooks/exhaustive-deps
  684. }, []);
  685. // check if should send message
  686. const onInputKeyDown = (e: React.KeyboardEvent<HTMLTextAreaElement>) => {
  687. // if ArrowUp and no userInput, fill with last input
  688. if (
  689. e.key === "ArrowUp" &&
  690. userInput.length <= 0 &&
  691. !(e.metaKey || e.altKey || e.ctrlKey)
  692. ) {
  693. setUserInput(localStorage.getItem(LAST_INPUT_KEY) ?? "");
  694. e.preventDefault();
  695. return;
  696. }
  697. if (shouldSubmit(e) && promptHints.length === 0) {
  698. doSubmit(userInput);
  699. e.preventDefault();
  700. }
  701. };
  702. const onRightClick = (e: any, message: ChatMessage) => {
  703. // copy to clipboard
  704. if (selectOrCopy(e.currentTarget, message.content)) {
  705. if (userInput.length === 0) {
  706. setUserInput(message.content);
  707. }
  708. e.preventDefault();
  709. }
  710. };
  711. const deleteMessage = (msgId?: string) => {
  712. chatStore.updateCurrentSession(
  713. (session) =>
  714. (session.messages = session.messages.filter((m) => m.id !== msgId)),
  715. );
  716. };
  717. const onDelete = (msgId: string) => {
  718. deleteMessage(msgId);
  719. };
  720. const onResend = (message: ChatMessage) => {
  721. // when it is resending a message
  722. // 1. for a user's message, find the next bot response
  723. // 2. for a bot's message, find the last user's input
  724. // 3. delete original user input and bot's message
  725. // 4. resend the user's input
  726. const resendingIndex = session.messages.findIndex(
  727. (m) => m.id === message.id,
  728. );
  729. if (resendingIndex < 0 || resendingIndex >= session.messages.length) {
  730. console.error("[Chat] failed to find resending message", message);
  731. return;
  732. }
  733. let userMessage: ChatMessage | undefined;
  734. let botMessage: ChatMessage | undefined;
  735. if (message.role === "assistant") {
  736. // if it is resending a bot's message, find the user input for it
  737. botMessage = message;
  738. for (let i = resendingIndex; i >= 0; i -= 1) {
  739. if (session.messages[i].role === "user") {
  740. userMessage = session.messages[i];
  741. break;
  742. }
  743. }
  744. } else if (message.role === "user") {
  745. // if it is resending a user's input, find the bot's response
  746. userMessage = message;
  747. for (let i = resendingIndex; i < session.messages.length; i += 1) {
  748. if (session.messages[i].role === "assistant") {
  749. botMessage = session.messages[i];
  750. break;
  751. }
  752. }
  753. }
  754. if (userMessage === undefined) {
  755. console.error("[Chat] failed to resend", message);
  756. return;
  757. }
  758. // delete the original messages
  759. deleteMessage(userMessage.id);
  760. deleteMessage(botMessage?.id);
  761. // resend the message
  762. setIsLoading(true);
  763. chatStore.onUserInput(userMessage.content).then(() => setIsLoading(false));
  764. inputRef.current?.focus();
  765. };
  766. const onPinMessage = (message: ChatMessage) => {
  767. chatStore.updateCurrentSession((session) =>
  768. session.mask.context.push(message),
  769. );
  770. showToast(Locale.Chat.Actions.PinToastContent, {
  771. text: Locale.Chat.Actions.PinToastAction,
  772. onClick: () => {
  773. setShowPromptModal(true);
  774. },
  775. });
  776. };
  777. const context: RenderMessage[] = useMemo(() => {
  778. return session.mask.hideContext ? [] : session.mask.context.slice();
  779. }, [session.mask.context, session.mask.hideContext]);
  780. const accessStore = useAccessStore();
  781. if (
  782. context.length === 0 &&
  783. session.messages.at(0)?.content !== BOT_HELLO.content
  784. ) {
  785. const copiedHello = Object.assign({}, BOT_HELLO);
  786. if (!accessStore.isAuthorized()) {
  787. copiedHello.content = Locale.Error.Unauthorized;
  788. }
  789. context.push(copiedHello);
  790. }
  791. // preview messages
  792. const renderMessages = useMemo(() => {
  793. return context
  794. .concat(session.messages as RenderMessage[])
  795. .concat(
  796. isLoading
  797. ? [
  798. {
  799. ...createMessage({
  800. role: "assistant",
  801. content: "……",
  802. }),
  803. preview: true,
  804. },
  805. ]
  806. : [],
  807. )
  808. .concat(
  809. userInput.length > 0 && config.sendPreviewBubble
  810. ? [
  811. {
  812. ...createMessage({
  813. role: "user",
  814. content: userInput,
  815. }),
  816. preview: true,
  817. },
  818. ]
  819. : [],
  820. );
  821. }, [
  822. config.sendPreviewBubble,
  823. context,
  824. isLoading,
  825. session.messages,
  826. userInput,
  827. ]);
  828. const [msgRenderIndex, _setMsgRenderIndex] = useState(
  829. Math.max(0, renderMessages.length - CHAT_PAGE_SIZE),
  830. );
  831. function setMsgRenderIndex(newIndex: number) {
  832. newIndex = Math.min(renderMessages.length - CHAT_PAGE_SIZE, newIndex);
  833. newIndex = Math.max(0, newIndex);
  834. _setMsgRenderIndex(newIndex);
  835. }
  836. const messages = useMemo(() => {
  837. const endRenderIndex = Math.min(
  838. msgRenderIndex + 3 * CHAT_PAGE_SIZE,
  839. renderMessages.length,
  840. );
  841. return renderMessages.slice(msgRenderIndex, endRenderIndex);
  842. }, [msgRenderIndex, renderMessages]);
  843. const onChatBodyScroll = (e: HTMLElement) => {
  844. const bottomHeight = e.scrollTop + e.clientHeight;
  845. const edgeThreshold = e.clientHeight;
  846. const isTouchTopEdge = e.scrollTop <= edgeThreshold;
  847. const isTouchBottomEdge = bottomHeight >= e.scrollHeight - edgeThreshold;
  848. const isHitBottom =
  849. bottomHeight >= e.scrollHeight - (isMobileScreen ? 4 : 10);
  850. const prevPageMsgIndex = msgRenderIndex - CHAT_PAGE_SIZE;
  851. const nextPageMsgIndex = msgRenderIndex + CHAT_PAGE_SIZE;
  852. if (isTouchTopEdge && !isTouchBottomEdge) {
  853. setMsgRenderIndex(prevPageMsgIndex);
  854. } else if (isTouchBottomEdge) {
  855. setMsgRenderIndex(nextPageMsgIndex);
  856. }
  857. setHitBottom(isHitBottom);
  858. setAutoScroll(isHitBottom);
  859. };
  860. function scrollToBottom() {
  861. setMsgRenderIndex(renderMessages.length - CHAT_PAGE_SIZE);
  862. scrollDomToBottom();
  863. }
  864. // clear context index = context length + index in messages
  865. const clearContextIndex =
  866. (session.clearContextIndex ?? -1) >= 0
  867. ? session.clearContextIndex! + context.length - msgRenderIndex
  868. : -1;
  869. const [showPromptModal, setShowPromptModal] = useState(false);
  870. const clientConfig = useMemo(() => getClientConfig(), []);
  871. const autoFocus = !isMobileScreen; // wont auto focus on mobile screen
  872. const showMaxIcon = !isMobileScreen && !clientConfig?.isApp;
  873. useCommand({
  874. fill: setUserInput,
  875. submit: (text) => {
  876. doSubmit(text);
  877. },
  878. code: (text) => {
  879. if (accessStore.disableFastLink) return;
  880. console.log("[Command] got code from url: ", text);
  881. showConfirm(Locale.URLCommand.Code + `code = ${text}`).then((res) => {
  882. if (res) {
  883. accessStore.update((access) => (access.accessCode = text));
  884. }
  885. });
  886. },
  887. settings: (text) => {
  888. if (accessStore.disableFastLink) return;
  889. try {
  890. const payload = JSON.parse(text) as {
  891. key?: string;
  892. url?: string;
  893. };
  894. console.log("[Command] got settings from url: ", payload);
  895. if (payload.key || payload.url) {
  896. showConfirm(
  897. Locale.URLCommand.Settings +
  898. `\n${JSON.stringify(payload, null, 4)}`,
  899. ).then((res) => {
  900. if (!res) return;
  901. if (payload.key) {
  902. accessStore.update(
  903. (access) => (access.openaiApiKey = payload.key!),
  904. );
  905. }
  906. if (payload.url) {
  907. accessStore.update((access) => (access.openaiUrl = payload.url!));
  908. }
  909. });
  910. }
  911. } catch {
  912. console.error("[Command] failed to get settings from url: ", text);
  913. }
  914. },
  915. });
  916. // edit / insert message modal
  917. const [isEditingMessage, setIsEditingMessage] = useState(false);
  918. // remember unfinished input
  919. useEffect(() => {
  920. // try to load from local storage
  921. const key = UNFINISHED_INPUT(session.id);
  922. const mayBeUnfinishedInput = localStorage.getItem(key);
  923. if (mayBeUnfinishedInput && userInput.length === 0) {
  924. setUserInput(mayBeUnfinishedInput);
  925. localStorage.removeItem(key);
  926. }
  927. const dom = inputRef.current;
  928. return () => {
  929. localStorage.setItem(key, dom?.value ?? "");
  930. };
  931. // eslint-disable-next-line react-hooks/exhaustive-deps
  932. }, []);
  933. return (
  934. <div className={styles.chat} key={session.id}>
  935. <div className="window-header" data-tauri-drag-region>
  936. {isMobileScreen && (
  937. <div className="window-actions">
  938. <div className={"window-action-button"}>
  939. <IconButton
  940. icon={<ReturnIcon />}
  941. bordered
  942. title={Locale.Chat.Actions.ChatList}
  943. onClick={() => navigate(Path.Home)}
  944. />
  945. </div>
  946. </div>
  947. )}
  948. <div className={`window-header-title ${styles["chat-body-title"]}`}>
  949. <div
  950. className={`window-header-main-title ${styles["chat-body-main-title"]}`}
  951. onClickCapture={() => setIsEditingMessage(true)}
  952. >
  953. {!session.topic ? DEFAULT_TOPIC : session.topic}
  954. </div>
  955. <div className="window-header-sub-title">
  956. {Locale.Chat.SubTitle(session.messages.length)}
  957. </div>
  958. </div>
  959. <div className="window-actions">
  960. {!isMobileScreen && (
  961. <div className="window-action-button">
  962. <IconButton
  963. icon={<RenameIcon />}
  964. bordered
  965. onClick={() => setIsEditingMessage(true)}
  966. />
  967. </div>
  968. )}
  969. <div className="window-action-button">
  970. <IconButton
  971. icon={<ExportIcon />}
  972. bordered
  973. title={Locale.Chat.Actions.Export}
  974. onClick={() => {
  975. setShowExport(true);
  976. }}
  977. />
  978. </div>
  979. {showMaxIcon && (
  980. <div className="window-action-button">
  981. <IconButton
  982. icon={config.tightBorder ? <MinIcon /> : <MaxIcon />}
  983. bordered
  984. onClick={() => {
  985. config.update(
  986. (config) => (config.tightBorder = !config.tightBorder),
  987. );
  988. }}
  989. />
  990. </div>
  991. )}
  992. </div>
  993. <PromptToast
  994. showToast={!hitBottom}
  995. showModal={showPromptModal}
  996. setShowModal={setShowPromptModal}
  997. />
  998. </div>
  999. <div
  1000. className={styles["chat-body"]}
  1001. ref={scrollRef}
  1002. onScroll={(e) => onChatBodyScroll(e.currentTarget)}
  1003. onMouseDown={() => inputRef.current?.blur()}
  1004. onTouchStart={() => {
  1005. inputRef.current?.blur();
  1006. setAutoScroll(false);
  1007. }}
  1008. >
  1009. {messages.map((message, i) => {
  1010. const isUser = message.role === "user";
  1011. const isContext = i < context.length;
  1012. const showActions =
  1013. i > 0 &&
  1014. !(message.preview || message.content.length === 0) &&
  1015. !isContext;
  1016. const showTyping = message.preview || message.streaming;
  1017. const shouldShowClearContextDivider = i === clearContextIndex - 1;
  1018. return (
  1019. <Fragment key={message.id}>
  1020. <div
  1021. className={
  1022. isUser ? styles["chat-message-user"] : styles["chat-message"]
  1023. }
  1024. >
  1025. <div className={styles["chat-message-container"]}>
  1026. <div className={styles["chat-message-header"]}>
  1027. <div className={styles["chat-message-avatar"]}>
  1028. <div className={styles["chat-message-edit"]}>
  1029. <IconButton
  1030. icon={<EditIcon />}
  1031. onClick={async () => {
  1032. const newMessage = await showPrompt(
  1033. Locale.Chat.Actions.Edit,
  1034. message.content,
  1035. 10,
  1036. );
  1037. chatStore.updateCurrentSession((session) => {
  1038. const m = session.mask.context
  1039. .concat(session.messages)
  1040. .find((m) => m.id === message.id);
  1041. if (m) {
  1042. m.content = newMessage;
  1043. }
  1044. });
  1045. }}
  1046. ></IconButton>
  1047. </div>
  1048. {isUser ? (
  1049. <Avatar avatar={config.avatar} />
  1050. ) : (
  1051. <>
  1052. {["system"].includes(message.role) ? (
  1053. <Avatar avatar="2699-fe0f" />
  1054. ) : (
  1055. <MaskAvatar mask={session.mask} />
  1056. )}
  1057. </>
  1058. )}
  1059. </div>
  1060. {showActions && (
  1061. <div className={styles["chat-message-actions"]}>
  1062. <div className={styles["chat-input-actions"]}>
  1063. {message.streaming ? (
  1064. <ChatAction
  1065. text={Locale.Chat.Actions.Stop}
  1066. icon={<StopIcon />}
  1067. onClick={() => onUserStop(message.id ?? i)}
  1068. />
  1069. ) : (
  1070. <>
  1071. <ChatAction
  1072. text={Locale.Chat.Actions.Retry}
  1073. icon={<ResetIcon />}
  1074. onClick={() => onResend(message)}
  1075. />
  1076. <ChatAction
  1077. text={Locale.Chat.Actions.Delete}
  1078. icon={<DeleteIcon />}
  1079. onClick={() => onDelete(message.id ?? i)}
  1080. />
  1081. <ChatAction
  1082. text={Locale.Chat.Actions.Pin}
  1083. icon={<PinIcon />}
  1084. onClick={() => onPinMessage(message)}
  1085. />
  1086. <ChatAction
  1087. text={Locale.Chat.Actions.Copy}
  1088. icon={<CopyIcon />}
  1089. onClick={() => copyToClipboard(message.content)}
  1090. />
  1091. </>
  1092. )}
  1093. </div>
  1094. </div>
  1095. )}
  1096. </div>
  1097. {showTyping && (
  1098. <div className={styles["chat-message-status"]}>
  1099. {Locale.Chat.Typing}
  1100. </div>
  1101. )}
  1102. <div className={styles["chat-message-item"]}>
  1103. <Markdown
  1104. content={message.content}
  1105. loading={
  1106. (message.preview || message.streaming) &&
  1107. message.content.length === 0 &&
  1108. !isUser
  1109. }
  1110. onContextMenu={(e) => onRightClick(e, message)}
  1111. onDoubleClickCapture={() => {
  1112. if (!isMobileScreen) return;
  1113. setUserInput(message.content);
  1114. }}
  1115. fontSize={fontSize}
  1116. parentRef={scrollRef}
  1117. defaultShow={i >= messages.length - 6}
  1118. />
  1119. </div>
  1120. <div className={styles["chat-message-action-date"]}>
  1121. {isContext
  1122. ? Locale.Chat.IsContext
  1123. : message.date.toLocaleString()}
  1124. </div>
  1125. </div>
  1126. </div>
  1127. {shouldShowClearContextDivider && <ClearContextDivider />}
  1128. </Fragment>
  1129. );
  1130. })}
  1131. </div>
  1132. <div className={styles["chat-input-panel"]}>
  1133. <PromptHints prompts={promptHints} onPromptSelect={onPromptSelect} />
  1134. <ChatActions
  1135. showPromptModal={() => setShowPromptModal(true)}
  1136. scrollToBottom={scrollToBottom}
  1137. hitBottom={hitBottom}
  1138. showPromptHints={() => {
  1139. // Click again to close
  1140. if (promptHints.length > 0) {
  1141. setPromptHints([]);
  1142. return;
  1143. }
  1144. inputRef.current?.focus();
  1145. setUserInput("/");
  1146. onSearch("");
  1147. }}
  1148. />
  1149. <div className={styles["chat-input-panel-inner"]}>
  1150. <textarea
  1151. ref={inputRef}
  1152. className={styles["chat-input"]}
  1153. placeholder={Locale.Chat.Input(submitKey)}
  1154. onInput={(e) => onInput(e.currentTarget.value)}
  1155. value={userInput}
  1156. onKeyDown={onInputKeyDown}
  1157. onFocus={scrollToBottom}
  1158. onClick={scrollToBottom}
  1159. rows={inputRows}
  1160. autoFocus={autoFocus}
  1161. style={{
  1162. fontSize: config.fontSize,
  1163. }}
  1164. />
  1165. <IconButton
  1166. icon={<SendWhiteIcon />}
  1167. text={Locale.Chat.Send}
  1168. className={styles["chat-input-send"]}
  1169. type="primary"
  1170. onClick={() => doSubmit(userInput)}
  1171. />
  1172. </div>
  1173. </div>
  1174. {showExport && (
  1175. <ExportMessageModal onClose={() => setShowExport(false)} />
  1176. )}
  1177. {isEditingMessage && (
  1178. <EditMessageModal
  1179. onClose={() => {
  1180. setIsEditingMessage(false);
  1181. }}
  1182. />
  1183. )}
  1184. </div>
  1185. );
  1186. }
  1187. export function Chat() {
  1188. const chatStore = useChatStore();
  1189. const sessionIndex = chatStore.currentSessionIndex;
  1190. return <_Chat key={sessionIndex}></_Chat>;
  1191. }