62 lines
1.8 KiB
TypeScript
62 lines
1.8 KiB
TypeScript
/**
|
|
* Chat Toolbar
|
|
* Session selector, new session, refresh, and thinking toggle.
|
|
* Rendered in the Header when on the Chat page.
|
|
*/
|
|
import { RefreshCw, Brain } from 'lucide-react';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Tooltip, TooltipContent, TooltipTrigger } from '@/components/ui/tooltip';
|
|
import { useChatStore } from '@/stores/chat';
|
|
import { cn } from '@/lib/utils';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
export function ChatToolbar() {
|
|
const refresh = useChatStore((s) => s.refresh);
|
|
const loading = useChatStore((s) => s.loading);
|
|
const showThinking = useChatStore((s) => s.showThinking);
|
|
const toggleThinking = useChatStore((s) => s.toggleThinking);
|
|
const { t } = useTranslation('chat');
|
|
|
|
return (
|
|
<div className="flex items-center gap-2">
|
|
{/* Refresh */}
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
className="h-8 w-8"
|
|
onClick={() => refresh()}
|
|
disabled={loading}
|
|
>
|
|
<RefreshCw className={cn('h-4 w-4', loading && 'animate-spin')} />
|
|
</Button>
|
|
</TooltipTrigger>
|
|
<TooltipContent>
|
|
<p>{t('toolbar.refresh')}</p>
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
|
|
{/* Thinking Toggle */}
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
className={cn(
|
|
'h-8 w-8',
|
|
showThinking && 'bg-primary/10 text-primary',
|
|
)}
|
|
onClick={toggleThinking}
|
|
>
|
|
<Brain className="h-4 w-4" />
|
|
</Button>
|
|
</TooltipTrigger>
|
|
<TooltipContent>
|
|
<p>{showThinking ? t('toolbar.hideThinking') : t('toolbar.showThinking')}</p>
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
</div>
|
|
);
|
|
}
|