Spaces:
Paused
Paused
File size: 4,907 Bytes
0b9dc2e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | import type { ToolCallBlock } from '@agentscope-ai/agentscope/message';
import { ChevronRight } from 'lucide-react';
import { useEffect, useState } from 'react';
import { getDisplayName, renderConfirmBody } from './tool-renderers';
import { Button } from '@/components/ui/button';
import { Kbd } from '@/components/ui/kbd';
import { useTranslation } from '@/i18n/useI18n';
import { cn } from '@/lib/utils';
type SelectOption = 'yes' | 'yes_with_rule' | 'no';
export function ConfirmCard({
toolCall,
onUserConfirm,
}: {
toolCall: ToolCallBlock;
onUserConfirm: (confirm: boolean, rules?: ToolCallBlock['suggested_rules']) => void;
}) {
const { t } = useTranslation();
const hasSuggestedRules = !!toolCall.suggested_rules?.length;
const options: SelectOption[] = hasSuggestedRules
? ['yes', 'yes_with_rule', 'no']
: ['yes', 'no'];
const [selected, setSelected] = useState<SelectOption>('yes');
useEffect(() => {
const handleKeyDown = (e: KeyboardEvent) => {
const currentIndex = options.indexOf(selected);
switch (e.key) {
case 'ArrowUp':
e.preventDefault();
setSelected(options[(currentIndex - 1 + options.length) % options.length]);
break;
case 'ArrowDown':
e.preventDefault();
setSelected(options[(currentIndex + 1) % options.length]);
break;
case 'Enter':
e.preventDefault();
if (selected === 'yes_with_rule') {
onUserConfirm(true, [toolCall.suggested_rules![0]]);
} else {
onUserConfirm(selected === 'yes');
}
break;
}
};
window.addEventListener('keydown', handleKeyDown);
return () => window.removeEventListener('keydown', handleKeyDown);
}, [onUserConfirm, selected, options]);
return (
<div className="ring ring-border rounded-xl w-full p-4 space-y-4 text-sm overflow-hidden">
<div className="flex flex-col gap-y-2">
<strong className="text-secondary-foreground">{getDisplayName(toolCall, t)}</strong>
<div className="px-4 py-2 bg-white rounded-sm">
{renderConfirmBody(toolCall, t)}
</div>
</div>
<div className="flex flex-col">
<strong className="text-secondary-foreground mb-1">
{t('chat.confirmToolCall')}
</strong>
<Button
className={cn(
'flex justify-start cursor-pointer',
selected === 'yes' ? 'text-primary' : 'text-muted-foreground',
)}
size="sm"
variant="ghost"
onMouseEnter={() => setSelected('yes')}
onClick={(e) => {
e.stopPropagation();
e.preventDefault();
onUserConfirm(true);
}}
>
<ChevronRight
className={cn('size-4', selected === 'yes' ? 'visible' : 'invisible')}
/>
1. {t('common.yes')}
<div className={cn(selected === 'yes' ? 'text-muted-foreground' : 'invisible')}>
(<Kbd>Enter</Kbd> {t('confirmCard.toConfirm')})
</div>
</Button>
{hasSuggestedRules && (
<Button
className={cn(
'flex flex-wrap justify-start items-start cursor-pointer h-auto text-left',
selected === 'yes_with_rule' ? 'text-primary' : 'text-muted-foreground',
)}
size="sm"
variant="ghost"
onMouseEnter={() => setSelected('yes_with_rule')}
onClick={(e) => {
e.stopPropagation();
e.preventDefault();
onUserConfirm(true, [toolCall.suggested_rules![0]]);
}}
>
<span className="flex items-start gap-1 w-full break-words whitespace-normal min-w-0">
<ChevronRight
className={cn(
'size-4 shrink-0 mt-0.5',
selected === 'yes_with_rule' ? 'visible' : 'invisible',
)}
/>
<span className="break-words min-w-0">
2.{' '}
{t('confirmCard.yesWithRule', {
toolName: toolCall.suggested_rules![0].tool_name,
ruleContent: toolCall.suggested_rules![0].rule_content,
})}
{selected === 'yes_with_rule' && (
<span className="text-muted-foreground ml-1 whitespace-nowrap">
(<Kbd>Enter</Kbd> {t('confirmCard.toConfirm')})
</span>
)}
</span>
</span>
</Button>
)}
<Button
className={cn(
'flex justify-start cursor-pointer',
selected === 'no' ? 'text-primary' : 'text-muted-foreground',
)}
size="sm"
variant="ghost"
onMouseEnter={() => setSelected('no')}
onClick={(e) => {
e.stopPropagation();
e.preventDefault();
onUserConfirm(false);
}}
>
<ChevronRight
className={cn('size-4', selected === 'no' ? 'visible' : 'invisible')}
/>
{hasSuggestedRules ? '3' : '2'}. {t('common.no')}
<div className={cn(selected === 'no' ? 'text-muted-foreground' : 'invisible')}>
(<Kbd>Enter</Kbd> {t('confirmCard.toConfirm')})
</div>
</Button>
</div>
</div>
);
}
|