Complete Phase 1 accessibility implementation with comprehensive WCAG 2.1 Level AA compliance foundation. **Accessibility Tools Setup:** - ESLint jsx-a11y plugin with 18 accessibility rules - Axe-core for runtime accessibility testing in dev mode - jest-axe for automated testing - Accessibility utility functions (9 functions) **Core Features:** - Skip navigation link (WCAG 2.4.1 Bypass Blocks) - 45+ ARIA attributes across 15 components - Keyboard navigation fixes (Quick Actions now keyboard accessible) - Focus management on route changes with screen reader announcements - Color contrast WCAG AA compliance (4.5:1+ ratio, tested with Axe) - Proper heading hierarchy (h1→h2) across all pages - Semantic landmarks (header, nav, main) **Components Enhanced:** - 6 dialogs with proper ARIA labels (Child, InviteMember, DeleteConfirm, RemoveMember, JoinFamily, MFAVerification) - Voice input with aria-live regions - Navigation components with semantic landmarks - Quick Action cards with keyboard support **WCAG Success Criteria Met (8):** - 1.3.1 Info and Relationships (Level A) - 2.1.1 Keyboard (Level A) - 2.4.1 Bypass Blocks (Level A) - 4.1.2 Name, Role, Value (Level A) - 1.4.3 Contrast Minimum (Level AA) - 2.4.3 Focus Order (Level AA) - 2.4.6 Headings and Labels (Level AA) - 2.4.7 Focus Visible (Level AA) **Files Created (7):** - .eslintrc.json - ESLint accessibility config - components/providers/AxeProvider.tsx - Dev-time testing - components/common/SkipNavigation.tsx - Skip link - lib/accessibility.ts - Utility functions - hooks/useFocusManagement.ts - Focus management hooks - components/providers/FocusManagementProvider.tsx - Provider - docs/ACCESSIBILITY_PROGRESS.md - Progress tracking **Files Modified (17):** - Frontend: 20 components/pages with accessibility improvements - Backend: ai-rate-limit.service.ts (del → delete method) - Docs: implementation-gaps.md updated 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
125 lines
3.4 KiB
TypeScript
125 lines
3.4 KiB
TypeScript
'use client';
|
|
|
|
import { useState } from 'react';
|
|
import { useRouter } from 'next/navigation';
|
|
import {
|
|
AppBar,
|
|
Toolbar,
|
|
IconButton,
|
|
Typography,
|
|
Drawer,
|
|
List,
|
|
ListItem,
|
|
ListItemButton,
|
|
ListItemIcon,
|
|
ListItemText,
|
|
Avatar,
|
|
Box,
|
|
Divider,
|
|
} from '@mui/material';
|
|
import {
|
|
Menu as MenuIcon,
|
|
Home,
|
|
Timeline,
|
|
Chat,
|
|
Insights,
|
|
Settings,
|
|
ChildCare,
|
|
Group,
|
|
Logout,
|
|
} from '@mui/icons-material';
|
|
|
|
export const MobileNav = () => {
|
|
const [drawerOpen, setDrawerOpen] = useState(false);
|
|
const router = useRouter();
|
|
|
|
const menuItems = [
|
|
{ label: 'Dashboard', icon: <Home />, path: '/' },
|
|
{ label: 'Track Activity', icon: <Timeline />, path: '/track' },
|
|
{ label: 'AI Assistant', icon: <Chat />, path: '/ai-assistant' },
|
|
{ label: 'Insights', icon: <Insights />, path: '/insights' },
|
|
{ label: 'Children', icon: <ChildCare />, path: '/children' },
|
|
{ label: 'Family', icon: <Group />, path: '/family' },
|
|
{ label: 'Settings', icon: <Settings />, path: '/settings' },
|
|
];
|
|
|
|
const handleNavigate = (path: string) => {
|
|
router.push(path);
|
|
setDrawerOpen(false);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<AppBar position="static" elevation={1} sx={{ bgcolor: 'background.paper' }} component="header">
|
|
<Toolbar component="nav" aria-label="Primary navigation">
|
|
<IconButton
|
|
edge="start"
|
|
color="primary"
|
|
aria-label="menu"
|
|
onClick={() => setDrawerOpen(true)}
|
|
>
|
|
<MenuIcon />
|
|
</IconButton>
|
|
<Typography variant="h6" component="div" sx={{ flexGrow: 1, color: '#DB7093', fontWeight: 600 }}>
|
|
Maternal
|
|
</Typography>
|
|
<IconButton
|
|
color="primary"
|
|
aria-label="home"
|
|
onClick={() => router.push('/')}
|
|
sx={{ mr: 1 }}
|
|
>
|
|
<Home />
|
|
</IconButton>
|
|
<Avatar sx={{ bgcolor: 'primary.main' }}>U</Avatar>
|
|
</Toolbar>
|
|
</AppBar>
|
|
|
|
<Drawer
|
|
anchor="left"
|
|
open={drawerOpen}
|
|
onClose={() => setDrawerOpen(false)}
|
|
aria-label="Mobile navigation menu"
|
|
>
|
|
<Box
|
|
sx={{ width: 280 }}
|
|
role="navigation"
|
|
aria-label="Main menu"
|
|
>
|
|
<Box sx={{ p: 3, bgcolor: 'primary.light' }}>
|
|
<Avatar sx={{ width: 64, height: 64, bgcolor: 'primary.main', mb: 2 }}>U</Avatar>
|
|
<Typography variant="h6" fontWeight="600">User Name</Typography>
|
|
<Typography variant="body2" color="text.secondary">user@example.com</Typography>
|
|
</Box>
|
|
|
|
<List>
|
|
{menuItems.map((item) => (
|
|
<ListItem key={item.path} disablePadding>
|
|
<ListItemButton onClick={() => handleNavigate(item.path)}>
|
|
<ListItemIcon sx={{ color: 'primary.main' }}>
|
|
{item.icon}
|
|
</ListItemIcon>
|
|
<ListItemText primary={item.label} />
|
|
</ListItemButton>
|
|
</ListItem>
|
|
))}
|
|
</List>
|
|
|
|
<Divider sx={{ my: 1 }} />
|
|
|
|
<List>
|
|
<ListItem disablePadding>
|
|
<ListItemButton onClick={() => handleNavigate('/logout')}>
|
|
<ListItemIcon sx={{ color: 'error.main' }}>
|
|
<Logout />
|
|
</ListItemIcon>
|
|
<ListItemText primary="Logout" />
|
|
</ListItemButton>
|
|
</ListItem>
|
|
</List>
|
|
</Box>
|
|
</Drawer>
|
|
</>
|
|
);
|
|
};
|