menuitem.js 711 B

1234567891011121314151617181920212223242526272829303132333435
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports["default"] = getImplicitRoleForMenuitem;
  6. var _jsxAstUtils = require("jsx-ast-utils");
  7. /**
  8. * Returns the implicit role for a menuitem tag.
  9. */
  10. function getImplicitRoleForMenuitem(attributes) {
  11. var type = (0, _jsxAstUtils.getProp)(attributes, 'type');
  12. if (type) {
  13. var value = (0, _jsxAstUtils.getLiteralPropValue)(type) || '';
  14. switch (typeof value === 'string' && value.toUpperCase()) {
  15. case 'COMMAND':
  16. return 'menuitem';
  17. case 'CHECKBOX':
  18. return 'menuitemcheckbox';
  19. case 'RADIO':
  20. return 'menuitemradio';
  21. default:
  22. return '';
  23. }
  24. }
  25. return '';
  26. }