- Navigation: hamburger minWidth/minHeight 44px, drawer items minHeight 44px - Footer: contact links, link group links, legal links all minHeight 44px - Footer: tagline maxWidth responsive (100% on xs, 280 on md) - ProviderCard/VenueCard: no changes needed (card is the touch target, not meta items) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
288 lines
9.2 KiB
TypeScript
288 lines
9.2 KiB
TypeScript
import React from 'react';
|
|
import AppBar from '@mui/material/AppBar';
|
|
import Toolbar from '@mui/material/Toolbar';
|
|
import Box from '@mui/material/Box';
|
|
import Drawer from '@mui/material/Drawer';
|
|
import List from '@mui/material/List';
|
|
import ListItemButton from '@mui/material/ListItemButton';
|
|
import ListItemText from '@mui/material/ListItemText';
|
|
import useMediaQuery from '@mui/material/useMediaQuery';
|
|
import MenuIcon from '@mui/icons-material/Menu';
|
|
import CloseIcon from '@mui/icons-material/Close';
|
|
import type { SxProps, Theme } from '@mui/material/styles';
|
|
import { IconButton } from '../../atoms/IconButton';
|
|
import { Link } from '../../atoms/Link';
|
|
import { Button } from '../../atoms/Button';
|
|
import { Typography } from '../../atoms/Typography';
|
|
import { Divider } from '../../atoms/Divider';
|
|
|
|
// ─── Types ───────────────────────────────────────────────────────────────────
|
|
|
|
/** A navigation link item */
|
|
export interface NavItem {
|
|
/** Display label */
|
|
label: string;
|
|
/** URL to navigate to */
|
|
href: string;
|
|
/** Click handler (alternative to href for SPA navigation) */
|
|
onClick?: () => void;
|
|
}
|
|
|
|
/** Props for the FA Navigation organism */
|
|
export interface NavigationProps {
|
|
/** Site logo — rendered on the left (desktop) or centre (mobile) */
|
|
logo: React.ReactNode;
|
|
/** Click handler for the logo (navigate to home) */
|
|
onLogoClick?: () => void;
|
|
/** Navigation links displayed in the header */
|
|
items?: NavItem[];
|
|
/** Optional CTA button (e.g. "Start planning") on desktop */
|
|
ctaLabel?: string;
|
|
/** Click handler for the CTA button */
|
|
onCtaClick?: () => void;
|
|
/** MUI sx prop for the root AppBar */
|
|
sx?: SxProps<Theme>;
|
|
}
|
|
|
|
// ─── Component ───────────────────────────────────────────────────────────────
|
|
|
|
/**
|
|
* Site header navigation for the FA design system.
|
|
*
|
|
* Responsive header with logo, navigation links, and optional CTA.
|
|
* Desktop shows links inline; mobile collapses to hamburger + drawer.
|
|
*
|
|
* Maps to Figma "Main Nav" (14:108) desktop and "Mobile Header"
|
|
* (2391:41508) mobile patterns.
|
|
*
|
|
* Composes AppBar + Link + IconButton + Button + Divider + Drawer.
|
|
*
|
|
* Usage:
|
|
* ```tsx
|
|
* <Navigation
|
|
* logo={<img src="/logo.svg" alt="Funeral Arranger" height={40} />}
|
|
* onLogoClick={() => navigate('/')}
|
|
* items={[
|
|
* { label: 'FAQ', href: '/faq' },
|
|
* { label: 'Contact Us', href: '/contact' },
|
|
* { label: 'Log in', href: '/login' },
|
|
* ]}
|
|
* ctaLabel="Start planning"
|
|
* onCtaClick={() => navigate('/arrange')}
|
|
* />
|
|
* ```
|
|
*/
|
|
export const Navigation = React.forwardRef<HTMLDivElement, NavigationProps>(
|
|
({ logo, onLogoClick, items = [], ctaLabel, onCtaClick, sx }, ref) => {
|
|
const [drawerOpen, setDrawerOpen] = React.useState(false);
|
|
const isMobile = useMediaQuery((theme: Theme) => theme.breakpoints.down('md'));
|
|
|
|
const handleDrawerToggle = () => setDrawerOpen((prev) => !prev);
|
|
|
|
return (
|
|
<>
|
|
<AppBar
|
|
ref={ref}
|
|
position="sticky"
|
|
elevation={0}
|
|
sx={[
|
|
{
|
|
bgcolor: 'var(--fa-color-surface-subtle)',
|
|
color: 'text.primary',
|
|
borderBottom: '1px solid',
|
|
borderColor: 'divider',
|
|
},
|
|
...(Array.isArray(sx) ? sx : [sx]),
|
|
]}
|
|
>
|
|
<Toolbar
|
|
sx={{
|
|
minHeight: { xs: 56, md: 80 },
|
|
px: { xs: 2, md: 4 },
|
|
justifyContent: 'space-between',
|
|
}}
|
|
>
|
|
{/* Left: hamburger (mobile) + logo */}
|
|
<Box sx={{ display: 'flex', alignItems: 'center', gap: 1.5 }}>
|
|
{isMobile && (
|
|
<IconButton
|
|
aria-label={drawerOpen ? 'Close menu' : 'Open menu'}
|
|
onClick={handleDrawerToggle}
|
|
size="medium"
|
|
edge="start"
|
|
sx={{ minWidth: 44, minHeight: 44 }}
|
|
>
|
|
<MenuIcon />
|
|
</IconButton>
|
|
)}
|
|
|
|
<Box
|
|
component={onLogoClick ? 'a' : 'div'}
|
|
href={onLogoClick ? '#' : undefined}
|
|
onClick={
|
|
onLogoClick
|
|
? (e: React.MouseEvent) => {
|
|
e.preventDefault();
|
|
onLogoClick();
|
|
}
|
|
: undefined
|
|
}
|
|
sx={{
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
cursor: onLogoClick ? 'pointer' : 'default',
|
|
textDecoration: 'none',
|
|
color: 'inherit',
|
|
}}
|
|
aria-label={onLogoClick ? 'Home' : undefined}
|
|
>
|
|
{logo}
|
|
</Box>
|
|
</Box>
|
|
|
|
{/* Right: nav links (desktop) or trailing content (mobile) */}
|
|
{!isMobile ? (
|
|
<Box
|
|
component="nav"
|
|
aria-label="Main navigation"
|
|
sx={{ display: 'flex', alignItems: 'center', gap: 3.5 }}
|
|
>
|
|
{items.map((item) => (
|
|
<Link
|
|
key={item.label}
|
|
href={item.href}
|
|
onClick={item.onClick}
|
|
underline="hover"
|
|
sx={{
|
|
color: 'var(--fa-color-brand-900)',
|
|
fontWeight: 600,
|
|
fontSize: '1rem',
|
|
'&:hover': {
|
|
color: 'primary.main',
|
|
},
|
|
}}
|
|
>
|
|
{item.label}
|
|
</Link>
|
|
))}
|
|
|
|
{ctaLabel && (
|
|
<Button variant="contained" size="medium" onClick={onCtaClick}>
|
|
{ctaLabel}
|
|
</Button>
|
|
)}
|
|
</Box>
|
|
) : null}
|
|
</Toolbar>
|
|
</AppBar>
|
|
|
|
{/* Mobile drawer */}
|
|
{isMobile && (
|
|
<Drawer
|
|
anchor="left"
|
|
open={drawerOpen}
|
|
onClose={handleDrawerToggle}
|
|
PaperProps={{
|
|
sx: {
|
|
width: 300,
|
|
bgcolor: 'background.default',
|
|
},
|
|
}}
|
|
>
|
|
{/* Drawer header */}
|
|
<Box
|
|
sx={{
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'space-between',
|
|
px: 2,
|
|
py: 1.5,
|
|
bgcolor: 'var(--fa-color-surface-subtle)',
|
|
}}
|
|
>
|
|
<Box sx={{ display: 'flex', alignItems: 'center' }}>{logo}</Box>
|
|
<IconButton aria-label="Close menu" onClick={handleDrawerToggle} size="small">
|
|
<CloseIcon />
|
|
</IconButton>
|
|
</Box>
|
|
|
|
<Divider />
|
|
|
|
{/* Nav items */}
|
|
<List component="nav" aria-label="Main navigation">
|
|
{items.map((item) => (
|
|
<ListItemButton
|
|
key={item.label}
|
|
component="a"
|
|
href={item.href}
|
|
onClick={(e: React.MouseEvent) => {
|
|
if (item.onClick) {
|
|
e.preventDefault();
|
|
item.onClick();
|
|
}
|
|
setDrawerOpen(false);
|
|
}}
|
|
sx={{
|
|
py: 1.5,
|
|
px: 3,
|
|
minHeight: 44,
|
|
'&:hover': {
|
|
bgcolor: 'var(--fa-color-brand-100)',
|
|
},
|
|
}}
|
|
>
|
|
<ListItemText
|
|
primary={item.label}
|
|
primaryTypographyProps={{
|
|
fontWeight: 500,
|
|
fontSize: '1rem',
|
|
}}
|
|
/>
|
|
</ListItemButton>
|
|
))}
|
|
</List>
|
|
|
|
{ctaLabel && (
|
|
<Box sx={{ px: 3, py: 2 }}>
|
|
<Button
|
|
variant="contained"
|
|
size="large"
|
|
fullWidth
|
|
onClick={() => {
|
|
if (onCtaClick) onCtaClick();
|
|
setDrawerOpen(false);
|
|
}}
|
|
>
|
|
{ctaLabel}
|
|
</Button>
|
|
</Box>
|
|
)}
|
|
|
|
{/* Footer */}
|
|
<Box sx={{ mt: 'auto' }}>
|
|
<Divider />
|
|
<Box sx={{ px: 3, py: 2, bgcolor: 'var(--fa-color-surface-subtle)' }}>
|
|
<Typography variant="body2" color="text.secondary">
|
|
Need help? Call us on
|
|
</Typography>
|
|
<Link
|
|
href="tel:1800987888"
|
|
sx={{
|
|
fontWeight: 600,
|
|
fontSize: '1rem',
|
|
}}
|
|
>
|
|
1800 987 888
|
|
</Link>
|
|
</Box>
|
|
</Box>
|
|
</Drawer>
|
|
)}
|
|
</>
|
|
);
|
|
},
|
|
);
|
|
|
|
Navigation.displayName = 'Navigation';
|
|
export default Navigation;
|