1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- "use strict";
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
- var _jsxAstUtils = require("jsx-ast-utils");
- var _schemas = require("../util/schemas");
- var _isHiddenFromScreenReader = _interopRequireDefault(require("../util/isHiddenFromScreenReader"));
- /**
- * @fileoverview Enforce img alt attribute does not have the word image, picture, or photo.
- * @author Ethan Cohen
- */
- // ----------------------------------------------------------------------------
- // Rule Definition
- // ----------------------------------------------------------------------------
- var REDUNDANT_WORDS = ['image', 'photo', 'picture'];
- var errorMessage = 'Redundant alt attribute. Screen-readers already announce `img` tags as an image. You don’t need to use the words `image`, `photo,` or `picture` (or any specified custom words) in the alt prop.';
- var schema = (0, _schemas.generateObjSchema)({
- components: _schemas.arraySchema,
- words: _schemas.arraySchema
- });
- module.exports = {
- meta: {
- docs: {
- url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/img-redundant-alt.md'
- },
- schema: [schema]
- },
- create: function create(context) {
- return {
- JSXOpeningElement: function JSXOpeningElement(node) {
- var options = context.options[0] || {};
- var componentOptions = options.components || [];
- var typesToValidate = ['img'].concat(componentOptions);
- var nodeType = (0, _jsxAstUtils.elementType)(node); // Only check 'label' elements and custom types.
- if (typesToValidate.indexOf(nodeType) === -1) {
- return;
- }
- var altProp = (0, _jsxAstUtils.getProp)(node.attributes, 'alt'); // Return if alt prop is not present.
- if (altProp === undefined) {
- return;
- }
- var value = (0, _jsxAstUtils.getLiteralPropValue)(altProp);
- var isVisible = (0, _isHiddenFromScreenReader["default"])(nodeType, node.attributes) === false;
- var _options$words = options.words,
- words = _options$words === void 0 ? [] : _options$words;
- var redundantWords = REDUNDANT_WORDS.concat(words);
- if (typeof value === 'string' && isVisible) {
- var hasRedundancy = new RegExp("(?!{)\\b(".concat(redundantWords.join('|'), ")\\b(?!})"), 'i').test(value);
- if (hasRedundancy === true) {
- context.report({
- node,
- message: errorMessage
- });
- }
- }
- }
- };
- }
- };
|