Skip to content

Commit 43cd4bc

Browse files
authoredJan 5, 2023
fix(app): improve modal a11y (#483)
* fix(app): improve modal a11y * fix(app): add title to AddQuestionConfirmationModal
1 parent 819175d commit 43cd4bc

File tree

5 files changed

+24
-7
lines changed

5 files changed

+24
-7
lines changed
 

‎apps/app/src/components/AddQuestionConfirmationModal.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ export const AddQuestionConfirmationModal = (props: ComponentProps<typeof BaseMo
1212
return (
1313
<BaseModal {...props}>
1414
<div className="flex flex-col items-center text-center text-violet-700 dark:text-violet-300">
15+
<BaseModal.Title modalId={props.modalId} className="sr-only">
16+
Potwierdzenie przekazania pytania do zatwierdzenia.
17+
</BaseModal.Title>
1518
<p>
1619
Jeszcze momencik… a Twoje pytanie pojawi się na liście dostępnych pytań. Najpierw musimy
1720
rzucić na nie okiem i zatwierdzić.
1821
<br /> W międzyczasie zajrzyj na bloga ❤️
1922
</p>
20-
2123
<a
2224
href="https://typeofweb.com/"
2325
target="_blank"
@@ -28,7 +30,6 @@ export const AddQuestionConfirmationModal = (props: ComponentProps<typeof BaseMo
2830
<Logo className="h-full w-full" viewBox="0 0 400 400" />
2931
</div>
3032
</a>
31-
3233
<Button type="button" variant="alternative" className="mt-8" onClick={closeModal}>
3334
OK!
3435
</Button>

‎apps/app/src/components/AddQuestionModal.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,9 @@ export const AddQuestionModal = (props: ComponentProps<typeof BaseModal>) => {
8080

8181
return (
8282
<BaseModal {...props}>
83-
<BaseModal.Title>{modalData ? "Edytuj" : "Nowe"} pytanie</BaseModal.Title>
83+
<BaseModal.Title modalId={props.modalId}>
84+
{modalData ? "Edytuj" : "Nowe"} pytanie
85+
</BaseModal.Title>
8486
<form onSubmit={handleFormSubmit}>
8587
<div className="mt-10 flex flex-col gap-y-3 sm:flex-row sm:justify-evenly sm:gap-x-5">
8688
<label className="flex w-full flex-col gap-2">

‎apps/app/src/components/AppModals.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const AppModals = () => {
1818
return (
1919
<>
2020
{Object.entries(modals).map(([type, Modal]) => (
21-
<Modal key={type} isOpen={type === openedModal} onClose={closeModal} />
21+
<Modal key={type} isOpen={type === openedModal} onClose={closeModal} modalId={type} />
2222
))}
2323
</>
2424
);

‎apps/app/src/components/BaseModal/BaseModal.tsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ type BaseModalProps = Readonly<{
1414
isOpen: boolean;
1515
onClose: () => void;
1616
children?: ReactNode;
17+
modalId: string;
1718
}>;
1819

19-
export const BaseModal = ({ isOpen, onClose, children }: BaseModalProps) => {
20+
export const BaseModal = ({ isOpen, onClose, children, modalId }: BaseModalProps) => {
2021
const { openedModal } = useUIContext();
2122

2223
useEffect(() => {
@@ -41,6 +42,10 @@ export const BaseModal = ({ isOpen, onClose, children }: BaseModalProps) => {
4142
unlockScroll({ mobileOnly: false });
4243
}
4344
}}
45+
role="dialog"
46+
aria-modal={true}
47+
aria-labelledby={`${modalId}-title`}
48+
id={modalId}
4449
>
4550
<div className="m-auto flex min-h-full w-fit sm:items-center">
4651
<div
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
import type { ReactNode } from "react";
2+
import { twMerge } from "tailwind-merge";
23

34
type ModalTitleProps = Readonly<{
45
children: ReactNode;
6+
modalId: string;
7+
className?: string;
58
}>;
69

7-
export const ModalTitle = ({ children }: ModalTitleProps) => (
8-
<h2 className="text-center text-xl font-bold uppercase text-primary dark:text-neutral-200">
10+
export const ModalTitle = ({ children, modalId, className }: ModalTitleProps) => (
11+
<h2
12+
className={twMerge(
13+
"text-center text-xl font-bold uppercase text-primary dark:text-neutral-200",
14+
className,
15+
)}
16+
id={`${modalId}-title`}
17+
>
918
{children}
1019
</h2>
1120
);

0 commit comments

Comments
 (0)