-
-
Notifications
You must be signed in to change notification settings - Fork 636
/
Copy pathlabel-has-associated-control.js
125 lines (113 loc) · 3.42 KB
/
label-has-associated-control.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/**
* @fileoverview Enforce label tags have an associated control.
* @author Jesse Beach
*
* @flow
*/
// ----------------------------------------------------------------------------
// Rule Definition
// ----------------------------------------------------------------------------
import { getProp, getPropValue, elementType } from 'jsx-ast-utils';
import type { JSXElement } from 'ast-types-flow';
import { generateObjSchema, arraySchema } from '../util/schemas';
import type { ESLintConfig, ESLintContext, ESLintVisitorSelectorConfig } from '../../flow/eslint';
import mayContainChildComponent from '../util/mayContainChildComponent';
import mayHaveAccessibleLabel from '../util/mayHaveAccessibleLabel';
const errorMessage = 'A form label must be associated with a control.';
const schema = generateObjSchema({
labelComponents: arraySchema,
labelAttributes: arraySchema,
controlComponents: arraySchema,
assert: {
description: 'Assert that the label has htmlFor, a nested label, both or either',
type: 'string',
enum: ['htmlFor', 'nesting', 'both', 'either'],
},
depth: {
description: 'JSX tree depth limit to check for accessible label',
type: 'integer',
minimum: 0,
},
});
const validateId = (node) => {
const htmlForAttr = getProp(node.attributes, 'htmlFor');
const htmlForValue = getPropValue(htmlForAttr);
return htmlForAttr !== false && !!htmlForValue;
};
module.exports = ({
meta: {
docs: {},
schema: [schema],
},
create: (context: ESLintContext): ESLintVisitorSelectorConfig => {
const options = context.options[0] || {};
const labelComponents = options.labelComponents || [];
const assertType = options.assert || 'either';
const componentNames = ['label'].concat(labelComponents);
const rule = (node: JSXElement) => {
if (componentNames.indexOf(elementType(node.openingElement)) === -1) {
return;
}
const controlComponents = [
'input',
'meter',
'output',
'progress',
'select',
'textarea',
].concat((options.controlComponents || []));
// Prevent crazy recursion.
const recursionDepth = Math.min(
options.depth === undefined ? 2 : options.depth,
25,
);
const hasLabelId = validateId(node.openingElement);
// Check for multiple control components.
const hasNestedControl = controlComponents.some((name) => mayContainChildComponent(
node,
name,
recursionDepth,
));
const hasAccessibleLabel = mayHaveAccessibleLabel(
node,
recursionDepth,
options.labelAttributes,
);
if (hasAccessibleLabel) {
switch (assertType) {
case 'htmlFor':
if (hasLabelId) {
return;
}
break;
case 'nesting':
if (hasNestedControl) {
return;
}
break;
case 'both':
if (hasLabelId && hasNestedControl) {
return;
}
break;
case 'either':
if (hasLabelId || hasNestedControl) {
return;
}
break;
default:
break;
}
}
// htmlFor case
context.report({
node: node.openingElement,
message: errorMessage,
});
};
// Create visitor selectors.
return {
JSXElement: rule,
};
},
}: ESLintConfig);