53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
|
|
'use client';
|
||
|
|
|
||
|
|
import { useToolStore } from '@/store';
|
||
|
|
import type { ToolType } from '@/types';
|
||
|
|
import {
|
||
|
|
Pencil,
|
||
|
|
Paintbrush,
|
||
|
|
Eraser,
|
||
|
|
PaintBucket,
|
||
|
|
MousePointer,
|
||
|
|
} from 'lucide-react';
|
||
|
|
import { cn } from '@/lib/utils';
|
||
|
|
|
||
|
|
const tools: { type: ToolType; icon: React.ReactNode; label: string }[] = [
|
||
|
|
{ type: 'pencil', icon: <Pencil className="h-5 w-5" />, label: 'Pencil' },
|
||
|
|
{ type: 'brush', icon: <Paintbrush className="h-5 w-5" />, label: 'Brush' },
|
||
|
|
{ type: 'eraser', icon: <Eraser className="h-5 w-5" />, label: 'Eraser' },
|
||
|
|
{ type: 'fill', icon: <PaintBucket className="h-5 w-5" />, label: 'Fill' },
|
||
|
|
{ type: 'select', icon: <MousePointer className="h-5 w-5" />, label: 'Select' },
|
||
|
|
];
|
||
|
|
|
||
|
|
export function ToolPalette() {
|
||
|
|
const { activeTool, setActiveTool } = useToolStore();
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="flex flex-col bg-card border-r border-border w-16">
|
||
|
|
<div className="border-b border-border p-2">
|
||
|
|
<h2 className="text-xs font-semibold text-card-foreground text-center">
|
||
|
|
Tools
|
||
|
|
</h2>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div className="flex-1 overflow-y-auto p-2 space-y-1">
|
||
|
|
{tools.map((tool) => (
|
||
|
|
<button
|
||
|
|
key={tool.type}
|
||
|
|
onClick={() => setActiveTool(tool.type)}
|
||
|
|
className={cn(
|
||
|
|
'w-full aspect-square flex items-center justify-center rounded-md transition-colors',
|
||
|
|
activeTool === tool.type
|
||
|
|
? 'bg-primary text-primary-foreground'
|
||
|
|
: 'hover:bg-accent text-muted-foreground hover:text-foreground'
|
||
|
|
)}
|
||
|
|
title={tool.label}
|
||
|
|
>
|
||
|
|
{tool.icon}
|
||
|
|
</button>
|
||
|
|
))}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|