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
|
/* 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";
const {
createFactory,
PureComponent,
} = require("resource://devtools/client/shared/vendor/react.js");
const {
img,
li,
span,
} = require("resource://devtools/client/shared/vendor/react-dom-factories.js");
const PropTypes = require("resource://devtools/client/shared/vendor/react-prop-types.js");
const Actions = require("resource://devtools/client/application/src/actions/index.js");
const {
connect,
} = require("resource://devtools/client/shared/vendor/react-redux.js");
const FluentReact = require("resource://devtools/client/shared/vendor/fluent-react.js");
const Localized = createFactory(FluentReact.Localized);
const {
PAGE_TYPES,
} = require("resource://devtools/client/application/src/constants.js");
const Types = require("resource://devtools/client/application/src/types/index.js");
const ICONS = {
[PAGE_TYPES.MANIFEST]:
"chrome://devtools/skin/images/application-manifest.svg",
[PAGE_TYPES.SERVICE_WORKERS]:
"chrome://devtools/skin/images/debugging-workers.svg",
};
const LOCALIZATION_IDS = {
[PAGE_TYPES.MANIFEST]: "sidebar-item-manifest",
[PAGE_TYPES.SERVICE_WORKERS]: "sidebar-item-service-workers",
};
class SidebarItem extends PureComponent {
static get propTypes() {
return {
page: Types.page.isRequired,
isSelected: PropTypes.bool.isRequired,
// this prop is automatically injected via connect
dispatch: PropTypes.func.isRequired,
};
}
render() {
const { isSelected, page } = this.props;
return li(
{
className: `sidebar-item js-sidebar-${page} ${
isSelected ? "sidebar-item--selected" : ""
}`,
onClick: () => {
const { dispatch } = this.props;
dispatch(Actions.updateSelectedPage(page));
},
role: "link",
},
Localized(
{
id: LOCALIZATION_IDS[page],
attrs: {
alt: true,
title: true,
},
},
img({
src: ICONS[page],
className: "sidebar-item__icon",
})
),
Localized(
{
id: LOCALIZATION_IDS[page],
attrs: {
title: true,
},
},
span({ className: "devtools-ellipsis-text" })
)
);
}
}
const mapDispatchToProps = dispatch => ({ dispatch });
module.exports = connect(mapDispatchToProps)(SidebarItem);
|