-
-
Notifications
You must be signed in to change notification settings - Fork 636
/
Copy patharia-activedescendant-has-tabindex.js
66 lines (54 loc) · 1.85 KB
/
aria-activedescendant-has-tabindex.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/**
* @fileoverview Enforce elements with aria-activedescendant are tabbable.
* @author Jesse Beach <@jessebeach>
*/
import { dom } from 'aria-query';
import { getProp, elementType } from 'jsx-ast-utils';
import { generateObjSchema } from '../util/schemas';
import getTabIndex from '../util/getTabIndex';
import isInteractiveElement from '../util/isInteractiveElement';
// ----------------------------------------------------------------------------
// Rule Definition
// ----------------------------------------------------------------------------
const errorMessage = 'An element that manages focus with `aria-activedescendant` must have a tabindex';
const schema = generateObjSchema();
const domElements = [...dom.keys()];
module.exports = {
meta: {
docs: {
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/aria-activedescendant-has-tabindex.md',
},
schema: [schema],
},
create: (context) => ({
JSXOpeningElement: (node) => {
const { attributes } = node;
if (getProp(attributes, 'aria-activedescendant') === undefined) {
return;
}
const type = elementType(node);
// Do not test higher level JSX components, as we do not know what
// low-level DOM element this maps to.
if (domElements.indexOf(type) === -1) {
return;
}
const tabIndex = getTabIndex(getProp(attributes, 'tabIndex'));
// If this is an interactive element and the tabindex attribute is not specified,
// or the tabIndex property was not mutated, then the tabIndex
// property will be undefined.
if (
isInteractiveElement(type, attributes)
&& tabIndex === undefined
) {
return;
}
if (tabIndex >= -1) {
return;
}
context.report({
node,
message: errorMessage,
});
},
}),
};