| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- import { Check, ChevronDown, Edit, Plus, Trash, X } from 'lucide-react'
- import { useState } from 'react'
- import {
- Button,
- cn,
- Command,
- CommandEmpty,
- CommandGroup,
- CommandInput,
- CommandItem,
- CommandList,
- CommandSeparator,
- Input,
- Popover,
- PopoverContent,
- PopoverTrigger,
- ScrollArea,
- } from 'ui'
- import { useAiAssistantStateSnapshot } from '@/state/ai-assistant-state'
- interface AIAssistantChatSelectorProps {
- disabled?: boolean
- }
- export const AIAssistantChatSelector = ({ disabled = false }: AIAssistantChatSelectorProps) => {
- const snap = useAiAssistantStateSnapshot()
- const currentChat = snap.activeChat?.name
- const [chatSelectorOpen, setChatSelectorOpen] = useState(false)
- const [editingChatId, setEditingChatId] = useState<string | null>(null)
- const [editingChatName, setEditingChatName] = useState('')
- const chats = Object.entries(snap.chats)
- const handleSelectChat = (id: string) => {
- snap.selectChat(id)
- setChatSelectorOpen(false)
- }
- const handleDeleteChat = (id: string, e?: React.MouseEvent) => {
- if (e) {
- e.stopPropagation()
- }
- snap.deleteChat(id)
- }
- const handleStartEditChat = (id: string, name: string, e?: React.MouseEvent) => {
- if (e) {
- e.stopPropagation()
- }
- setEditingChatId(id)
- setEditingChatName(name)
- }
- const handleSaveEditChat = (e?: React.MouseEvent) => {
- if (e) {
- e.stopPropagation()
- }
- if (editingChatId && editingChatName.trim()) {
- snap.renameChat(editingChatId, editingChatName.trim())
- setEditingChatId(null)
- setEditingChatName('')
- }
- }
- const handleCancelEditChat = (e?: React.MouseEvent | React.FocusEvent) => {
- if (e) {
- e.stopPropagation()
- }
- setEditingChatId(null)
- setEditingChatName('')
- }
- const handleInputBlur = (e: React.FocusEvent) => {
- e.stopPropagation()
- const relatedTarget = e.relatedTarget as HTMLElement | null
- const isSaveOrCancelButton = relatedTarget?.closest('button')
- if (!isSaveOrCancelButton && editingChatId && editingChatName.trim()) {
- handleSaveEditChat()
- } else if (!isSaveOrCancelButton) {
- handleCancelEditChat(e)
- }
- }
- return (
- <Popover open={chatSelectorOpen} onOpenChange={setChatSelectorOpen}>
- <PopoverTrigger asChild>
- <Button
- type="text"
- size="tiny"
- iconRight={<ChevronDown size={14} />}
- className="max-w-64 truncate"
- >
- {currentChat}
- </Button>
- </PopoverTrigger>
- <PopoverContent className="w-[250px] p-0" align="start">
- <Command>
- <CommandInput className="text-xs" placeholder="Search chats..." />
- <CommandList>
- <CommandEmpty>No chats found.</CommandEmpty>
- <CommandGroup>
- <ScrollArea className={chats.length > 4 ? 'h-40' : ''}>
- {/* @ts-ignore */}
- {chats.map(([id, chat]) => (
- <CommandItem
- key={id}
- value={id}
- onSelect={() => handleSelectChat(id)}
- className="flex items-center justify-between gap-2 py-1 w-full overflow-hidden group"
- keywords={!!chat.name ? [chat.name] : undefined}
- disabled={disabled}
- >
- <div className="flex items-center w-full flex-1 min-w-0">
- {editingChatId === id ? (
- <div className="flex items-center gap-2 w-full">
- <Input
- value={editingChatName}
- onChange={(e) => setEditingChatName(e.target.value)}
- autoFocus
- size="tiny"
- className="flex-1 w-full"
- onClick={(e) => e.stopPropagation()}
- onBlur={handleInputBlur}
- onKeyDown={(e) => {
- if (e.key === 'Enter') {
- e.preventDefault()
- e.stopPropagation()
- handleSaveEditChat()
- } else if (e.key === 'Escape') {
- e.preventDefault()
- e.stopPropagation()
- handleCancelEditChat()
- }
- }}
- />
- <div className="flex items-center gap-0">
- <Button
- type="text"
- size="tiny"
- icon={<Check size={14} />}
- onClick={(e) => handleSaveEditChat(e)}
- className="h-7 w-7"
- />
- <Button
- type="text"
- size="tiny"
- icon={<X size={14} />}
- onClick={(e) => handleCancelEditChat(e)}
- className="h-7 w-7"
- />
- </div>
- </div>
- ) : (
- <>
- <Check
- className={cn(
- 'mr-2 h-4 w-4 shrink-0',
- snap.activeChatId === id ? 'opacity-100' : 'opacity-0'
- )}
- />
- <span className="truncate flex-1 w-0">{chat.name}</span>
- </>
- )}
- </div>
- {editingChatId !== id && (
- <div className="flex items-center gap-x-0 shrink-0 opacity-0 group-hover:opacity-100 transition-opacity">
- <Button
- type="text"
- size="tiny"
- icon={<Edit size={14} />}
- onClick={(e) => handleStartEditChat(id, chat.name, e)}
- className="h-6 w-6"
- />
- {chats.length > 1 && (
- <Button
- type="text"
- size="tiny"
- icon={<Trash size={14} />}
- onClick={(e) => handleDeleteChat(id, e)}
- className="h-6 w-6"
- />
- )}
- </div>
- )}
- </CommandItem>
- ))}
- </ScrollArea>
- </CommandGroup>
- <CommandSeparator />
- <CommandGroup>
- <CommandItem
- className="cursor-pointer w-full gap-x-2"
- onSelect={() => {
- snap.newChat()
- setChatSelectorOpen(false)
- }}
- onClick={() => {
- snap.newChat()
- setChatSelectorOpen(false)
- }}
- disabled={disabled}
- >
- <Plus size={14} strokeWidth={1.5} />
- <span>Start a new chat</span>
- </CommandItem>
- </CommandGroup>
- </CommandList>
- </Command>
- </PopoverContent>
- </Popover>
- )
- }
|