214 lines
6.8 KiB
TypeScript
214 lines
6.8 KiB
TypeScript
import { Conversation } from '@/types/chat';
|
|
import { KeyValuePair } from '@/types/data';
|
|
import { SupportedExportFormats } from '@/types/export';
|
|
import { Folder } from '@/types/folder';
|
|
import { PluginKey } from '@/types/plugin';
|
|
import { IconFolderPlus, IconMessagesOff, IconPlus } from '@tabler/icons-react';
|
|
import { useTranslation } from 'next-i18next';
|
|
import { FC, useEffect, useState } from 'react';
|
|
import { ChatFolders } from '../Folders/Chat/ChatFolders';
|
|
import { Search } from '../Sidebar/Search';
|
|
import { ChatbarSettings } from './ChatbarSettings';
|
|
import { Conversations } from './Conversations';
|
|
|
|
interface Props {
|
|
loading: boolean;
|
|
conversations: Conversation[];
|
|
lightMode: 'light' | 'dark';
|
|
selectedConversation: Conversation;
|
|
apiKey: string;
|
|
pluginKeys: PluginKey[];
|
|
folders: Folder[];
|
|
onCreateFolder: (name: string) => void;
|
|
onDeleteFolder: (folderId: string) => void;
|
|
onUpdateFolder: (folderId: string, name: string) => void;
|
|
onNewConversation: () => void;
|
|
onToggleLightMode: (mode: 'light' | 'dark') => void;
|
|
onSelectConversation: (conversation: Conversation) => void;
|
|
onDeleteConversation: (conversation: Conversation) => void;
|
|
onUpdateConversation: (
|
|
conversation: Conversation,
|
|
data: KeyValuePair,
|
|
) => void;
|
|
onApiKeyChange: (apiKey: string) => void;
|
|
onClearConversations: () => void;
|
|
onExportConversations: () => void;
|
|
onImportConversations: (data: SupportedExportFormats) => void;
|
|
onPluginKeyChange: (pluginKey: PluginKey) => void;
|
|
onClearPluginKey: (pluginKey: PluginKey) => void;
|
|
}
|
|
|
|
export const Chatbar: FC<Props> = ({
|
|
loading,
|
|
conversations,
|
|
lightMode,
|
|
selectedConversation,
|
|
apiKey,
|
|
pluginKeys,
|
|
folders,
|
|
onCreateFolder,
|
|
onDeleteFolder,
|
|
onUpdateFolder,
|
|
onNewConversation,
|
|
onToggleLightMode,
|
|
onSelectConversation,
|
|
onDeleteConversation,
|
|
onUpdateConversation,
|
|
onApiKeyChange,
|
|
onClearConversations,
|
|
onExportConversations,
|
|
onImportConversations,
|
|
onPluginKeyChange,
|
|
onClearPluginKey,
|
|
}) => {
|
|
const { t } = useTranslation('sidebar');
|
|
const [searchTerm, setSearchTerm] = useState<string>('');
|
|
const [filteredConversations, setFilteredConversations] =
|
|
useState<Conversation[]>(conversations);
|
|
|
|
const handleUpdateConversation = (
|
|
conversation: Conversation,
|
|
data: KeyValuePair,
|
|
) => {
|
|
onUpdateConversation(conversation, data);
|
|
setSearchTerm('');
|
|
};
|
|
|
|
const handleDeleteConversation = (conversation: Conversation) => {
|
|
onDeleteConversation(conversation);
|
|
setSearchTerm('');
|
|
};
|
|
|
|
const handleDrop = (e: any) => {
|
|
if (e.dataTransfer) {
|
|
const conversation = JSON.parse(e.dataTransfer.getData('conversation'));
|
|
onUpdateConversation(conversation, { key: 'folderId', value: 0 });
|
|
|
|
e.target.style.background = 'none';
|
|
}
|
|
};
|
|
|
|
const allowDrop = (e: any) => {
|
|
e.preventDefault();
|
|
};
|
|
|
|
const highlightDrop = (e: any) => {
|
|
e.target.style.background = '#343541';
|
|
};
|
|
|
|
const removeHighlight = (e: any) => {
|
|
e.target.style.background = 'none';
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (searchTerm) {
|
|
setFilteredConversations(
|
|
conversations.filter((conversation) => {
|
|
const searchable =
|
|
conversation.name.toLocaleLowerCase() +
|
|
' ' +
|
|
conversation.messages.map((message) => message.content).join(' ');
|
|
return searchable.toLowerCase().includes(searchTerm.toLowerCase());
|
|
}),
|
|
);
|
|
} else {
|
|
setFilteredConversations(conversations);
|
|
}
|
|
}, [searchTerm, conversations]);
|
|
|
|
return (
|
|
<div
|
|
className={`fixed top-0 bottom-0 z-50 flex h-full w-[260px] flex-none flex-col space-y-2 bg-[#202123] p-2 transition-all sm:relative sm:top-0`}
|
|
>
|
|
<div className="flex items-center">
|
|
<button
|
|
className="flex w-[190px] flex-shrink-0 cursor-pointer select-none items-center gap-3 rounded-md border border-white/20 p-3 text-[14px] leading-normal text-white transition-colors duration-200 hover:bg-gray-500/10"
|
|
onClick={() => {
|
|
onNewConversation();
|
|
setSearchTerm('');
|
|
}}
|
|
>
|
|
<IconPlus size={18} />
|
|
{t('New chat')}
|
|
</button>
|
|
|
|
<button
|
|
className="ml-2 flex flex-shrink-0 cursor-pointer items-center gap-3 rounded-md border border-white/20 p-3 text-[14px] leading-normal text-white transition-colors duration-200 hover:bg-gray-500/10"
|
|
onClick={() => onCreateFolder(t('New folder'))}
|
|
>
|
|
<IconFolderPlus size={18} />
|
|
</button>
|
|
</div>
|
|
|
|
{conversations.length > 1 && (
|
|
<Search
|
|
placeholder="Search conversations..."
|
|
searchTerm={searchTerm}
|
|
onSearch={setSearchTerm}
|
|
/>
|
|
)}
|
|
|
|
<div className="flex-grow overflow-auto">
|
|
{folders.length > 0 && (
|
|
<div className="flex border-b border-white/20 pb-2">
|
|
<ChatFolders
|
|
searchTerm={searchTerm}
|
|
conversations={filteredConversations.filter(
|
|
(conversation) => conversation.folderId,
|
|
)}
|
|
folders={folders}
|
|
onDeleteFolder={onDeleteFolder}
|
|
onUpdateFolder={onUpdateFolder}
|
|
selectedConversation={selectedConversation}
|
|
loading={loading}
|
|
onSelectConversation={onSelectConversation}
|
|
onDeleteConversation={handleDeleteConversation}
|
|
onUpdateConversation={handleUpdateConversation}
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
{conversations.length > 0 ? (
|
|
<div
|
|
className="pt-2"
|
|
onDrop={(e) => handleDrop(e)}
|
|
onDragOver={allowDrop}
|
|
onDragEnter={highlightDrop}
|
|
onDragLeave={removeHighlight}
|
|
>
|
|
<Conversations
|
|
loading={loading}
|
|
conversations={filteredConversations.filter(
|
|
(conversation) => !conversation.folderId,
|
|
)}
|
|
selectedConversation={selectedConversation}
|
|
onSelectConversation={onSelectConversation}
|
|
onDeleteConversation={handleDeleteConversation}
|
|
onUpdateConversation={handleUpdateConversation}
|
|
/>
|
|
</div>
|
|
) : (
|
|
<div className="mt-8 flex flex-col items-center gap-3 text-sm leading-normal text-white opacity-50">
|
|
<IconMessagesOff />
|
|
{t('No conversations.')}
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
<ChatbarSettings
|
|
lightMode={lightMode}
|
|
apiKey={apiKey}
|
|
pluginKeys={pluginKeys}
|
|
conversationsCount={conversations.length}
|
|
onToggleLightMode={onToggleLightMode}
|
|
onApiKeyChange={onApiKeyChange}
|
|
onClearConversations={onClearConversations}
|
|
onExportConversations={onExportConversations}
|
|
onImportConversations={onImportConversations}
|
|
onPluginKeyChange={onPluginKeyChange}
|
|
onClearPluginKey={onClearPluginKey}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|