Files
lcbp3/frontend/components/ai/ai-suggestion-field.tsx
T
admin 1a162bf320
CI / CD Pipeline / build (push) Successful in 4m54s
CI / CD Pipeline / deploy (push) Failing after 12m9s
feat(rfa-ai): Complete RFA Approval Refactor and AI Model Revision
2026-05-16 10:59:53 +07:00

223 lines
7.5 KiB
TypeScript

// File: components/ai/ai-suggestion-field.tsx
// Component แสดง AI Suggestion พร้อม Accept / Reject / Edit actions (ADR-018, ADR-020)
'use client';
import { useEffect, useState } from 'react';
import { Check, X, Edit2, Sparkles } from 'lucide-react';
import { Badge } from '@/components/ui/badge';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import apiClient from '@/lib/api/client';
import { cn } from '@/lib/utils';
// สีตาม confidence score ของ ADR-023A
const getConfidenceClass = (confidence: number): string => {
if (confidence >= 0.85) return 'text-green-700 bg-green-50 border-green-400';
if (confidence >= 0.6) return 'text-yellow-700 bg-yellow-50 border-yellow-400';
return 'text-muted-foreground bg-muted border-border';
};
const getConfidenceLabel = (confidence: number): string => {
if (confidence >= 0.85) return 'AI แนะนำ';
if (confidence >= 0.6) return 'ตรวจสอบก่อนยืนยัน';
return '';
};
export interface AiSuggestionFieldProps {
label: string;
value: string;
suggestion?: string;
confidence?: number;
isUnknown?: boolean;
jobId?: string;
onJobCompleted?: (result: unknown) => void;
onJobFailed?: () => void;
onAccept: () => void;
onReject: () => void;
onEdit: (newValue: string) => void;
className?: string;
}
export function AiSuggestionField({
label,
value,
suggestion,
confidence,
isUnknown = false,
jobId,
onJobCompleted,
onJobFailed,
onAccept,
onReject,
onEdit,
className,
}: AiSuggestionFieldProps) {
const [isEditing, setIsEditing] = useState(false);
const [editValue, setEditValue] = useState(value);
// มีค่าจาก AI หรือไม่
const hasSuggestion = suggestion !== undefined && suggestion !== '';
// ค่าปัจจุบันตรงกับที่ AI แนะนำ
const isAiValue = hasSuggestion && value === suggestion;
const handleSave = () => {
onEdit(editValue);
setIsEditing(false);
};
const handleStartEdit = () => {
setEditValue(value);
setIsEditing(true);
};
useEffect(() => {
if (!jobId) return undefined;
const interval = window.setInterval(() => {
void apiClient
.get(`/ai/jobs/${jobId}/status`)
.then((response) => {
const status = response.data?.status as string | undefined;
if (status === 'completed') {
window.clearInterval(interval);
onJobCompleted?.(response.data?.result);
}
if (status === 'failed') {
window.clearInterval(interval);
onJobFailed?.();
}
})
.catch(() => {
window.clearInterval(interval);
onJobFailed?.();
});
}, 3000);
return () => window.clearInterval(interval);
}, [jobId, onJobCompleted, onJobFailed]);
return (
<div className={cn('space-y-1', className)}>
{/* Label พร้อม Confidence Badge */}
<div className="flex items-center gap-2">
<label className="text-sm font-medium">{label}</label>
{hasSuggestion && confidence !== undefined && getConfidenceLabel(confidence) && (
<Badge
variant="outline"
className={cn('text-xs gap-1 px-1.5 py-0', getConfidenceClass(confidence))}
>
<Sparkles className="h-3 w-3" />
{getConfidenceLabel(confidence)} {Math.round(confidence * 100)}%
</Badge>
)}
{hasSuggestion && isUnknown && (
<Badge
variant="outline"
className="text-xs px-1.5 py-0 text-red-700 bg-red-50 border-red-300"
>
</Badge>
)}
</div>
{/* Field Content — highlight สีเหลืองเมื่อใช้ค่าจาก AI */}
<div
className={cn(
'rounded border px-3 py-2 text-sm min-h-[2.25rem]',
isAiValue && 'bg-yellow-50 border-l-4 border-yellow-400'
)}
>
{isEditing ? (
<div className="flex gap-2">
<Input
value={editValue}
onChange={(e) => setEditValue(e.target.value)}
className="h-7 text-sm"
autoFocus
onKeyDown={(e) => {
if (e.key === 'Enter') handleSave();
if (e.key === 'Escape') setIsEditing(false);
}}
/>
<Button type="button" size="sm" variant="outline" onClick={handleSave} className="h-7 px-2">
<Check className="h-3 w-3" />
</Button>
<Button
type="button"
size="sm"
variant="ghost"
onClick={() => setIsEditing(false)}
className="h-7 px-2"
>
<X className="h-3 w-3" />
</Button>
</div>
) : (
<div className="flex items-center justify-between gap-2">
<span>
{value !== '' ? value : <span className="text-muted-foreground italic"></span>}
</span>
{hasSuggestion && (
<div className="flex gap-1 shrink-0">
{/* ปุ่ม "รับ" จะแสดงเมื่อค่าปัจจุบันยังไม่ใช่ค่า AI */}
{!isAiValue && (
<Button
type="button"
size="sm"
variant="outline"
onClick={onAccept}
className="h-6 px-2 text-xs text-green-700 border-green-300 hover:bg-green-50"
title={`รับค่าจาก AI: ${suggestion}`}
>
<Check className="h-3 w-3 mr-1" />
</Button>
)}
{/* ปุ่ม "ปฏิเสธ" จะแสดงเมื่อใช้ค่า AI อยู่ */}
{isAiValue && (
<Button
type="button"
size="sm"
variant="outline"
onClick={onReject}
className="h-6 px-2 text-xs text-red-700 border-red-300 hover:bg-red-50"
title="ปฏิเสธค่า AI"
>
<X className="h-3 w-3 mr-1" />
</Button>
)}
<Button
type="button"
size="sm"
variant="ghost"
onClick={handleStartEdit}
className="h-6 w-6 p-0"
title="แก้ไขค่า"
>
<Edit2 className="h-3 w-3" />
</Button>
</div>
)}
</div>
)}
</div>
{/* แสดง AI Suggestion hint เมื่อค่าปัจจุบันต่างจาก AI */}
{hasSuggestion && !isAiValue && (
<p className="text-xs text-muted-foreground pl-1">
{isUnknown ? 'ไม่รู้จัก — กรุณาเลือกจาก dropdown: ' : 'AI แนะนำ: '}
<button
type="button"
className={cn(
'font-medium hover:underline',
isUnknown ? 'text-red-700' : 'text-yellow-700'
)}
onClick={onAccept}
>
{suggestion}
</button>
</p>
)}
</div>
);
}