2025-04-20 08:27:32 +08:00
|
|
|
'use client';
|
|
|
|
|
2025-05-05 17:27:36 +08:00
|
|
|
import { Project } from '@/lib/api';
|
|
|
|
import { getToolIcon } from '@/components/thread/utils';
|
|
|
|
import React from 'react';
|
|
|
|
import { Slider } from '@/components/ui/slider';
|
2025-05-07 09:23:23 +08:00
|
|
|
import { Skeleton } from '@/components/ui/skeleton';
|
2025-04-20 08:27:32 +08:00
|
|
|
import { ApiMessageType } from '@/components/thread/types';
|
2025-05-20 14:58:14 +08:00
|
|
|
import { CircleDashed, X, ChevronLeft, ChevronRight, Computer } from 'lucide-react';
|
2025-05-05 17:27:36 +08:00
|
|
|
import { cn } from '@/lib/utils';
|
|
|
|
import { useIsMobile } from '@/hooks/use-mobile';
|
|
|
|
import { Button } from '@/components/ui/button';
|
2025-05-19 01:37:00 +08:00
|
|
|
import { ToolView } from './tool-views/wrapper';
|
2025-04-16 15:16:38 +08:00
|
|
|
|
2025-04-18 20:28:11 +08:00
|
|
|
export interface ToolCallInput {
|
|
|
|
assistantCall: {
|
|
|
|
content?: string;
|
|
|
|
name?: string;
|
2025-04-18 21:42:23 +08:00
|
|
|
timestamp?: string;
|
2025-04-18 20:28:11 +08:00
|
|
|
};
|
|
|
|
toolResult?: {
|
|
|
|
content?: string;
|
|
|
|
isSuccess?: boolean;
|
2025-04-18 21:42:23 +08:00
|
|
|
timestamp?: string;
|
2025-04-18 20:28:11 +08:00
|
|
|
};
|
2025-04-20 08:27:32 +08:00
|
|
|
messages?: ApiMessageType[];
|
2025-04-17 08:43:33 +08:00
|
|
|
}
|
|
|
|
|
2025-04-18 20:28:11 +08:00
|
|
|
interface ToolCallSidePanelProps {
|
|
|
|
isOpen: boolean;
|
|
|
|
onClose: () => void;
|
|
|
|
toolCalls: ToolCallInput[];
|
|
|
|
currentIndex: number;
|
|
|
|
onNavigate: (newIndex: number) => void;
|
2025-04-20 08:27:32 +08:00
|
|
|
messages?: ApiMessageType[];
|
|
|
|
agentStatus: string;
|
2025-04-18 20:28:11 +08:00
|
|
|
project?: Project;
|
2025-05-05 17:27:36 +08:00
|
|
|
renderAssistantMessage?: (
|
|
|
|
assistantContent?: string,
|
|
|
|
toolContent?: string,
|
|
|
|
) => React.ReactNode;
|
|
|
|
renderToolResult?: (
|
|
|
|
toolContent?: string,
|
|
|
|
isSuccess?: boolean,
|
|
|
|
) => React.ReactNode;
|
2025-05-07 09:23:23 +08:00
|
|
|
isLoading?: boolean;
|
2025-04-18 20:28:11 +08:00
|
|
|
}
|
|
|
|
|
2025-04-17 01:04:54 +08:00
|
|
|
export function ToolCallSidePanel({
|
|
|
|
isOpen,
|
|
|
|
onClose,
|
2025-04-18 20:28:11 +08:00
|
|
|
toolCalls,
|
2025-04-17 01:04:54 +08:00
|
|
|
currentIndex,
|
2025-04-17 08:43:33 +08:00
|
|
|
onNavigate,
|
2025-04-20 08:27:32 +08:00
|
|
|
messages,
|
|
|
|
agentStatus,
|
2025-04-20 04:02:44 +08:00
|
|
|
project,
|
2025-05-07 09:23:23 +08:00
|
|
|
isLoading = false,
|
2025-04-17 01:04:54 +08:00
|
|
|
}: ToolCallSidePanelProps) {
|
2025-04-20 12:29:55 +08:00
|
|
|
// Move hooks outside of conditional
|
|
|
|
const [dots, setDots] = React.useState('');
|
2025-04-18 20:28:11 +08:00
|
|
|
const currentToolCall = toolCalls[currentIndex];
|
|
|
|
const totalCalls = toolCalls.length;
|
2025-04-18 22:29:27 +08:00
|
|
|
const currentToolName = currentToolCall?.assistantCall?.name || 'Tool Call';
|
2025-05-05 17:27:36 +08:00
|
|
|
const CurrentToolIcon = getToolIcon(
|
|
|
|
currentToolName === 'Tool Call' ? 'unknown' : currentToolName,
|
|
|
|
);
|
|
|
|
const isStreaming = currentToolCall?.toolResult?.content === 'STREAMING';
|
2025-04-20 12:29:55 +08:00
|
|
|
const isSuccess = currentToolCall?.toolResult?.isSuccess ?? true;
|
2025-04-21 22:38:27 +08:00
|
|
|
const isMobile = useIsMobile();
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-04-20 22:42:47 +08:00
|
|
|
// Add keyboard shortcut for CMD+I to close panel
|
|
|
|
React.useEffect(() => {
|
|
|
|
if (!isOpen) return;
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-04-20 22:42:47 +08:00
|
|
|
const handleKeyDown = (event: KeyboardEvent) => {
|
|
|
|
if ((event.metaKey || event.ctrlKey) && event.key === 'i') {
|
|
|
|
event.preventDefault();
|
|
|
|
onClose();
|
|
|
|
}
|
|
|
|
};
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-04-20 22:42:47 +08:00
|
|
|
window.addEventListener('keydown', handleKeyDown);
|
|
|
|
return () => window.removeEventListener('keydown', handleKeyDown);
|
|
|
|
}, [isOpen, onClose]);
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-04-20 22:42:47 +08:00
|
|
|
// Listen for sidebar toggle events
|
|
|
|
React.useEffect(() => {
|
|
|
|
if (!isOpen) return;
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-04-20 22:42:47 +08:00
|
|
|
const handleSidebarToggle = (event: CustomEvent) => {
|
|
|
|
if (event.detail.expanded) {
|
|
|
|
onClose();
|
|
|
|
}
|
|
|
|
};
|
2025-05-05 17:27:36 +08:00
|
|
|
|
|
|
|
window.addEventListener(
|
|
|
|
'sidebar-left-toggled',
|
|
|
|
handleSidebarToggle as EventListener,
|
|
|
|
);
|
|
|
|
return () =>
|
|
|
|
window.removeEventListener(
|
|
|
|
'sidebar-left-toggled',
|
|
|
|
handleSidebarToggle as EventListener,
|
|
|
|
);
|
2025-04-20 22:42:47 +08:00
|
|
|
}, [isOpen, onClose]);
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-04-20 04:02:44 +08:00
|
|
|
React.useEffect(() => {
|
|
|
|
if (!isStreaming) return;
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-04-20 04:02:44 +08:00
|
|
|
// Create a loading animation with dots
|
|
|
|
const interval = setInterval(() => {
|
2025-05-05 17:27:36 +08:00
|
|
|
setDots((prev) => {
|
2025-04-20 04:02:44 +08:00
|
|
|
if (prev === '...') return '';
|
|
|
|
return prev + '.';
|
|
|
|
});
|
|
|
|
}, 500);
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-04-20 04:02:44 +08:00
|
|
|
return () => clearInterval(interval);
|
|
|
|
}, [isStreaming]);
|
2025-04-20 12:29:55 +08:00
|
|
|
|
2025-04-21 22:59:20 +08:00
|
|
|
// Handle navigation with safety checks
|
|
|
|
const navigateToPrevious = React.useCallback(() => {
|
|
|
|
if (currentIndex > 0) {
|
|
|
|
onNavigate(currentIndex - 1);
|
|
|
|
}
|
|
|
|
}, [currentIndex, onNavigate]);
|
|
|
|
|
|
|
|
const navigateToNext = React.useCallback(() => {
|
|
|
|
if (currentIndex < totalCalls - 1) {
|
|
|
|
onNavigate(currentIndex + 1);
|
|
|
|
}
|
|
|
|
}, [currentIndex, totalCalls, onNavigate]);
|
|
|
|
|
2025-04-20 12:29:55 +08:00
|
|
|
if (!isOpen) return null;
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-05-07 09:23:23 +08:00
|
|
|
if (isLoading) {
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className={cn(
|
|
|
|
'fixed inset-y-0 right-0 border-l flex flex-col z-30 h-screen transition-all duration-200 ease-in-out',
|
|
|
|
isMobile
|
|
|
|
? 'w-full'
|
|
|
|
: 'w-[90%] sm:w-[450px] md:w-[500px] lg:w-[550px] xl:w-[650px]',
|
|
|
|
!isOpen && 'translate-x-full',
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<div className="flex-1 flex flex-col overflow-hidden bg-background">
|
|
|
|
<div className="flex flex-col h-full">
|
|
|
|
<div className="pt-4 pl-4 pr-4">
|
|
|
|
<div className="flex items-center justify-between">
|
|
|
|
<div className="flex items-center gap-2">
|
2025-05-20 14:58:14 +08:00
|
|
|
<Computer className="h-4 w-4" />
|
2025-05-19 01:37:00 +08:00
|
|
|
<h2 className="text-md font-medium text-zinc-900 dark:text-zinc-100">
|
2025-05-07 09:23:23 +08:00
|
|
|
Suna's Computer
|
|
|
|
</h2>
|
|
|
|
</div>
|
|
|
|
<Button
|
|
|
|
variant="ghost"
|
|
|
|
size="icon"
|
|
|
|
onClick={onClose}
|
|
|
|
className="h-8 w-8"
|
|
|
|
>
|
|
|
|
<X className="h-4 w-4" />
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="flex-1 p-4 overflow-auto">
|
|
|
|
<div className="space-y-4">
|
|
|
|
<Skeleton className="h-8 w-32" />
|
|
|
|
<Skeleton className="h-20 w-full rounded-md" />
|
|
|
|
<Skeleton className="h-40 w-full rounded-md" />
|
|
|
|
<Skeleton className="h-20 w-full rounded-md" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2025-04-18 18:50:39 +08:00
|
|
|
const renderContent = () => {
|
2025-04-18 20:28:11 +08:00
|
|
|
if (!currentToolCall) {
|
|
|
|
return (
|
2025-04-21 22:59:20 +08:00
|
|
|
<div className="flex flex-col h-full">
|
|
|
|
<div className="pt-4 pl-4 pr-4">
|
|
|
|
<div className="flex items-center justify-between">
|
|
|
|
<div className="flex items-center gap-2">
|
2025-05-20 14:58:14 +08:00
|
|
|
<Computer className="h-4 w-4" />
|
2025-05-19 01:37:00 +08:00
|
|
|
<h2 className="text-md font-medium text-zinc-900 dark:text-zinc-100">
|
2025-05-05 17:27:36 +08:00
|
|
|
Suna's Computer
|
|
|
|
</h2>
|
2025-04-21 22:59:20 +08:00
|
|
|
</div>
|
2025-05-05 17:27:36 +08:00
|
|
|
<Button
|
|
|
|
variant="ghost"
|
|
|
|
size="icon"
|
2025-04-21 22:59:20 +08:00
|
|
|
onClick={onClose}
|
|
|
|
className="h-8 w-8"
|
|
|
|
>
|
|
|
|
<X className="h-4 w-4" />
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="flex items-center justify-center flex-1 p-4">
|
2025-05-05 17:27:36 +08:00
|
|
|
<p className="text-sm text-zinc-500 dark:text-zinc-400 text-center">
|
|
|
|
No tool call details available.
|
|
|
|
</p>
|
2025-04-21 22:59:20 +08:00
|
|
|
</div>
|
2025-04-18 20:28:11 +08:00
|
|
|
</div>
|
2025-04-18 18:50:39 +08:00
|
|
|
);
|
2025-04-18 06:17:48 +08:00
|
|
|
}
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-05-19 01:37:00 +08:00
|
|
|
const toolView = (
|
|
|
|
<ToolView
|
|
|
|
name={currentToolCall.assistantCall.name}
|
|
|
|
assistantContent={currentToolCall.assistantCall.content}
|
|
|
|
toolContent={currentToolCall.toolResult?.content}
|
|
|
|
assistantTimestamp={currentToolCall.assistantCall.timestamp}
|
|
|
|
toolTimestamp={currentToolCall.toolResult?.timestamp}
|
|
|
|
isSuccess={isStreaming ? true : (currentToolCall.toolResult?.isSuccess ?? true)}
|
|
|
|
isStreaming={isStreaming}
|
|
|
|
project={project}
|
|
|
|
messages={messages}
|
|
|
|
agentStatus={agentStatus}
|
|
|
|
currentIndex={currentIndex}
|
|
|
|
totalCalls={totalCalls}
|
|
|
|
/>
|
2025-04-20 12:29:55 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="flex flex-col h-full">
|
2025-05-19 01:37:00 +08:00
|
|
|
<div className="p-3">
|
2025-04-20 12:29:55 +08:00
|
|
|
<div className="flex items-center justify-between">
|
|
|
|
<div className="flex items-center gap-2">
|
2025-05-20 14:58:14 +08:00
|
|
|
<Computer className="h-4 w-4" />
|
2025-05-19 01:37:00 +08:00
|
|
|
<h2 className="text-md font-medium text-zinc-900 dark:text-zinc-100">
|
2025-05-05 17:27:36 +08:00
|
|
|
Suna's Computer
|
|
|
|
</h2>
|
2025-04-20 12:29:55 +08:00
|
|
|
</div>
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-04-20 12:29:55 +08:00
|
|
|
{currentToolCall.toolResult?.content && !isStreaming && (
|
2025-04-21 22:38:27 +08:00
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<div className="h-6 w-6 rounded-full bg-zinc-100 dark:bg-zinc-800 flex items-center justify-center">
|
|
|
|
<CurrentToolIcon className="h-3.5 w-3.5 text-zinc-800 dark:text-zinc-300" />
|
|
|
|
</div>
|
2025-05-05 17:27:36 +08:00
|
|
|
<span
|
|
|
|
className={cn(
|
|
|
|
'text-sm text-zinc-700 dark:text-zinc-300',
|
2025-05-19 01:37:00 +08:00
|
|
|
isMobile && 'hidden sm:inline',
|
2025-05-05 17:27:36 +08:00
|
|
|
)}
|
|
|
|
>
|
2025-04-21 22:38:27 +08:00
|
|
|
{currentToolName}
|
2025-05-05 17:27:36 +08:00
|
|
|
</span>
|
|
|
|
<div
|
|
|
|
className={cn(
|
|
|
|
'px-2.5 py-0.5 rounded-full text-xs font-medium',
|
|
|
|
isSuccess
|
|
|
|
? 'bg-emerald-50 text-emerald-700 dark:bg-emerald-900/20 dark:text-emerald-400'
|
|
|
|
: 'bg-red-50 text-red-700 dark:bg-red-900/20 dark:text-red-400',
|
|
|
|
)}
|
|
|
|
>
|
2025-04-21 22:38:27 +08:00
|
|
|
{isSuccess ? 'Success' : 'Failed'}
|
2025-04-20 12:29:55 +08:00
|
|
|
</div>
|
2025-05-05 17:27:36 +08:00
|
|
|
<Button
|
|
|
|
variant="ghost"
|
|
|
|
size="icon"
|
2025-04-21 22:59:20 +08:00
|
|
|
onClick={onClose}
|
|
|
|
className="h-8 w-8 ml-1"
|
|
|
|
>
|
|
|
|
<X className="h-4 w-4" />
|
|
|
|
</Button>
|
2025-04-20 12:29:55 +08:00
|
|
|
</div>
|
|
|
|
)}
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-04-20 12:29:55 +08:00
|
|
|
{isStreaming && (
|
2025-04-21 22:59:20 +08:00
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<div className="px-2.5 py-0.5 rounded-full text-xs font-medium bg-blue-50 text-blue-700 dark:bg-blue-900/20 dark:text-blue-400 flex items-center gap-1.5">
|
|
|
|
<CircleDashed className="h-3 w-3 animate-spin" />
|
|
|
|
<span>Running</span>
|
|
|
|
</div>
|
2025-05-05 17:27:36 +08:00
|
|
|
<Button
|
|
|
|
variant="ghost"
|
|
|
|
size="icon"
|
2025-04-21 22:59:20 +08:00
|
|
|
onClick={onClose}
|
|
|
|
className="h-8 w-8 ml-1"
|
|
|
|
>
|
|
|
|
<X className="h-4 w-4" />
|
|
|
|
</Button>
|
2025-04-20 12:29:55 +08:00
|
|
|
</div>
|
|
|
|
)}
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-04-21 22:59:20 +08:00
|
|
|
{!currentToolCall.toolResult?.content && !isStreaming && (
|
2025-05-05 17:27:36 +08:00
|
|
|
<Button
|
|
|
|
variant="ghost"
|
|
|
|
size="icon"
|
2025-04-21 22:59:20 +08:00
|
|
|
onClick={onClose}
|
|
|
|
className="h-8 w-8"
|
|
|
|
>
|
|
|
|
<X className="h-4 w-4" />
|
|
|
|
</Button>
|
|
|
|
)}
|
2025-04-20 12:29:55 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-04-21 22:59:20 +08:00
|
|
|
{/* Content area */}
|
2025-04-20 12:29:55 +08:00
|
|
|
<div className="flex-1 overflow-auto scrollbar-thin scrollbar-thumb-zinc-300 dark:scrollbar-thumb-zinc-700 scrollbar-track-transparent">
|
|
|
|
{toolView}
|
|
|
|
</div>
|
|
|
|
</div>
|
2025-04-18 20:28:11 +08:00
|
|
|
);
|
2025-04-18 18:50:39 +08:00
|
|
|
};
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-04-16 15:16:38 +08:00
|
|
|
return (
|
2025-05-05 17:27:36 +08:00
|
|
|
<div
|
|
|
|
className={cn(
|
|
|
|
'fixed inset-y-0 right-0 border-l flex flex-col z-30 h-screen transition-all duration-200 ease-in-out',
|
|
|
|
isMobile
|
|
|
|
? 'w-full'
|
2025-05-20 14:58:14 +08:00
|
|
|
: 'w-[40vw] sm:w-[450px] md:w-[500px] lg:w-[550px] xl:w-[650px]',
|
2025-05-05 17:27:36 +08:00
|
|
|
!isOpen && 'translate-x-full',
|
|
|
|
)}
|
|
|
|
>
|
2025-04-21 22:59:20 +08:00
|
|
|
<div className="flex-1 flex flex-col overflow-hidden bg-background">
|
2025-04-18 18:50:39 +08:00
|
|
|
{renderContent()}
|
2025-04-18 20:28:11 +08:00
|
|
|
</div>
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-04-21 22:59:20 +08:00
|
|
|
{/* Navigation controls */}
|
2025-04-18 20:28:11 +08:00
|
|
|
{totalCalls > 1 && (
|
2025-05-05 17:27:36 +08:00
|
|
|
<div
|
|
|
|
className={cn(
|
|
|
|
'border-t border-zinc-200 dark:border-zinc-800 bg-zinc-50 dark:bg-zinc-900',
|
|
|
|
isMobile ? 'p-3' : 'p-4 space-y-2',
|
|
|
|
)}
|
|
|
|
>
|
2025-04-21 22:59:20 +08:00
|
|
|
{!isMobile && (
|
|
|
|
<div className="flex justify-between items-center gap-4">
|
|
|
|
<div className="flex items-center gap-2 min-w-0">
|
|
|
|
<div className="h-5 w-5 rounded-full bg-zinc-100 dark:bg-zinc-800 flex items-center justify-center">
|
|
|
|
<CurrentToolIcon className="h-3 w-3 text-zinc-800 dark:text-zinc-300" />
|
|
|
|
</div>
|
2025-05-05 17:27:36 +08:00
|
|
|
<span
|
|
|
|
className="text-xs font-medium text-zinc-700 dark:text-zinc-300 truncate"
|
|
|
|
title={currentToolName}
|
|
|
|
>
|
2025-04-21 22:59:20 +08:00
|
|
|
{currentToolName} {isStreaming && `(Running${dots})`}
|
|
|
|
</span>
|
|
|
|
</div>
|
2025-04-20 12:29:55 +08:00
|
|
|
|
2025-04-21 22:59:20 +08:00
|
|
|
<span className="text-xs text-zinc-500 dark:text-zinc-400 flex-shrink-0">
|
|
|
|
Step {currentIndex + 1} of {totalCalls}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
)}
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-04-21 22:59:20 +08:00
|
|
|
{isMobile ? (
|
|
|
|
<div className="flex items-center justify-between">
|
|
|
|
<Button
|
|
|
|
variant="outline"
|
|
|
|
size="sm"
|
|
|
|
onClick={navigateToPrevious}
|
|
|
|
disabled={currentIndex <= 0}
|
|
|
|
className="h-9 px-3"
|
|
|
|
>
|
|
|
|
<ChevronLeft className="h-4 w-4 mr-1" />
|
|
|
|
<span>Previous</span>
|
|
|
|
</Button>
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-04-21 22:59:20 +08:00
|
|
|
<span className="text-xs text-zinc-500 dark:text-zinc-400">
|
|
|
|
{currentIndex + 1} / {totalCalls}
|
|
|
|
</span>
|
2025-05-05 17:27:36 +08:00
|
|
|
|
2025-04-21 22:59:20 +08:00
|
|
|
<Button
|
|
|
|
variant="outline"
|
|
|
|
size="sm"
|
|
|
|
onClick={navigateToNext}
|
|
|
|
disabled={currentIndex >= totalCalls - 1}
|
|
|
|
className="h-9 px-3"
|
|
|
|
>
|
|
|
|
<span>Next</span>
|
|
|
|
<ChevronRight className="h-4 w-4 ml-1" />
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
) : (
|
2025-04-26 02:18:16 +08:00
|
|
|
<div className="flex items-center gap-1.5">
|
|
|
|
<div className="flex items-center gap-1">
|
|
|
|
<Button
|
|
|
|
variant="ghost"
|
|
|
|
size="icon"
|
|
|
|
onClick={navigateToPrevious}
|
|
|
|
disabled={currentIndex <= 0}
|
|
|
|
className="h-6 w-6 text-zinc-500 hover:text-zinc-700 dark:text-zinc-400 dark:hover:text-zinc-200"
|
|
|
|
>
|
|
|
|
<ChevronLeft className="h-3.5 w-3.5" />
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
variant="ghost"
|
|
|
|
size="icon"
|
|
|
|
onClick={navigateToNext}
|
|
|
|
disabled={currentIndex >= totalCalls - 1}
|
|
|
|
className="h-6 w-6 text-zinc-500 hover:text-zinc-700 dark:text-zinc-400 dark:hover:text-zinc-200"
|
|
|
|
>
|
|
|
|
<ChevronRight className="h-3.5 w-3.5" />
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
<Slider
|
|
|
|
min={0}
|
|
|
|
max={totalCalls - 1}
|
|
|
|
step={1}
|
|
|
|
value={[currentIndex]}
|
|
|
|
onValueChange={([newValue]) => onNavigate(newValue)}
|
|
|
|
className="w-full [&>span:first-child]:h-1 [&>span:first-child]:bg-zinc-200 dark:[&>span:first-child]:bg-zinc-800 [&>span:first-child>span]:bg-zinc-500 dark:[&>span:first-child>span]:bg-zinc-400 [&>span:first-child>span]:h-1"
|
|
|
|
/>
|
|
|
|
</div>
|
2025-04-21 22:59:20 +08:00
|
|
|
)}
|
2025-04-18 20:28:11 +08:00
|
|
|
</div>
|
2025-04-16 15:16:38 +08:00
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
);
|
2025-05-05 17:27:36 +08:00
|
|
|
}
|