Critical fixes: - Add aria-label to all unlabeled inputs/selects in draft dialogs (ParticipantSelectionDialog, TimeBankAdjustmentDialog, AvailableParticipantsSection) - Add role="dialog" + aria-modal + focus trap to ConnectionOverlay and AuthRecoveryOverlay - Add aria-live region and connection status announcement to ConnectionOverlay Serious fixes: - Add skip-to-content link in root.tsx with id="main-content" on <main> - Add aria-label to UserMenu trigger button - Add aria-describedby + role="alert" to all auth form error messages (login, register, onboarding, forgot-password, reset-password) - Replace emoji column headers in StandingsTable with aria-label + aria-hidden spans - Add aria-live="assertive" to "It's your turn" desktop and mobile on-clock indicators - Add aria-live="polite" to draft room countdown timer - Add pause button to SportTicker (WCAG 2.2.2); add aria-hidden to ticker content - Fix Footer text contrast (changed from 28% to text-muted-foreground) - Fix OvernightPauseSettings: add htmlFor/id pairs and role="radiogroup"+aria-checked to mode buttons - Fix DraftSetupSection: replace broken htmlFor with aria-label on date picker button - Add aria-label to PeopleSection owner and commissioner selects - Add labels to ScoringPresetPicker score inputs; add role="radiogroup"+aria-checked to preset buttons - Add role="radiogroup"+aria-checked to AutodraftSettings option buttons - Add accessible names, aria-current="step", and <ol> list semantics to WizardStepper Moderate fixes: - Add aria-controls to RecentPicksFeed toggle button; wrap picks list in aria-live region - Add role="tab"+aria-selected+aria-controls to mobile board sub-tabs + role="tabpanel" - Add role="radiogroup"+aria-checked to TimerModeSelector - Add aria-current="page" + aria-label to SettingsDesktopNav - Add aria-label="Admin navigation" to admin sidebar nav - Add scope="col" + <caption> to StandingsTable and ScoringTables - Add ARIA table roles (role="table/rowgroup/row/columnheader/rowheader/cell") to DraftSummaryView CSS grid Minor fixes: - Add aria-hidden="true" to decorative trend icons in StandingsTable - Add aria-hidden="true" to desktop column header labels row in AvailableParticipantsSection - Replace title with aria-label on all icon-only buttons (watchlist, queue) in AvailableParticipantsSection - Add aria-label to NotificationSettings switchOnly Switch - Add prefers-reduced-motion check to SlotMachineHeadline JS animation - Bump --muted-foreground from 55% to 62% opacity for improved contrast margin https://claude.ai/code/session_01JXajpFxhqLf8aPCncP81k3
117 lines
3.6 KiB
TypeScript
117 lines
3.6 KiB
TypeScript
import type { ComponentType } from "react";
|
|
import type { LucideProps } from "lucide-react";
|
|
import { ArrowLeft } from "lucide-react";
|
|
import { cn } from "~/lib/utils";
|
|
|
|
type SettingsNavSection = {
|
|
id: string;
|
|
label: string;
|
|
};
|
|
|
|
export type SettingsGridSection = SettingsNavSection & {
|
|
icon: ComponentType<LucideProps>;
|
|
subtitle: string;
|
|
isDanger?: boolean;
|
|
};
|
|
|
|
export function SettingsMobileGridNav({
|
|
sections,
|
|
onSectionChange,
|
|
}: {
|
|
sections: readonly SettingsGridSection[];
|
|
onSectionChange: (sectionId: string) => void;
|
|
}) {
|
|
return (
|
|
<div className="mb-5 lg:hidden">
|
|
<div className="mb-3">
|
|
<p className="text-xs font-semibold uppercase tracking-wide text-muted-foreground">
|
|
Manage
|
|
</p>
|
|
</div>
|
|
<div className="grid grid-cols-2 gap-3">
|
|
{sections.map((section) => (
|
|
<button
|
|
key={section.id}
|
|
type="button"
|
|
onClick={() => onSectionChange(section.id)}
|
|
className={cn(
|
|
"flex cursor-pointer flex-col gap-3 rounded-xl border bg-card p-4 text-left transition-colors hover:border-primary/40 active:scale-[0.98]",
|
|
section.isDanger && "border-destructive/40"
|
|
)}
|
|
>
|
|
<div
|
|
className={cn(
|
|
"flex h-10 w-10 items-center justify-center rounded-lg",
|
|
section.isDanger
|
|
? "bg-destructive/15 text-destructive"
|
|
: "bg-primary/20 text-primary"
|
|
)}
|
|
>
|
|
<section.icon className="h-5 w-5" />
|
|
</div>
|
|
<div>
|
|
<p className="text-sm font-semibold leading-tight">{section.label}</p>
|
|
<p className="mt-0.5 text-xs text-muted-foreground">{section.subtitle}</p>
|
|
</div>
|
|
</button>
|
|
))}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function SettingsMobileSectionPill({
|
|
onShowGrid,
|
|
}: {
|
|
onShowGrid: () => void;
|
|
}) {
|
|
return (
|
|
<div className="mb-5 lg:hidden">
|
|
<button
|
|
type="button"
|
|
onClick={onShowGrid}
|
|
className="flex cursor-pointer items-center gap-1.5 rounded-full border bg-card px-3 py-1.5 text-sm font-medium hover:bg-muted"
|
|
>
|
|
<ArrowLeft className="h-3.5 w-3.5" />
|
|
Back to all settings
|
|
</button>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function SettingsDesktopNav({
|
|
sections,
|
|
activeSection,
|
|
onSectionChange,
|
|
}: {
|
|
sections: readonly SettingsGridSection[];
|
|
activeSection: string;
|
|
onSectionChange: (sectionId: string) => void;
|
|
}) {
|
|
return (
|
|
<aside className="hidden lg:block">
|
|
<div className="sticky top-6 rounded-xl border bg-card p-3">
|
|
<p className="px-3 pb-2 text-xs font-semibold uppercase tracking-wide text-muted-foreground">
|
|
Manage
|
|
</p>
|
|
<nav aria-label="League settings" className="space-y-1">
|
|
{sections.map((section) => (
|
|
<button
|
|
key={section.id}
|
|
type="button"
|
|
onClick={() => onSectionChange(section.id)}
|
|
aria-current={activeSection === section.id ? "page" : undefined}
|
|
className={cn(
|
|
"flex w-full cursor-pointer items-center gap-2.5 rounded-md px-3 py-2 text-left text-sm font-medium text-muted-foreground hover:bg-muted hover:text-foreground",
|
|
activeSection === section.id && "bg-muted text-foreground"
|
|
)}
|
|
>
|
|
<section.icon className={cn("h-4 w-4 shrink-0", section.isDanger && "text-destructive")} aria-hidden="true" />
|
|
{section.label}
|
|
</button>
|
|
))}
|
|
</nav>
|
|
</div>
|
|
</aside>
|
|
);
|
|
}
|