59 lines
1.9 KiB
JavaScript
59 lines
1.9 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = void 0;
|
|
var _ariaQuery = require("aria-query");
|
|
var _jsxAstUtils = require("jsx-ast-utils");
|
|
var _schemas = require("../util/schemas");
|
|
var _getSuggestion = _interopRequireDefault(require("../util/getSuggestion"));
|
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
/**
|
|
* @fileoverview Enforce all aria-* properties are valid.
|
|
* @author Ethan Cohen
|
|
*/
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Rule Definition
|
|
// ----------------------------------------------------------------------------
|
|
|
|
var ariaAttributes = _ariaQuery.aria.keys();
|
|
var errorMessage = function errorMessage(name) {
|
|
var suggestions = (0, _getSuggestion["default"])(name, ariaAttributes);
|
|
var message = "".concat(name, ": This attribute is an invalid ARIA attribute.");
|
|
if (suggestions.length > 0) {
|
|
return "".concat(message, " Did you mean to use ").concat(suggestions, "?");
|
|
}
|
|
return message;
|
|
};
|
|
var schema = (0, _schemas.generateObjSchema)();
|
|
var _default = exports["default"] = {
|
|
meta: {
|
|
docs: {
|
|
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/HEAD/docs/rules/aria-props.md',
|
|
description: 'Enforce all `aria-*` props are valid.'
|
|
},
|
|
schema: [schema]
|
|
},
|
|
create: function create(context) {
|
|
return {
|
|
JSXAttribute: function JSXAttribute(attribute) {
|
|
var name = (0, _jsxAstUtils.propName)(attribute);
|
|
|
|
// `aria` needs to be prefix of property.
|
|
if (name.indexOf('aria-') !== 0) {
|
|
return;
|
|
}
|
|
var isValid = _ariaQuery.aria.has(name);
|
|
if (isValid === false) {
|
|
context.report({
|
|
node: attribute,
|
|
message: errorMessage(name)
|
|
});
|
|
}
|
|
}
|
|
};
|
|
}
|
|
};
|
|
module.exports = exports.default; |