-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adding labelledby and describedby attributes for post card (#142)
* feat: adding labelledby and describedby attributes
- Loading branch information
Showing
7 changed files
with
76 additions
and
14 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import {useMemo} from 'react'; | ||
|
||
type Labels = string | number | boolean | undefined; | ||
type Description = string | number | boolean | undefined; | ||
interface UseAriaAttributesProps { | ||
labelIds?: Labels[]; | ||
descriptionIds: Description[]; | ||
} | ||
|
||
/** | ||
* Returns aria-attributes | ||
* @param labelIds - labels ids. Falsy values will be ignored | ||
* @param descriptionIds - descriptions ids. Falsy values will be ignored | ||
* @returns aria attributes for the element to be labelled | ||
*/ | ||
export const useAriaAttributes = ({labelIds = [], descriptionIds = []}: UseAriaAttributesProps) => { | ||
const labelledBy = useMemo(() => labelIds.filter(Boolean).join(' '), [labelIds]); | ||
const describedBy = useMemo(() => descriptionIds.filter(Boolean).join(' '), [descriptionIds]); | ||
|
||
return { | ||
'aria-labelledby': labelledBy, | ||
'aria-describedby': describedBy, | ||
}; | ||
}; |