Files
NetMesh/components/ai/CodexUserInputCard.tsx

110 lines
4.7 KiB
TypeScript
Raw Permalink Normal View History

import React, { useMemo, useState } from 'react';
import { MessageCircleQuestion } from 'lucide-react';
import { useI18n } from '../../application/i18n/I18nProvider';
import { Button } from '../ui/button';
import type { CodexAppServerInteraction } from '../../infrastructure/ai/shared/codexAppServerInteractions';
type UserInputInteraction = Extract<CodexAppServerInteraction, { kind: 'user-input' }>;
export const CodexUserInputCard: React.FC<{
interaction: UserInputInteraction;
onSubmit: (answers: Record<string, { answers: string[] }>) => void;
onSkip: () => void;
}> = ({ interaction, onSubmit, onSkip }) => {
const { t } = useI18n();
const [values, setValues] = useState<Record<string, string>>({});
const questions = useMemo(() => interaction.questions || [], [interaction.questions]);
const complete = useMemo(
() => questions.every((question) => String(values[question.id] || '').trim().length > 0),
[questions, values],
);
const submit = () => {
if (!complete) return;
const answers: Record<string, { answers: string[] }> = {};
for (const question of questions) {
const value = String(values[question.id] || '');
answers[question.id] = { answers: [question.isSecret ? value : value.trim()] };
}
onSubmit(answers);
};
return (
<div className="rounded-lg border border-border/70 bg-card/70 p-3 space-y-3">
<div className="flex items-start gap-2">
<MessageCircleQuestion size={16} className="mt-0.5 shrink-0 text-blue-500" />
<div className="min-w-0">
<div className="text-sm font-medium">{t('ai.codex.appServer.userInput.title')}</div>
<div className="text-xs text-muted-foreground leading-5">
{t('ai.codex.appServer.userInput.description')}
</div>
</div>
</div>
{questions.map((question) => (
<fieldset key={question.id} className="space-y-2">
<legend className="text-xs font-medium">
{question.header ? `${question.header}: ` : ''}{question.question}
</legend>
{question.options?.length ? (
<div className="space-y-1.5">
{question.options.map((option) => (
<label
key={option.label}
className="flex cursor-pointer items-start gap-2 rounded-md border border-border/50 px-2.5 py-2 text-xs hover:bg-muted/40"
>
<input
type="radio"
name={`${interaction.interactionId}:${question.id}`}
value={option.label}
checked={values[question.id] === option.label}
onChange={() => setValues((current) => ({ ...current, [question.id]: option.label }))}
className="mt-0.5"
/>
<span className="min-w-0">
<span className="block font-medium">{option.label}</span>
{option.description ? (
<span className="block text-muted-foreground leading-5">{option.description}</span>
) : null}
</span>
</label>
))}
{question.isOther ? (
<input
type={question.isSecret ? 'password' : 'text'}
value={question.options.some((option) => option.label === values[question.id]) ? '' : (values[question.id] || '')}
onChange={(event) => setValues((current) => ({ ...current, [question.id]: event.target.value }))}
placeholder={t('ai.codex.appServer.userInput.other')}
className="h-8 w-full rounded-md border border-input bg-background px-2.5 text-xs outline-none focus-visible:ring-1 focus-visible:ring-ring"
/>
) : null}
</div>
) : (
<input
type={question.isSecret ? 'password' : 'text'}
value={values[question.id] || ''}
onChange={(event) => setValues((current) => ({ ...current, [question.id]: event.target.value }))}
className="h-8 w-full rounded-md border border-input bg-background px-2.5 text-xs outline-none focus-visible:ring-1 focus-visible:ring-ring"
/>
)}
</fieldset>
))}
{interaction.autoResolutionMs ? (
<p className="text-[11px] text-muted-foreground">
{t('ai.codex.appServer.userInput.autoResolve')}
</p>
) : null}
<div className="flex justify-end gap-2">
<Button variant="ghost" size="sm" onClick={onSkip}>
{t('ai.codex.appServer.userInput.skip')}
</Button>
<Button size="sm" disabled={!complete} onClick={submit}>
{t('ai.codex.appServer.userInput.submit')}
</Button>
</div>
</div>
);
};