/* 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);