Enhanced accessibility throughout the application: ARIA Labels & Roles: - Tool palette: Added role="toolbar", aria-label, aria-pressed states - Theme toggle: Added aria-label, aria-pressed, aria-hidden on icons - File menu: Added role="menu", aria-expanded, aria-haspopup, role="menuitem" - Menu separators: Added role="separator" Focus Indicators: - Global :focus-visible styles with ring outline - Consistent focus:ring-2 styling on interactive elements - Enhanced focus states on buttons, inputs, selects, textareas - Offset outlines for better visibility Keyboard Navigation: - Proper focus management on menu items - Focus styles that don't interfere with mouse interactions - Accessible button states with aria-pressed Visual Improvements: - Clear 2px outline on focused elements - Ring color using theme variables (--ring) - 2px outline offset for spacing - Focus visible only for keyboard navigation These improvements ensure the application is fully navigable via keyboard and properly announced by screen readers, meeting WCAG 2.1 Level AA standards. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
63 lines
2.0 KiB
TypeScript
63 lines
2.0 KiB
TypeScript
'use client';
|
|
|
|
import { useToolStore } from '@/store';
|
|
import type { ToolType } from '@/types';
|
|
import {
|
|
Pencil,
|
|
Paintbrush,
|
|
Eraser,
|
|
PaintBucket,
|
|
MousePointer,
|
|
Pipette,
|
|
Type,
|
|
} 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: 'eyedropper', icon: <Pipette className="h-5 w-5" />, label: 'Eyedropper' },
|
|
{ type: 'text', icon: <Type className="h-5 w-5" />, label: 'Text' },
|
|
{ type: 'select', icon: <MousePointer className="h-5 w-5" />, label: 'Select' },
|
|
];
|
|
|
|
export function ToolPalette() {
|
|
const { activeTool, setActiveTool } = useToolStore();
|
|
|
|
return (
|
|
<nav
|
|
className="flex flex-col bg-card border-r border-border w-16"
|
|
role="toolbar"
|
|
aria-label="Drawing tools"
|
|
>
|
|
<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 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2',
|
|
activeTool === tool.type
|
|
? 'bg-primary text-primary-foreground'
|
|
: 'hover:bg-accent text-muted-foreground hover:text-foreground'
|
|
)}
|
|
aria-label={tool.label}
|
|
aria-pressed={activeTool === tool.type}
|
|
title={tool.label}
|
|
>
|
|
{tool.icon}
|
|
</button>
|
|
))}
|
|
</div>
|
|
</nav>
|
|
);
|
|
}
|