mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-04 07:40:42 +00:00
68 lines
2.0 KiB
JavaScript
68 lines
2.0 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 */
|
|
/* globals DebuggerClient, DebuggerServer, Telemetry */
|
|
|
|
"use strict";
|
|
|
|
const { loader } = Components.utils.import(
|
|
"resource://devtools/shared/Loader.jsm", {});
|
|
const { BrowserLoader } = Components.utils.import(
|
|
"resource://devtools/client/shared/browser-loader.js", {});
|
|
|
|
loader.lazyRequireGetter(this, "DebuggerClient",
|
|
"devtools/shared/client/main", true);
|
|
loader.lazyRequireGetter(this, "DebuggerServer",
|
|
"devtools/server/main", true);
|
|
loader.lazyRequireGetter(this, "Telemetry",
|
|
"devtools/client/shared/telemetry");
|
|
|
|
const { require } = BrowserLoader({
|
|
baseURI: "resource://devtools/client/aboutdebugging/",
|
|
window
|
|
});
|
|
|
|
const { createFactory } = require("devtools/client/shared/vendor/react");
|
|
const { render, unmountComponentAtNode } = require("devtools/client/shared/vendor/react-dom");
|
|
|
|
const AboutDebuggingApp = createFactory(require("./components/aboutdebugging"));
|
|
|
|
var AboutDebugging = {
|
|
init() {
|
|
if (!DebuggerServer.initialized) {
|
|
DebuggerServer.init();
|
|
}
|
|
DebuggerServer.allowChromeProcess = true;
|
|
// We want a full featured server for about:debugging. Especially the
|
|
// "browser actors" like addons.
|
|
DebuggerServer.registerActors({ root: true, browser: true, tab: true });
|
|
|
|
this.client = new DebuggerClient(DebuggerServer.connectPipe());
|
|
|
|
this.client.connect().then(() => {
|
|
let client = this.client;
|
|
let telemetry = new Telemetry();
|
|
|
|
render(AboutDebuggingApp({ client, telemetry }),
|
|
document.querySelector("#body"));
|
|
});
|
|
},
|
|
|
|
destroy() {
|
|
unmountComponentAtNode(document.querySelector("#body"));
|
|
|
|
this.client.close();
|
|
this.client = null;
|
|
},
|
|
};
|
|
|
|
window.addEventListener("DOMContentLoaded", function () {
|
|
AboutDebugging.init();
|
|
}, {once: true});
|
|
|
|
window.addEventListener("unload", function () {
|
|
AboutDebugging.destroy();
|
|
}, {once: true});
|