mirror of
https://github.com/leonvanzyl/autocoder.git
synced 2026-02-02 23:33:35 +00:00
Migrate UI component library from custom implementations to shadcn/ui: - Add shadcn/ui primitives (Button, Card, Dialog, Input, etc.) - Replace custom styles with Tailwind CSS v4 theme configuration - Remove custom-theme.css in favor of globals.css with @theme directive Fix scroll overflow issues in multiple components: - ProjectSelector: "New Project" button no longer overlays project list - FolderBrowser: folder list now scrolls properly within modal - AgentCard: log modal content stays within bounds - ConversationHistory: conversation list scrolls correctly - KanbanColumn: feature cards scroll within fixed height - ScheduleModal: schedule form content scrolls properly Key technical changes: - Replace ScrollArea component with native overflow-y-auto divs - Add min-h-0 to flex containers to allow proper shrinking - Restructure dropdown layouts with flex-col for fixed footers New files: - ui/components.json (shadcn/ui configuration) - ui/src/components/ui/* (20 UI primitive components) - ui/src/lib/utils.ts (cn utility for class merging) - ui/tsconfig.app.json (app-specific TypeScript config) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
42 lines
893 B
TypeScript
42 lines
893 B
TypeScript
/**
|
|
* Expand Project Modal
|
|
*
|
|
* Full-screen modal wrapper for the ExpandProjectChat component.
|
|
* Allows users to add multiple features to an existing project via AI.
|
|
*/
|
|
|
|
import { ExpandProjectChat } from './ExpandProjectChat'
|
|
|
|
interface ExpandProjectModalProps {
|
|
isOpen: boolean
|
|
projectName: string
|
|
onClose: () => void
|
|
onFeaturesAdded: () => void // Called to refresh feature list
|
|
}
|
|
|
|
export function ExpandProjectModal({
|
|
isOpen,
|
|
projectName,
|
|
onClose,
|
|
onFeaturesAdded,
|
|
}: ExpandProjectModalProps) {
|
|
if (!isOpen) return null
|
|
|
|
const handleComplete = (featuresAdded: number) => {
|
|
if (featuresAdded > 0) {
|
|
onFeaturesAdded()
|
|
}
|
|
onClose()
|
|
}
|
|
|
|
return (
|
|
<div className="fixed inset-0 z-50 bg-background">
|
|
<ExpandProjectChat
|
|
projectName={projectName}
|
|
onComplete={handleComplete}
|
|
onCancel={onClose}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|