UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

52 lines (42 loc) 1.5 kB
/** * @fileoverview Enforce a clickable non-interactive element has at least 1 keyboard event listener. * @author Ethan Cohen */ // ---------------------------------------------------------------------------- // Rule Definition // ---------------------------------------------------------------------------- import { getProp, hasAnyProp, elementType } from 'jsx-ast-utils'; import { generateObjSchema } from '../util/schemas'; import isHiddenFromScreenReader from '../util/isHiddenFromScreenReader'; import isInteractiveElement from '../util/isInteractiveElement'; const errorMessage = 'Visible, non-interactive elements with click handlers' + ' must have at least one keyboard listener.'; const schema = generateObjSchema(); module.exports = { meta: { docs: {}, schema: [schema], }, create: context => ({ JSXOpeningElement: (node) => { const props = node.attributes; if (getProp(props, 'onclick') === undefined) { return; } const type = elementType(node); const requiredProps = ['onkeydown', 'onkeyup', 'onkeypress']; if (isHiddenFromScreenReader(type, props)) { return; } else if (isInteractiveElement(type, props)) { return; } else if (hasAnyProp(props, requiredProps)) { return; } // Visible, non-interactive elements with click handlers require one keyboard event listener. context.report({ node, message: errorMessage, }); }, }), };