mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 07:18:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
98
devtools/client/aboutdebugging/components/tabs/panel.js
Normal file
98
devtools/client/aboutdebugging/components/tabs/panel.js
Normal file
|
|
@ -0,0 +1,98 @@
|
|||
/* 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 { createClass, createFactory, DOM: dom, PropTypes } =
|
||||
require("devtools/client/shared/vendor/react");
|
||||
const Services = require("Services");
|
||||
|
||||
const PanelHeader = createFactory(require("../panel-header"));
|
||||
const TargetList = createFactory(require("../target-list"));
|
||||
const TabTarget = createFactory(require("./target"));
|
||||
|
||||
loader.lazyRequireGetter(this, "DebuggerClient",
|
||||
"devtools/shared/client/main", true);
|
||||
|
||||
const Strings = Services.strings.createBundle(
|
||||
"chrome://devtools/locale/aboutdebugging.properties");
|
||||
|
||||
module.exports = createClass({
|
||||
displayName: "TabsPanel",
|
||||
|
||||
propTypes: {
|
||||
client: PropTypes.instanceOf(DebuggerClient).isRequired,
|
||||
id: PropTypes.string.isRequired
|
||||
},
|
||||
|
||||
getInitialState() {
|
||||
return {
|
||||
tabs: []
|
||||
};
|
||||
},
|
||||
|
||||
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
|
||||
})
|
||||
));
|
||||
}
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue