123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624 |
- import { IconButton } from "./button";
- import { ErrorBoundary } from "./error";
- import styles from "./mask.module.scss";
- import DownloadIcon from "../icons/download.svg";
- import UploadIcon from "../icons/upload.svg";
- import EditIcon from "../icons/edit.svg";
- import AddIcon from "../icons/add.svg";
- import CloseIcon from "../icons/close.svg";
- import DeleteIcon from "../icons/delete.svg";
- import EyeIcon from "../icons/eye.svg";
- import CopyIcon from "../icons/copy.svg";
- import DragIcon from "../icons/drag.svg";
- import { DEFAULT_MASK_AVATAR, Mask, useMaskStore } from "../store/mask";
- import {
- ChatMessage,
- createMessage,
- ModelConfig,
- ModelType,
- useAppConfig,
- useChatStore,
- } from "../store";
- import { ROLES } from "../client/api";
- import {
- Input,
- List,
- ListItem,
- Modal,
- Popover,
- Select,
- showConfirm,
- } from "./ui-lib";
- import { Avatar, AvatarPicker } from "./emoji";
- import Locale, { AllLangs, ALL_LANG_OPTIONS, Lang } from "../locales";
- import { useNavigate } from "react-router-dom";
- import chatStyle from "./chat.module.scss";
- import { useEffect, useState } from "react";
- import { copyToClipboard, downloadAs, readFromFile } from "../utils";
- import { Updater } from "../typing";
- import { ModelConfigList } from "./model-config";
- import { FileName, Path } from "../constant";
- import { BUILTIN_MASK_STORE } from "../masks";
- import { nanoid } from "nanoid";
- import {
- DragDropContext,
- Droppable,
- Draggable,
- OnDragEndResponder,
- } from "@hello-pangea/dnd";
- // drag and drop helper function
- function reorder<T>(list: T[], startIndex: number, endIndex: number): T[] {
- const result = [...list];
- const [removed] = result.splice(startIndex, 1);
- result.splice(endIndex, 0, removed);
- return result;
- }
- export function MaskAvatar(props: { avatar: string; model?: ModelType }) {
- return props.avatar !== DEFAULT_MASK_AVATAR ? (
- <Avatar avatar={props.avatar} />
- ) : (
- <Avatar model={props.model} />
- );
- }
- export function MaskConfig(props: {
- mask: Mask;
- updateMask: Updater<Mask>;
- extraListItems?: JSX.Element;
- readonly?: boolean;
- shouldSyncFromGlobal?: boolean;
- }) {
- const [showPicker, setShowPicker] = useState(false);
- const updateConfig = (updater: (config: ModelConfig) => void) => {
- if (props.readonly) return;
- const config = { ...props.mask.modelConfig };
- updater(config);
- props.updateMask((mask) => {
- mask.modelConfig = config;
- // if user changed current session mask, it will disable auto sync
- mask.syncGlobalConfig = false;
- });
- };
- const copyMaskLink = () => {
- const maskLink = `${location.protocol}//${location.host}/#${Path.NewChat}?mask=${props.mask.id}`;
- copyToClipboard(maskLink);
- };
- const globalConfig = useAppConfig();
- return (
- <>
- <ContextPrompts
- context={props.mask.context}
- updateContext={(updater) => {
- const context = props.mask.context.slice();
- updater(context);
- props.updateMask((mask) => (mask.context = context));
- }}
- />
- <List>
- <ListItem title={Locale.Mask.Config.Avatar}>
- <Popover
- content={
- <AvatarPicker
- onEmojiClick={(emoji) => {
- props.updateMask((mask) => (mask.avatar = emoji));
- setShowPicker(false);
- }}
- ></AvatarPicker>
- }
- open={showPicker}
- onClose={() => setShowPicker(false)}
- >
- <div
- onClick={() => setShowPicker(true)}
- style={{ cursor: "pointer" }}
- >
- <MaskAvatar
- avatar={props.mask.avatar}
- model={props.mask.modelConfig.model}
- />
- </div>
- </Popover>
- </ListItem>
- <ListItem title={Locale.Mask.Config.Name}>
- <input
- type="text"
- value={props.mask.name}
- onInput={(e) =>
- props.updateMask((mask) => {
- mask.name = e.currentTarget.value;
- })
- }
- ></input>
- </ListItem>
- <ListItem
- title={Locale.Mask.Config.HideContext.Title}
- subTitle={Locale.Mask.Config.HideContext.SubTitle}
- >
- <input
- type="checkbox"
- checked={props.mask.hideContext}
- onChange={(e) => {
- props.updateMask((mask) => {
- mask.hideContext = e.currentTarget.checked;
- });
- }}
- ></input>
- </ListItem>
- {!props.shouldSyncFromGlobal ? (
- <ListItem
- title={Locale.Mask.Config.Share.Title}
- subTitle={Locale.Mask.Config.Share.SubTitle}
- >
- <IconButton
- icon={<CopyIcon />}
- text={Locale.Mask.Config.Share.Action}
- onClick={copyMaskLink}
- />
- </ListItem>
- ) : null}
- {props.shouldSyncFromGlobal ? (
- <ListItem
- title={Locale.Mask.Config.Sync.Title}
- subTitle={Locale.Mask.Config.Sync.SubTitle}
- >
- <input
- type="checkbox"
- checked={props.mask.syncGlobalConfig}
- onChange={async (e) => {
- const checked = e.currentTarget.checked;
- if (
- checked &&
- (await showConfirm(Locale.Mask.Config.Sync.Confirm))
- ) {
- props.updateMask((mask) => {
- mask.syncGlobalConfig = checked;
- mask.modelConfig = { ...globalConfig.modelConfig };
- });
- } else if (!checked) {
- props.updateMask((mask) => {
- mask.syncGlobalConfig = checked;
- });
- }
- }}
- ></input>
- </ListItem>
- ) : null}
- </List>
- <List>
- <ModelConfigList
- modelConfig={{ ...props.mask.modelConfig }}
- updateConfig={updateConfig}
- />
- {props.extraListItems}
- </List>
- </>
- );
- }
- function ContextPromptItem(props: {
- index: number;
- prompt: ChatMessage;
- update: (prompt: ChatMessage) => void;
- remove: () => void;
- }) {
- const [focusingInput, setFocusingInput] = useState(false);
- return (
- <div className={chatStyle["context-prompt-row"]}>
- {!focusingInput && (
- <>
- <div className={chatStyle["context-drag"]}>
- <DragIcon />
- </div>
- <Select
- value={props.prompt.role}
- className={chatStyle["context-role"]}
- onChange={(e) =>
- props.update({
- ...props.prompt,
- role: e.target.value as any,
- })
- }
- >
- {ROLES.map((r) => (
- <option key={r} value={r}>
- {r}
- </option>
- ))}
- </Select>
- </>
- )}
- <Input
- value={props.prompt.content}
- type="text"
- className={chatStyle["context-content"]}
- rows={focusingInput ? 5 : 1}
- onFocus={() => setFocusingInput(true)}
- onBlur={() => {
- setFocusingInput(false);
- // If the selection is not removed when the user loses focus, some
- // extensions like "Translate" will always display a floating bar
- window?.getSelection()?.removeAllRanges();
- }}
- onInput={(e) =>
- props.update({
- ...props.prompt,
- content: e.currentTarget.value as any,
- })
- }
- />
- {!focusingInput && (
- <IconButton
- icon={<DeleteIcon />}
- className={chatStyle["context-delete-button"]}
- onClick={() => props.remove()}
- bordered
- />
- )}
- </div>
- );
- }
- export function ContextPrompts(props: {
- context: ChatMessage[];
- updateContext: (updater: (context: ChatMessage[]) => void) => void;
- }) {
- const context = props.context;
- const addContextPrompt = (prompt: ChatMessage, i: number) => {
- props.updateContext((context) => context.splice(i, 0, prompt));
- };
- const removeContextPrompt = (i: number) => {
- props.updateContext((context) => context.splice(i, 1));
- };
- const updateContextPrompt = (i: number, prompt: ChatMessage) => {
- props.updateContext((context) => (context[i] = prompt));
- };
- const onDragEnd: OnDragEndResponder = (result) => {
- if (!result.destination) {
- return;
- }
- const newContext = reorder(
- context,
- result.source.index,
- result.destination.index,
- );
- props.updateContext((context) => {
- context.splice(0, context.length, ...newContext);
- });
- };
- return (
- <>
- <div className={chatStyle["context-prompt"]} style={{ marginBottom: 20 }}>
- <DragDropContext onDragEnd={onDragEnd}>
- <Droppable droppableId="context-prompt-list">
- {(provided) => (
- <div ref={provided.innerRef} {...provided.droppableProps}>
- {context.map((c, i) => (
- <Draggable
- draggableId={c.id || i.toString()}
- index={i}
- key={c.id}
- >
- {(provided) => (
- <div
- ref={provided.innerRef}
- {...provided.draggableProps}
- {...provided.dragHandleProps}
- >
- <ContextPromptItem
- index={i}
- prompt={c}
- update={(prompt) => updateContextPrompt(i, prompt)}
- remove={() => removeContextPrompt(i)}
- />
- <div
- className={chatStyle["context-prompt-insert"]}
- onClick={() => {
- addContextPrompt(
- createMessage({
- role: "user",
- content: "",
- date: new Date().toLocaleString(),
- }),
- i + 1,
- );
- }}
- >
- <AddIcon />
- </div>
- </div>
- )}
- </Draggable>
- ))}
- {provided.placeholder}
- </div>
- )}
- </Droppable>
- </DragDropContext>
- {props.context.length === 0 && (
- <div className={chatStyle["context-prompt-row"]}>
- <IconButton
- icon={<AddIcon />}
- text={Locale.Context.Add}
- bordered
- className={chatStyle["context-prompt-button"]}
- onClick={() =>
- addContextPrompt(
- createMessage({
- role: "user",
- content: "",
- date: "",
- }),
- props.context.length,
- )
- }
- />
- </div>
- )}
- </div>
- </>
- );
- }
- export function MaskPage() {
- const navigate = useNavigate();
- const maskStore = useMaskStore();
- const chatStore = useChatStore();
- const [filterLang, setFilterLang] = useState<Lang>();
- const allMasks = maskStore
- .getAll()
- .filter((m) => !filterLang || m.lang === filterLang);
- const [searchMasks, setSearchMasks] = useState<Mask[]>([]);
- const [searchText, setSearchText] = useState("");
- const masks = searchText.length > 0 ? searchMasks : allMasks;
- // refactored already, now it accurate
- const onSearch = (text: string) => {
- setSearchText(text);
- if (text.length > 0) {
- const result = allMasks.filter((m) =>
- m.name.toLowerCase().includes(text.toLowerCase()),
- );
- setSearchMasks(result);
- } else {
- setSearchMasks(allMasks);
- }
- };
- const [editingMaskId, setEditingMaskId] = useState<string | undefined>();
- const editingMask =
- maskStore.get(editingMaskId) ?? BUILTIN_MASK_STORE.get(editingMaskId);
- const closeMaskModal = () => setEditingMaskId(undefined);
- const downloadAll = () => {
- downloadAs(JSON.stringify(masks.filter((v) => !v.builtin)), FileName.Masks);
- };
- const importFromFile = () => {
- readFromFile().then((content) => {
- try {
- const importMasks = JSON.parse(content);
- if (Array.isArray(importMasks)) {
- for (const mask of importMasks) {
- if (mask.name) {
- maskStore.create(mask);
- }
- }
- return;
- }
- //if the content is a single mask.
- if (importMasks.name) {
- maskStore.create(importMasks);
- }
- } catch {}
- });
- };
- return (
- <ErrorBoundary>
- <div className={styles["mask-page"]}>
- <div className="window-header">
- <div className="window-header-title">
- <div className="window-header-main-title">
- {Locale.Mask.Page.Title}
- </div>
- <div className="window-header-submai-title">
- {Locale.Mask.Page.SubTitle(allMasks.length)}
- </div>
- </div>
- <div className="window-actions">
- <div className="window-action-button">
- <IconButton
- icon={<DownloadIcon />}
- bordered
- onClick={downloadAll}
- text={Locale.UI.Export}
- />
- </div>
- <div className="window-action-button">
- <IconButton
- icon={<UploadIcon />}
- text={Locale.UI.Import}
- bordered
- onClick={() => importFromFile()}
- />
- </div>
- <div className="window-action-button">
- <IconButton
- icon={<CloseIcon />}
- bordered
- onClick={() => navigate(-1)}
- />
- </div>
- </div>
- </div>
- <div className={styles["mask-page-body"]}>
- <div className={styles["mask-filter"]}>
- <input
- type="text"
- className={styles["search-bar"]}
- placeholder={Locale.Mask.Page.Search}
- autoFocus
- onInput={(e) => onSearch(e.currentTarget.value)}
- />
- <Select
- className={styles["mask-filter-lang"]}
- value={filterLang ?? Locale.Settings.Lang.All}
- onChange={(e) => {
- const value = e.currentTarget.value;
- if (value === Locale.Settings.Lang.All) {
- setFilterLang(undefined);
- } else {
- setFilterLang(value as Lang);
- }
- }}
- >
- <option key="all" value={Locale.Settings.Lang.All}>
- {Locale.Settings.Lang.All}
- </option>
- {AllLangs.map((lang) => (
- <option value={lang} key={lang}>
- {ALL_LANG_OPTIONS[lang]}
- </option>
- ))}
- </Select>
- <IconButton
- className={styles["mask-create"]}
- icon={<AddIcon />}
- text={Locale.Mask.Page.Create}
- bordered
- onClick={() => {
- const createdMask = maskStore.create();
- setEditingMaskId(createdMask.id);
- }}
- />
- </div>
- <div>
- {masks.map((m) => (
- <div className={styles["mask-item"]} key={m.id}>
- <div className={styles["mask-header"]}>
- <div className={styles["mask-icon"]}>
- <MaskAvatar avatar={m.avatar} model={m.modelConfig.model} />
- </div>
- <div className={styles["mask-title"]}>
- <div className={styles["mask-name"]}>{m.name}</div>
- <div className={styles["mask-info"] + " one-line"}>
- {`${Locale.Mask.Item.Info(m.context.length)} / ${
- ALL_LANG_OPTIONS[m.lang]
- } / ${m.modelConfig.model}`}
- </div>
- </div>
- </div>
- <div className={styles["mask-actions"]}>
- <IconButton
- icon={<AddIcon />}
- text={Locale.Mask.Item.Chat}
- onClick={() => {
- chatStore.newSession(m);
- navigate(Path.Chat);
- }}
- />
- {m.builtin ? (
- <IconButton
- icon={<EyeIcon />}
- text={Locale.Mask.Item.View}
- onClick={() => setEditingMaskId(m.id)}
- />
- ) : (
- <IconButton
- icon={<EditIcon />}
- text={Locale.Mask.Item.Edit}
- onClick={() => setEditingMaskId(m.id)}
- />
- )}
- {!m.builtin && (
- <IconButton
- icon={<DeleteIcon />}
- text={Locale.Mask.Item.Delete}
- onClick={async () => {
- if (await showConfirm(Locale.Mask.Item.DeleteConfirm)) {
- maskStore.delete(m.id);
- }
- }}
- />
- )}
- </div>
- </div>
- ))}
- </div>
- </div>
- </div>
- {editingMask && (
- <div className="modal-mask">
- <Modal
- title={Locale.Mask.EditModal.Title(editingMask?.builtin)}
- onClose={closeMaskModal}
- actions={[
- <IconButton
- icon={<DownloadIcon />}
- text={Locale.Mask.EditModal.Download}
- key="export"
- bordered
- onClick={() =>
- downloadAs(
- JSON.stringify(editingMask),
- `${editingMask.name}.json`,
- )
- }
- />,
- <IconButton
- key="copy"
- icon={<CopyIcon />}
- bordered
- text={Locale.Mask.EditModal.Clone}
- onClick={() => {
- navigate(Path.Masks);
- maskStore.create(editingMask);
- setEditingMaskId(undefined);
- }}
- />,
- ]}
- >
- <MaskConfig
- mask={editingMask}
- updateMask={(updater) =>
- maskStore.updateMask(editingMaskId!, updater)
- }
- readonly={editingMask.builtin}
- />
- </Modal>
- </div>
- )}
- </ErrorBoundary>
- );
- }
|