orionsoft-react-scripts
Version:
Orionsoft Configuration and scripts for Create React App.
26 lines (21 loc) • 550 B
JavaScript
import { getProp, getLiteralPropValue } from 'jsx-ast-utils';
/**
* Returns the implicit role for a menuitem tag.
*/
export default function getImplicitRoleForMenuitem(attributes) {
const type = getProp(attributes, 'type');
if (type) {
const value = getLiteralPropValue(type) || '';
switch (value.toUpperCase()) {
case 'COMMAND':
return 'menuitem';
case 'CHECKBOX':
return 'menuitemcheckbox';
case 'RADIO':
return 'menuitemradio';
default:
return '';
}
}
return '';
}