forked from mirrors/gecko-dev
MozReview-Commit-ID: EQ5MSMrvdWW --HG-- extra : rebase_source : fb7427c518f7bf6c5e4abc079b6568ca73d0546c
105 lines
2.8 KiB
JavaScript
105 lines
2.8 KiB
JavaScript
/* 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/. */
|
|
|
|
/* eslint-env browser */
|
|
|
|
"use strict";
|
|
|
|
const { Component, createFactory } = require("devtools/client/shared/vendor/react");
|
|
const PropTypes = require("devtools/client/shared/vendor/react-prop-types");
|
|
const dom = require("devtools/client/shared/vendor/react-dom-factories");
|
|
const Services = require("Services");
|
|
|
|
const PanelHeader = createFactory(require("../PanelHeader"));
|
|
const TargetList = createFactory(require("../TargetList"));
|
|
const TabTarget = createFactory(require("./Target"));
|
|
|
|
loader.lazyRequireGetter(this, "DebuggerClient",
|
|
"devtools/shared/client/debugger-client", true);
|
|
|
|
const Strings = Services.strings.createBundle(
|
|
"chrome://devtools/locale/aboutdebugging.properties");
|
|
|
|
class TabsPanel extends Component {
|
|
static get propTypes() {
|
|
return {
|
|
client: PropTypes.instanceOf(DebuggerClient).isRequired,
|
|
id: PropTypes.string.isRequired
|
|
};
|
|
}
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
tabs: []
|
|
};
|
|
|
|
this.update = this.update.bind(this);
|
|
}
|
|
|
|
componentDidMount() {
|
|
let { client } = this.props;
|
|
client.addListener("tabListChanged", this.update);
|
|
this.update();
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
let { client } = this.props;
|
|
client.removeListener("tabListChanged", this.update);
|
|
}
|
|
|
|
update() {
|
|
this.props.client.mainRoot.listTabs().then(({ tabs }) => {
|
|
// Filter out closed tabs (represented as `null`).
|
|
tabs = tabs.filter(tab => !!tab);
|
|
tabs.forEach(tab => {
|
|
// FIXME Also try to fetch low-res favicon. But we should use actor
|
|
// support for this to get the high-res one (bug 1061654).
|
|
let url = new URL(tab.url);
|
|
if (url.protocol.startsWith("http")) {
|
|
let prePath = url.origin;
|
|
let idx = url.pathname.lastIndexOf("/");
|
|
if (idx === -1) {
|
|
prePath += url.pathname;
|
|
} else {
|
|
prePath += url.pathname.substr(0, idx);
|
|
}
|
|
tab.icon = prePath + "/favicon.ico";
|
|
} else {
|
|
tab.icon = "chrome://devtools/skin/images/globe.svg";
|
|
}
|
|
});
|
|
this.setState({ tabs });
|
|
});
|
|
}
|
|
|
|
render() {
|
|
let { client, id } = this.props;
|
|
let { tabs } = this.state;
|
|
|
|
return dom.div({
|
|
id: id + "-panel",
|
|
className: "panel",
|
|
role: "tabpanel",
|
|
"aria-labelledby": id + "-header"
|
|
},
|
|
PanelHeader({
|
|
id: id + "-header",
|
|
name: Strings.GetStringFromName("tabs")
|
|
}),
|
|
dom.div({},
|
|
TargetList({
|
|
client,
|
|
id: "tabs",
|
|
name: Strings.GetStringFromName("tabs"),
|
|
sort: false,
|
|
targetClass: TabTarget,
|
|
targets: tabs
|
|
})
|
|
));
|
|
}
|
|
}
|
|
|
|
module.exports = TabsPanel;
|