Files
Atomizer/atomizer-dashboard/frontend/src/pages/CanvasView.tsx
Anto01 b6202c3f82 feat(canvas): Responsive full-screen layout and dark theme
Phase 2 of Canvas Professional Upgrade:
- Update AtomizerCanvas with Lucide icons (MessageCircle, Plug, X)
- Update CanvasView page with dark theme styling
- Replace emoji buttons with Lucide icons (ClipboardList, Download, Trash2)
- Update Setup canvas tab for full-width responsive layout
- Use calc(100vh-6rem) for proper canvas height

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-15 22:33:08 -05:00

115 lines
3.9 KiB
TypeScript

import { useState } from 'react';
import { ClipboardList, Download, Trash2 } from 'lucide-react';
import { AtomizerCanvas } from '../components/canvas/AtomizerCanvas';
import { TemplateSelector } from '../components/canvas/panels/TemplateSelector';
import { ConfigImporter } from '../components/canvas/panels/ConfigImporter';
import { useCanvasStore } from '../hooks/useCanvasStore';
import { CanvasTemplate } from '../lib/canvas/templates';
export function CanvasView() {
const [showTemplates, setShowTemplates] = useState(false);
const [showImporter, setShowImporter] = useState(false);
const [notification, setNotification] = useState<string | null>(null);
const { nodes, clear } = useCanvasStore();
const handleTemplateSelect = (template: CanvasTemplate) => {
showNotification(`Loaded template: ${template.name}`);
};
const handleImport = (source: string) => {
showNotification(`Imported from ${source}`);
};
const handleClear = () => {
if (nodes.length === 0 || window.confirm('Clear all nodes from the canvas?')) {
clear();
showNotification('Canvas cleared');
}
};
const showNotification = (message: string) => {
setNotification(message);
setTimeout(() => setNotification(null), 3000);
};
return (
<div className="h-screen flex flex-col bg-dark-900">
{/* Header with actions */}
<header className="bg-dark-850 border-b border-dark-700 px-6 py-3 flex items-center justify-between">
<div>
<h1 className="text-xl font-bold text-white">
Optimization Canvas
</h1>
<p className="text-sm text-dark-400">
Drag components from the palette to build your optimization workflow
</p>
</div>
{/* Action Buttons */}
<div className="flex items-center gap-2">
<button
onClick={() => setShowTemplates(true)}
className="px-4 py-2 bg-gradient-to-r from-primary-600 to-purple-600 text-white rounded-lg hover:from-primary-500 hover:to-purple-500 transition-all shadow-sm flex items-center gap-2"
>
<ClipboardList size={18} />
Templates
</button>
<button
onClick={() => setShowImporter(true)}
className="px-4 py-2 bg-dark-700 text-dark-200 rounded-lg hover:bg-dark-600 hover:text-white transition-colors flex items-center gap-2 border border-dark-600"
>
<Download size={18} />
Import
</button>
<button
onClick={handleClear}
className="px-4 py-2 bg-dark-700 text-dark-200 rounded-lg hover:bg-red-900/50 hover:text-red-400 hover:border-red-500/50 transition-colors flex items-center gap-2 border border-dark-600"
>
<Trash2 size={18} />
Clear
</button>
</div>
</header>
{/* Main Canvas */}
<main className="flex-1 overflow-hidden">
<AtomizerCanvas />
</main>
{/* Template Selector Modal */}
<TemplateSelector
isOpen={showTemplates}
onClose={() => setShowTemplates(false)}
onSelect={handleTemplateSelect}
/>
{/* Config Importer Modal */}
<ConfigImporter
isOpen={showImporter}
onClose={() => setShowImporter(false)}
onImport={handleImport}
/>
{/* Notification Toast */}
{notification && (
<div
className="fixed bottom-4 left-1/2 transform -translate-x-1/2 px-4 py-2 bg-dark-800 text-white rounded-lg shadow-lg z-50 border border-dark-600"
style={{ animation: 'slideUp 0.3s ease-out' }}
>
{notification}
</div>
)}
<style>{`
@keyframes slideUp {
from { opacity: 0; transform: translate(-50%, 20px); }
to { opacity: 1; transform: translate(-50%, 0); }
}
`}</style>
</div>
);
}
export default CanvasView;