mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-20 02:10:15 +01:00
* feat: add timer duration to showToast, show toast for preset selection * refactor: replace old /chat/ route with /c/. e2e tests will fail here * refactor: move typedefs to root of /api/ and add a few to assistant types in TS * refactor: reorganize data-provider imports, fix dependency cycle, strategize new plan to separate react dependent packages * feat: add dataService for uploading images * feat(data-provider): add mutation keys * feat: file resizing and upload * WIP: initial API image handling * fix: catch JSON.parse of localStorage tools * chore: experimental: use module-alias for absolute imports * refactor: change temp_file_id strategy * fix: updating files state by using Map and defining react query callbacks in a way that keeps them during component unmount, initial delete handling * feat: properly handle file deletion * refactor: unexpose complete filepath and resize from server for higher fidelity * fix: make sure resized height, width is saved, catch bad requests * refactor: use absolute imports * fix: prevent setOptions from being called more than once for OpenAIClient, made note to fix for PluginsClient * refactor: import supportsFiles and models vars from schemas * fix: correctly replace temp file id * refactor(BaseClient): use absolute imports, pass message 'opts' to buildMessages method, count tokens for nested objects/arrays * feat: add validateVisionModel to determine if model has vision capabilities * chore(checkBalance): update jsdoc * feat: formatVisionMessage: change message content format dependent on role and image_urls passed * refactor: add usage to File schema, make create and updateFile, correctly set and remove TTL * feat: working vision support TODO: file size, type, amount validations, making sure they are styled right, and making sure you can add images from the clipboard/dragging * feat: clipboard support for uploading images * feat: handle files on drop to screen, refactor top level view code to Presentation component so the useDragHelpers hook has ChatContext * fix(Images): replace uploaded images in place * feat: add filepath validation to protect sensitive files * fix: ensure correct file_ids are push and not the Map key values * fix(ToastContext): type issue * feat: add basic file validation * fix(useDragHelpers): correct context issue with `files` dependency * refactor: consolidate setErrors logic to setError * feat: add dialog Image overlay on image click * fix: close endpoints menu on click * chore: set detail to auto, make note for configuration * fix: react warning (button desc. of button) * refactor: optimize filepath handling, pass file_ids to images for easier re-use * refactor: optimize image file handling, allow re-using files in regen, pass more file metadata in messages * feat: lazy loading images including use of upload preview * fix: SetKeyDialog closing, stopPropagation on Dialog content click * style(EndpointMenuItem): tighten up the style, fix dark theme showing in lightmode, make menu more ux friendly * style: change maxheight of all settings textareas to 138px from 300px * style: better styling for textarea and enclosing buttons * refactor(PresetItems): swap back edit and delete icons * feat: make textarea placeholder dynamic to endpoint * style: show user hover buttons only on hover when message is streaming * fix: ordered list not going past 9, fix css * feat: add User/AI labels; style: hide loading spinner * feat: add back custom footer, change original footer text * feat: dynamic landing icons based on endpoint * chore: comment out assistants route * fix: autoScroll to newest on /c/ view * fix: Export Conversation on new UI * style: match message style of official more closely * ci: fix api jest unit tests, comment out e2e tests for now as they will fail until addressed * feat: more file validation and use blob in preview field, not filepath, to fix temp deletion * feat: filefilter for multer * feat: better AI labels based on custom name, model, and endpoint instead of `ChatGPT`
149 lines
4.7 KiB
TypeScript
149 lines
4.7 KiB
TypeScript
import { useRecoilValue } from 'recoil';
|
|
import { useState, useRef } from 'react';
|
|
import { useParams } from 'react-router-dom';
|
|
import { useUpdateConversationMutation } from 'librechat-data-provider';
|
|
import type { MouseEvent, FocusEvent, KeyboardEvent } from 'react';
|
|
import { useConversations, useNavigateToConvo } from '~/hooks';
|
|
import { MinimalIcon } from '~/components/Endpoints';
|
|
import { NotificationSeverity } from '~/common';
|
|
import { useToastContext } from '~/Providers';
|
|
import DeleteButton from './NewDeleteButton';
|
|
import RenameButton from './RenameButton';
|
|
import store from '~/store';
|
|
|
|
type KeyEvent = KeyboardEvent<HTMLInputElement>;
|
|
|
|
export default function Conversation({ conversation, retainView, toggleNav, i }) {
|
|
const { conversationId: currentConvoId } = useParams();
|
|
const activeConvos = useRecoilValue(store.allConversationsSelector);
|
|
const updateConvoMutation = useUpdateConversationMutation(currentConvoId ?? '');
|
|
const { refreshConversations } = useConversations();
|
|
const { navigateToConvo } = useNavigateToConvo();
|
|
const { showToast } = useToastContext();
|
|
|
|
const { conversationId, title } = conversation;
|
|
const inputRef = useRef<HTMLInputElement | null>(null);
|
|
const [titleInput, setTitleInput] = useState(title);
|
|
const [renaming, setRenaming] = useState(false);
|
|
|
|
const clickHandler = async () => {
|
|
if (currentConvoId === conversationId) {
|
|
return;
|
|
}
|
|
|
|
toggleNav();
|
|
|
|
// set document title
|
|
document.title = title;
|
|
|
|
// set conversation to the new conversation
|
|
if (conversation?.endpoint === 'gptPlugins') {
|
|
let lastSelectedTools = [];
|
|
try {
|
|
lastSelectedTools = JSON.parse(localStorage.getItem('lastSelectedTools') ?? '') ?? [];
|
|
} catch (e) {
|
|
// console.error(e);
|
|
}
|
|
navigateToConvo({ ...conversation, tools: lastSelectedTools });
|
|
} else {
|
|
navigateToConvo(conversation);
|
|
}
|
|
};
|
|
|
|
const renameHandler = (e: MouseEvent<HTMLButtonElement>) => {
|
|
e.preventDefault();
|
|
setTitleInput(title);
|
|
setRenaming(true);
|
|
setTimeout(() => {
|
|
if (!inputRef.current) {
|
|
return;
|
|
}
|
|
inputRef.current.focus();
|
|
}, 25);
|
|
};
|
|
|
|
const onRename = (e: MouseEvent<HTMLButtonElement> | FocusEvent<HTMLInputElement> | KeyEvent) => {
|
|
e.preventDefault();
|
|
setRenaming(false);
|
|
if (titleInput === title) {
|
|
return;
|
|
}
|
|
updateConvoMutation.mutate(
|
|
{ conversationId, title: titleInput },
|
|
{
|
|
onSuccess: () => refreshConversations(),
|
|
onError: () => {
|
|
setTitleInput(title);
|
|
showToast({
|
|
message: 'Failed to rename conversation',
|
|
severity: NotificationSeverity.ERROR,
|
|
showIcon: true,
|
|
});
|
|
},
|
|
},
|
|
);
|
|
};
|
|
|
|
const icon = MinimalIcon({
|
|
size: 20,
|
|
endpoint: conversation.endpoint,
|
|
model: conversation.model,
|
|
error: false,
|
|
className: 'mr-0',
|
|
isCreatedByUser: false,
|
|
});
|
|
|
|
const handleKeyDown = (e: KeyEvent) => {
|
|
if (e.key === 'Enter') {
|
|
onRename(e);
|
|
}
|
|
};
|
|
|
|
const aProps = {
|
|
className:
|
|
'animate-flash group relative flex cursor-pointer items-center gap-3 break-all rounded-md bg-gray-900 py-3 px-3 pr-14 hover:bg-gray-900',
|
|
};
|
|
|
|
const activeConvo =
|
|
currentConvoId === conversationId ||
|
|
(i === 0 && currentConvoId === 'new' && activeConvos[0] && activeConvos[0] !== 'new');
|
|
|
|
if (!activeConvo) {
|
|
aProps.className =
|
|
'group relative flex cursor-pointer items-center gap-3 break-all rounded-md py-3 px-3 hover:bg-gray-900 hover:pr-4';
|
|
}
|
|
|
|
return (
|
|
<a data-testid="convo-item" onClick={() => clickHandler()} {...aProps}>
|
|
{icon}
|
|
<div className="relative max-h-5 flex-1 overflow-hidden text-ellipsis break-all">
|
|
{renaming === true ? (
|
|
<input
|
|
ref={inputRef}
|
|
type="text"
|
|
className="m-0 mr-0 w-full border border-blue-500 bg-transparent p-0 text-sm leading-tight outline-none"
|
|
value={titleInput}
|
|
onChange={(e) => setTitleInput(e.target.value)}
|
|
onBlur={onRename}
|
|
onKeyDown={handleKeyDown}
|
|
/>
|
|
) : (
|
|
title
|
|
)}
|
|
</div>
|
|
{activeConvo ? (
|
|
<div className="visible absolute right-1 z-10 flex text-gray-400">
|
|
<RenameButton renaming={renaming} onRename={onRename} renameHandler={renameHandler} />
|
|
<DeleteButton
|
|
conversationId={conversationId}
|
|
retainView={retainView}
|
|
renaming={renaming}
|
|
title={title}
|
|
/>
|
|
</div>
|
|
) : (
|
|
<div className="absolute inset-y-0 right-0 z-10 w-8 rounded-r-md bg-gradient-to-l from-black group-hover:from-gray-900" />
|
|
)}
|
|
</a>
|
|
);
|
|
}
|