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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
// React
const {
Component,
createFactory,
} = require("resource://devtools/client/shared/vendor/react.js");
const PropTypes = require("resource://devtools/client/shared/vendor/react-prop-types.js");
const {
span,
} = require("resource://devtools/client/shared/vendor/react-dom-factories.js");
const {
L10N,
} = require("resource://devtools/client/accessibility/utils/l10n.js");
const {
accessibility: { AUDIT_TYPE },
} = require("resource://devtools/shared/constants.js");
loader.lazyGetter(this, "ContrastBadge", () =>
createFactory(
require("resource://devtools/client/accessibility/components/ContrastBadge.js")
)
);
loader.lazyGetter(this, "KeyboardBadge", () =>
createFactory(
require("resource://devtools/client/accessibility/components/KeyboardBadge.js")
)
);
loader.lazyGetter(this, "TextLabelBadge", () =>
createFactory(
require("resource://devtools/client/accessibility/components/TextLabelBadge.js")
)
);
function getComponentForAuditType(type) {
const auditTypeToComponentMap = {
[AUDIT_TYPE.CONTRAST]: ContrastBadge,
[AUDIT_TYPE.KEYBOARD]: KeyboardBadge,
[AUDIT_TYPE.TEXT_LABEL]: TextLabelBadge,
};
return auditTypeToComponentMap[type];
}
class Badges extends Component {
static get propTypes() {
return {
checks: PropTypes.object,
};
}
render() {
const { checks } = this.props;
if (!checks) {
return null;
}
const items = [];
for (const type in checks) {
const component = getComponentForAuditType(type);
if (checks[type] && component) {
items.push(component({ key: type, ...checks[type] }));
}
}
if (items.length === 0) {
return null;
}
return span(
{
className: "badges",
role: "group",
"aria-label": L10N.getStr("accessibility.badges"),
},
items
);
}
}
module.exports = Badges;
|