Permalink
Cannot retrieve contributors at this time
83 lines (80 sloc)
3.17 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-noninteractive-element-to-interactive-role.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 _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray")); | |
var _ariaQuery = require("aria-query"); | |
var _jsxAstUtils = require("jsx-ast-utils"); | |
var _arrayIncludes = _interopRequireDefault(require("array-includes")); | |
var _has = _interopRequireDefault(require("has")); | |
var _getElementType = _interopRequireDefault(require("../util/getElementType")); | |
var _getExplicitRole = _interopRequireDefault(require("../util/getExplicitRole")); | |
var _isNonInteractiveElement = _interopRequireDefault(require("../util/isNonInteractiveElement")); | |
var _isInteractiveRole = _interopRequireDefault(require("../util/isInteractiveRole")); | |
/** | |
* @fileoverview Disallow inherently non-interactive elements to be assigned | |
* interactive roles. | |
* @author Jesse Beach | |
* | |
*/ | |
// ---------------------------------------------------------------------------- | |
// Rule Definition | |
// ---------------------------------------------------------------------------- | |
var errorMessage = 'Non-interactive elements should not be assigned interactive roles.'; | |
var domElements = (0, _toConsumableArray2["default"])(_ariaQuery.dom.keys()); | |
var _default = { | |
meta: { | |
docs: { | |
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/HEAD/docs/rules/no-noninteractive-element-to-interactive-role.md', | |
description: 'Non-interactive elements should not be assigned interactive roles.' | |
}, | |
schema: [{ | |
type: 'object', | |
additionalProperties: { | |
type: 'array', | |
items: { | |
type: 'string' | |
}, | |
uniqueItems: true | |
} | |
}] | |
}, | |
create: function create(context) { | |
var options = context.options; | |
var elementType = (0, _getElementType["default"])(context); | |
return { | |
JSXAttribute: function JSXAttribute(attribute) { | |
var attributeName = (0, _jsxAstUtils.propName)(attribute); | |
// $FlowFixMe: [TODO] Mark propName as a JSXIdentifier, not a string. | |
if (attributeName !== 'role') { | |
return; | |
} | |
var node = attribute.parent; | |
var attributes = node.attributes; | |
var type = elementType(node); | |
var role = (0, _getExplicitRole["default"])(type, node.attributes); | |
if (!(0, _arrayIncludes["default"])(domElements, type)) { | |
// Do not test higher level JSX components, as we do not know what | |
// low-level DOM element this maps to. | |
return; | |
} | |
// Allow overrides from rule configuration for specific elements and | |
// roles. | |
var allowedRoles = options[0] || {}; | |
if ((0, _has["default"])(allowedRoles, type) && (0, _arrayIncludes["default"])(allowedRoles[type], role)) { | |
return; | |
} | |
if ((0, _isNonInteractiveElement["default"])(type, attributes) && (0, _isInteractiveRole["default"])(type, attributes)) { | |
context.report({ | |
node: attribute, | |
message: errorMessage | |
}); | |
} | |
} | |
}; | |
} | |
}; | |
exports["default"] = _default; | |
module.exports = exports.default; |