Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@fpapado
Last active July 12, 2018 12:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fpapado/e835073afbcdfef7adcddba4ab25de92 to your computer and use it in GitHub Desktop.
Save fpapado/e835073afbcdfef7adcddba4ab25de92 to your computer and use it in GitHub Desktop.
Accessible `<button>` usurper
import React from "react";
/**
* Accessible "button" usurper.
* Establishes the correct role, tabindex, and key/mouse interaction if interactive.
* Buttons activate on space and enter.
*
* NOTE: Gives 'disabled' attribute if interaction not provided.
*
* @see https://www.w3.org/TR/wai-aria-practices-1.1/#button
* @see https://www.w3.org/TR/wai-aria-practices-1.1/examples/button/button.html
*/
interface IFauxButton extends React.HtmlHTMLAttributes<HTMLButtonElement> {
/** The DOM element for the component */
tag: string;
className?: string;
/** The action to take on activation. Happens on click and space or enter keys. */
onInteraction?: () => any;
/** HTML disabled attribute */
disabled?: boolean;
}
export const FauxButton: React.StatelessComponent<IFauxButton> = ({
tag,
className,
onInteraction,
disabled,
children,
...rest
}) =>
React.createElement(
tag,
{
...rest,
role: "button",
tabIndex: "0",
className,
// Disabled if set, or if interaction non-existent
disabled: disabled ? true : onInteraction ? null : true,
onClick: onInteraction,
onKeyDown: onInteraction && handleKeyActivation(onInteraction)
},
children
);
// Handle the keyboard activation same as a button
function handleKeyActivation(cb: () => any) {
return (event: any) => {
switch (event.key) {
case "Enter":
case " ":
event.preventDefault();
cb();
return;
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment