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
|
/* 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 & Redux
const { createFactory } = require("devtools/client/shared/vendor/react");
const {
div,
p,
img,
} = require("devtools/client/shared/vendor/react-dom-factories");
const LearnMoreLink = createFactory(
require("devtools/client/accessibility/components/LearnMoreLink")
);
// Localization
const { L10N } = require("devtools/client/accessibility/utils/l10n");
const {
A11Y_LEARN_MORE_LINK,
} = require("devtools/client/accessibility/constants");
/**
* Landing UI for the accessibility panel when Accessibility features are
* deactivated.
*/
function Description() {
return div(
{ className: "description", role: "presentation", tabIndex: "-1" },
div(
{ className: "general", role: "presentation", tabIndex: "-1" },
img({
src: "chrome://devtools/skin/images/accessibility.svg",
alt: L10N.getStr("accessibility.logo"),
}),
div(
{ role: "presentation", tabIndex: "-1" },
LearnMoreLink({
href:
A11Y_LEARN_MORE_LINK +
"?utm_source=devtools&utm_medium=a11y-panel-description",
learnMoreStringKey: "accessibility.learnMore",
l10n: L10N,
messageStringKey: "accessibility.description.general.p1",
}),
p({}, L10N.getStr("accessibility.enable.disabledTitle"))
)
)
);
}
// Exports from this module
exports.Description = Description;
|