Permalink
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/accessible-emoji.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
63 lines (59 sloc)
2.63 KB
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 _emojiRegex = _interopRequireDefault(require("emoji-regex")); | |
var _jsxAstUtils = require("jsx-ast-utils"); | |
var _schemas = require("../util/schemas"); | |
var _getElementType = _interopRequireDefault(require("../util/getElementType")); | |
var _isHiddenFromScreenReader = _interopRequireDefault(require("../util/isHiddenFromScreenReader")); | |
/** | |
* @fileoverview Enforce emojis are wrapped in <span> and provide screenreader access. | |
* @author Ethan Cohen | |
*/ | |
// ---------------------------------------------------------------------------- | |
// Rule Definition | |
// ---------------------------------------------------------------------------- | |
var errorMessage = 'Emojis should be wrapped in <span>, have role="img", and have an accessible description with aria-label or aria-labelledby.'; | |
var schema = (0, _schemas.generateObjSchema)(); | |
var _default = { | |
meta: { | |
docs: { | |
description: 'Enforce emojis are wrapped in `<span>` and provide screenreader access.', | |
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/HEAD/docs/rules/accessible-emoji.md' | |
}, | |
deprecated: true, | |
schema: [schema] | |
}, | |
create: function create(context) { | |
var elementType = (0, _getElementType["default"])(context); | |
return { | |
JSXOpeningElement: function JSXOpeningElement(node) { | |
var literalChildValue = node.parent.children.find(function (child) { | |
return child.type === 'Literal' || child.type === 'JSXText'; | |
}); | |
if (literalChildValue && (0, _emojiRegex["default"])().test(literalChildValue.value)) { | |
var elementIsHidden = (0, _isHiddenFromScreenReader["default"])(elementType(node), node.attributes); | |
if (elementIsHidden) { | |
return; // emoji is decorative | |
} | |
var rolePropValue = (0, _jsxAstUtils.getLiteralPropValue)((0, _jsxAstUtils.getProp)(node.attributes, 'role')); | |
var ariaLabelProp = (0, _jsxAstUtils.getProp)(node.attributes, 'aria-label'); | |
var arialLabelledByProp = (0, _jsxAstUtils.getProp)(node.attributes, 'aria-labelledby'); | |
var hasLabel = ariaLabelProp !== undefined || arialLabelledByProp !== undefined; | |
var isSpan = elementType(node) === 'span'; | |
if (hasLabel === false || rolePropValue !== 'img' || isSpan === false) { | |
context.report({ | |
node, | |
message: errorMessage | |
}); | |
} | |
} | |
} | |
}; | |
} | |
}; | |
exports["default"] = _default; | |
module.exports = exports.default; |