add claude spec generation

This commit is contained in:
Auto
2025-12-30 14:35:51 +02:00
parent 38b1c03c23
commit 5ffb6a4c5e
13 changed files with 2051 additions and 68 deletions

View File

@@ -0,0 +1,230 @@
/**
* Question Options Component
*
* Renders structured questions from AskUserQuestion tool.
* Shows clickable option buttons in neobrutalism style.
*/
import { useState } from 'react'
import { Check } from 'lucide-react'
import type { SpecQuestion } from '../lib/types'
interface QuestionOptionsProps {
questions: SpecQuestion[]
onSubmit: (answers: Record<string, string | string[]>) => void
disabled?: boolean
}
export function QuestionOptions({
questions,
onSubmit,
disabled = false,
}: QuestionOptionsProps) {
// Track selected answers for each question
const [answers, setAnswers] = useState<Record<string, string | string[]>>({})
const [customInputs, setCustomInputs] = useState<Record<string, string>>({})
const [showCustomInput, setShowCustomInput] = useState<Record<string, boolean>>({})
const handleOptionClick = (questionIdx: number, optionLabel: string, multiSelect: boolean) => {
const key = String(questionIdx)
if (optionLabel === 'Other') {
setShowCustomInput((prev) => ({ ...prev, [key]: true }))
return
}
setShowCustomInput((prev) => ({ ...prev, [key]: false }))
setAnswers((prev) => {
if (multiSelect) {
const current = (prev[key] as string[]) || []
if (current.includes(optionLabel)) {
return { ...prev, [key]: current.filter((o) => o !== optionLabel) }
} else {
return { ...prev, [key]: [...current, optionLabel] }
}
} else {
return { ...prev, [key]: optionLabel }
}
})
}
const handleCustomInputChange = (questionIdx: number, value: string) => {
const key = String(questionIdx)
setCustomInputs((prev) => ({ ...prev, [key]: value }))
setAnswers((prev) => ({ ...prev, [key]: value }))
}
const handleSubmit = () => {
// Ensure all questions have answers
const finalAnswers: Record<string, string | string[]> = {}
questions.forEach((_, idx) => {
const key = String(idx)
if (showCustomInput[key] && customInputs[key]) {
finalAnswers[key] = customInputs[key]
} else if (answers[key]) {
finalAnswers[key] = answers[key]
}
})
onSubmit(finalAnswers)
}
const isOptionSelected = (questionIdx: number, optionLabel: string, multiSelect: boolean) => {
const key = String(questionIdx)
const answer = answers[key]
if (multiSelect) {
return Array.isArray(answer) && answer.includes(optionLabel)
}
return answer === optionLabel
}
const hasAnswer = (questionIdx: number) => {
const key = String(questionIdx)
return !!(answers[key] || (showCustomInput[key] && customInputs[key]))
}
const allQuestionsAnswered = questions.every((_, idx) => hasAnswer(idx))
return (
<div className="space-y-6 p-4">
{questions.map((q, questionIdx) => (
<div
key={questionIdx}
className="neo-card p-4 bg-white"
>
{/* Question header */}
<div className="flex items-center gap-3 mb-4">
<span className="neo-badge bg-[var(--color-neo-accent)] text-white">
{q.header}
</span>
<span className="font-bold text-[var(--color-neo-text)]">
{q.question}
</span>
{q.multiSelect && (
<span className="text-xs text-[var(--color-neo-text-secondary)] font-mono">
(select multiple)
</span>
)}
</div>
{/* Options grid */}
<div className="grid grid-cols-1 md:grid-cols-2 gap-3">
{q.options.map((opt, optIdx) => {
const isSelected = isOptionSelected(questionIdx, opt.label, q.multiSelect)
return (
<button
key={optIdx}
onClick={() => handleOptionClick(questionIdx, opt.label, q.multiSelect)}
disabled={disabled}
className={`
text-left p-4
border-3 border-[var(--color-neo-border)]
transition-all duration-150
${
isSelected
? 'bg-[var(--color-neo-pending)] shadow-[2px_2px_0px_rgba(0,0,0,1)] translate-x-[1px] translate-y-[1px]'
: 'bg-white shadow-[4px_4px_0px_rgba(0,0,0,1)] hover:translate-x-[-1px] hover:translate-y-[-1px] hover:shadow-[5px_5px_0px_rgba(0,0,0,1)]'
}
disabled:opacity-50 disabled:cursor-not-allowed
`}
>
<div className="flex items-start gap-2">
{/* Checkbox/Radio indicator */}
<div
className={`
w-5 h-5 flex-shrink-0 mt-0.5
border-2 border-[var(--color-neo-border)]
flex items-center justify-center
${q.multiSelect ? '' : 'rounded-full'}
${isSelected ? 'bg-[var(--color-neo-done)]' : 'bg-white'}
`}
>
{isSelected && <Check size={12} strokeWidth={3} />}
</div>
<div className="flex-1">
<div className="font-bold text-[var(--color-neo-text)]">
{opt.label}
</div>
<div className="text-sm text-[var(--color-neo-text-secondary)] mt-1">
{opt.description}
</div>
</div>
</div>
</button>
)
})}
{/* "Other" option */}
<button
onClick={() => handleOptionClick(questionIdx, 'Other', q.multiSelect)}
disabled={disabled}
className={`
text-left p-4
border-3 border-[var(--color-neo-border)]
transition-all duration-150
${
showCustomInput[String(questionIdx)]
? 'bg-[var(--color-neo-pending)] shadow-[2px_2px_0px_rgba(0,0,0,1)] translate-x-[1px] translate-y-[1px]'
: 'bg-white shadow-[4px_4px_0px_rgba(0,0,0,1)] hover:translate-x-[-1px] hover:translate-y-[-1px] hover:shadow-[5px_5px_0px_rgba(0,0,0,1)]'
}
disabled:opacity-50 disabled:cursor-not-allowed
`}
>
<div className="flex items-start gap-2">
<div
className={`
w-5 h-5 flex-shrink-0 mt-0.5
border-2 border-[var(--color-neo-border)]
flex items-center justify-center
${q.multiSelect ? '' : 'rounded-full'}
${showCustomInput[String(questionIdx)] ? 'bg-[var(--color-neo-done)]' : 'bg-white'}
`}
>
{showCustomInput[String(questionIdx)] && <Check size={12} strokeWidth={3} />}
</div>
<div className="flex-1">
<div className="font-bold text-[var(--color-neo-text)]">Other</div>
<div className="text-sm text-[var(--color-neo-text-secondary)] mt-1">
Provide a custom answer
</div>
</div>
</div>
</button>
</div>
{/* Custom input field */}
{showCustomInput[String(questionIdx)] && (
<div className="mt-4">
<input
type="text"
value={customInputs[String(questionIdx)] || ''}
onChange={(e) => handleCustomInputChange(questionIdx, e.target.value)}
placeholder="Type your answer..."
className="neo-input"
autoFocus
disabled={disabled}
/>
</div>
)}
</div>
))}
{/* Submit button */}
<div className="flex justify-end">
<button
onClick={handleSubmit}
disabled={disabled || !allQuestionsAnswered}
className="neo-btn neo-btn-primary"
>
Continue
</button>
</div>
</div>
)
}