3,200+ hardcoded color values replaced with CSS variable-backed Tailwind classes (bg-card, text-foreground, border-border, etc.). Enables light mode via CSS variable swap. Only syntax highlighting colors and intentional one-offs remain hardcoded (~15 values). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
143 lines
4.9 KiB
TypeScript
143 lines
4.9 KiB
TypeScript
import { useState } from 'react'
|
|
import { X } from 'lucide-react'
|
|
import { Button } from '@/components/ui/Button'
|
|
import { Input } from '@/components/ui/Input'
|
|
import { Textarea } from '@/components/ui/Textarea'
|
|
|
|
interface SaveSessionAsTreeModalProps {
|
|
isOpen: boolean
|
|
onClose: () => void
|
|
onSave: (data: { tree_name?: string; description?: string; status: 'draft' | 'published' }) => Promise<void>
|
|
defaultTreeName?: string
|
|
isSaving?: boolean
|
|
}
|
|
|
|
export function SaveSessionAsTreeModal({
|
|
isOpen,
|
|
onClose,
|
|
onSave,
|
|
defaultTreeName,
|
|
isSaving = false
|
|
}: SaveSessionAsTreeModalProps) {
|
|
const [treeName, setTreeName] = useState(defaultTreeName || '')
|
|
const [description, setDescription] = useState('')
|
|
const [status, setStatus] = useState<'draft' | 'published'>('draft')
|
|
|
|
if (!isOpen) return null
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault()
|
|
await onSave({
|
|
tree_name: treeName.trim() || undefined,
|
|
description: description.trim() || undefined,
|
|
status
|
|
})
|
|
}
|
|
|
|
return (
|
|
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black/80 backdrop-blur-xs">
|
|
<div className="bg-card border border-border w-full max-w-lg rounded-lg p-6 shadow-lg">
|
|
{/* Header */}
|
|
<div className="mb-4 flex items-center justify-between">
|
|
<h2 className="text-lg font-semibold text-foreground">Save Session as Tree</h2>
|
|
<button
|
|
onClick={onClose}
|
|
disabled={isSaving}
|
|
className="rounded-full p-1 text-muted-foreground hover:bg-accent hover:text-foreground disabled:opacity-50"
|
|
>
|
|
<X className="h-5 w-5" />
|
|
</button>
|
|
</div>
|
|
|
|
{/* Info */}
|
|
<p className="mb-4 text-sm text-muted-foreground">
|
|
Create a new tree from this session's path. The tree will be linked to the original tree as a fork.
|
|
</p>
|
|
|
|
{/* Form */}
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
{/* Tree Name */}
|
|
<div>
|
|
<label htmlFor="treeName" className="mb-1 block text-sm font-medium text-foreground">
|
|
Tree Name <span className="text-muted-foreground">(optional)</span>
|
|
</label>
|
|
<Input
|
|
id="treeName"
|
|
type="text"
|
|
value={treeName}
|
|
onChange={(e) => setTreeName(e.target.value)}
|
|
placeholder={defaultTreeName || "Auto-generated if left blank"}
|
|
disabled={isSaving}
|
|
maxLength={255}
|
|
/>
|
|
</div>
|
|
|
|
{/* Description */}
|
|
<div>
|
|
<label htmlFor="description" className="mb-1 block text-sm font-medium text-foreground">
|
|
Description <span className="text-muted-foreground">(optional)</span>
|
|
</label>
|
|
<Textarea
|
|
id="description"
|
|
value={description}
|
|
onChange={(e) => setDescription(e.target.value)}
|
|
placeholder="Add a description for this tree"
|
|
disabled={isSaving}
|
|
rows={3}
|
|
/>
|
|
</div>
|
|
|
|
{/* Status */}
|
|
<div>
|
|
<label className="mb-2 block text-sm font-medium text-foreground">Status</label>
|
|
<div className="flex gap-4">
|
|
<label className="flex cursor-pointer items-center gap-2">
|
|
<input
|
|
type="radio"
|
|
name="status"
|
|
value="draft"
|
|
checked={status === 'draft'}
|
|
onChange={() => setStatus('draft')}
|
|
disabled={isSaving}
|
|
className="h-4 w-4 border-border text-foreground focus:ring-2 focus:ring-primary/20 focus:ring-offset-0"
|
|
/>
|
|
<span className="text-sm text-foreground">Draft</span>
|
|
</label>
|
|
<label className="flex cursor-pointer items-center gap-2">
|
|
<input
|
|
type="radio"
|
|
name="status"
|
|
value="published"
|
|
checked={status === 'published'}
|
|
onChange={() => setStatus('published')}
|
|
disabled={isSaving}
|
|
className="h-4 w-4 border-border text-foreground focus:ring-2 focus:ring-primary/20 focus:ring-offset-0"
|
|
/>
|
|
<span className="text-sm text-foreground">Published</span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Actions */}
|
|
<div className="flex justify-end gap-2 pt-2">
|
|
<Button
|
|
type="button"
|
|
variant="secondary"
|
|
onClick={onClose}
|
|
disabled={isSaving}
|
|
>
|
|
Cancel
|
|
</Button>
|
|
<Button
|
|
type="submit"
|
|
loading={isSaving}
|
|
>
|
|
Save as Tree
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|