Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix(app): improve modal a11y #483

Merged
merged 2 commits into from
Jan 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions apps/app/src/components/AddQuestionConfirmationModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,14 @@ export const AddQuestionConfirmationModal = (props: ComponentProps<typeof BaseMo
return (
<BaseModal {...props}>
<div className="flex flex-col items-center text-center text-violet-700 dark:text-violet-300">
<BaseModal.Title modalId={props.modalId} className="sr-only">
Potwierdzenie przekazania pytania do zatwierdzenia.
</BaseModal.Title>
<p>
Jeszcze momencik… a Twoje pytanie pojawi się na liście dostępnych pytań. Najpierw musimy
rzucić na nie okiem i zatwierdzić.
<br /> W międzyczasie zajrzyj na bloga ❤️
</p>

<a
href="https://typeofweb.com/"
target="_blank"
Expand All @@ -28,7 +30,6 @@ export const AddQuestionConfirmationModal = (props: ComponentProps<typeof BaseMo
<Logo className="h-full w-full" viewBox="0 0 400 400" />
</div>
</a>

<Button type="button" variant="alternative" className="mt-8" onClick={closeModal}>
OK!
</Button>
Expand Down
4 changes: 3 additions & 1 deletion apps/app/src/components/AddQuestionModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ export const AddQuestionModal = (props: ComponentProps<typeof BaseModal>) => {

return (
<BaseModal {...props}>
<BaseModal.Title>{modalData ? "Edytuj" : "Nowe"} pytanie</BaseModal.Title>
<BaseModal.Title modalId={props.modalId}>
{modalData ? "Edytuj" : "Nowe"} pytanie
</BaseModal.Title>
<form onSubmit={handleFormSubmit}>
<div className="mt-10 flex flex-col gap-y-3 sm:flex-row sm:justify-evenly sm:gap-x-5">
<label className="flex w-full flex-col gap-2">
Expand Down
2 changes: 1 addition & 1 deletion apps/app/src/components/AppModals.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const AppModals = () => {
return (
<>
{Object.entries(modals).map(([type, Modal]) => (
<Modal key={type} isOpen={type === openedModal} onClose={closeModal} />
<Modal key={type} isOpen={type === openedModal} onClose={closeModal} modalId={type} />
))}
</>
);
Expand Down
7 changes: 6 additions & 1 deletion apps/app/src/components/BaseModal/BaseModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ type BaseModalProps = Readonly<{
isOpen: boolean;
onClose: () => void;
children?: ReactNode;
modalId: string;
}>;

export const BaseModal = ({ isOpen, onClose, children }: BaseModalProps) => {
export const BaseModal = ({ isOpen, onClose, children, modalId }: BaseModalProps) => {
const { openedModal } = useUIContext();

useEffect(() => {
Expand All @@ -41,6 +42,10 @@ export const BaseModal = ({ isOpen, onClose, children }: BaseModalProps) => {
unlockScroll({ mobileOnly: false });
}
}}
role="dialog"
aria-modal={true}
aria-labelledby={`${modalId}-title`}
id={modalId}
>
<div className="m-auto flex min-h-full w-fit sm:items-center">
<div
Expand Down
13 changes: 11 additions & 2 deletions apps/app/src/components/BaseModal/ModalTitle.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
import type { ReactNode } from "react";
import { twMerge } from "tailwind-merge";

type ModalTitleProps = Readonly<{
children: ReactNode;
modalId: string;
className?: string;
}>;

export const ModalTitle = ({ children }: ModalTitleProps) => (
<h2 className="text-center text-xl font-bold uppercase text-primary dark:text-neutral-200">
export const ModalTitle = ({ children, modalId, className }: ModalTitleProps) => (
<h2
className={twMerge(
"text-center text-xl font-bold uppercase text-primary dark:text-neutral-200",
className,
)}
id={`${modalId}-title`}
>
{children}
</h2>
);