Permalink
Cannot retrieve contributors at this time
48 lines (45 sloc)
1.69 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/eslint-plugin-jsx-a11y/lib/rules/no-aria-hidden-on-focusable.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
"use strict"; | |
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); | |
Object.defineProperty(exports, "__esModule", { | |
value: true | |
}); | |
exports["default"] = void 0; | |
var _jsxAstUtils = require("jsx-ast-utils"); | |
var _getElementType = _interopRequireDefault(require("../util/getElementType")); | |
var _isFocusable = _interopRequireDefault(require("../util/isFocusable")); | |
var _schemas = require("../util/schemas"); | |
/** | |
* @fileoverview Enforce aria-hidden is not used on interactive elements or contain interactive elements. | |
* @author Kate Higa | |
*/ | |
// ---------------------------------------------------------------------------- | |
// Rule Definition | |
// ---------------------------------------------------------------------------- | |
var schema = (0, _schemas.generateObjSchema)(); | |
var _default = { | |
meta: { | |
docs: { | |
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/HEAD/docs/rules/no-aria-hidden-on-focusable.md', | |
description: 'Disallow `aria-hidden="true"` from being set on focusable elements.' | |
}, | |
schema: [schema] | |
}, | |
create(context) { | |
var elementType = (0, _getElementType["default"])(context); | |
return { | |
JSXOpeningElement(node) { | |
var attributes = node.attributes; | |
var type = elementType(node); | |
var isAriaHidden = (0, _jsxAstUtils.getPropValue)((0, _jsxAstUtils.getProp)(attributes, 'aria-hidden')) === true; | |
if (isAriaHidden && (0, _isFocusable["default"])(type, attributes)) { | |
context.report({ | |
node, | |
message: 'aria-hidden="true" must not be set on focusable elements.' | |
}); | |
} | |
} | |
}; | |
} | |
}; | |
exports["default"] = _default; | |
module.exports = exports.default; |