From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- devtools/client/webconsole/console-commands.js | 103 +++++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 devtools/client/webconsole/console-commands.js (limited to 'devtools/client/webconsole/console-commands.js') diff --git a/devtools/client/webconsole/console-commands.js b/devtools/client/webconsole/console-commands.js new file mode 100644 index 000000000..0bc9e8edb --- /dev/null +++ b/devtools/client/webconsole/console-commands.js @@ -0,0 +1,103 @@ +/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ +/* vim: set ft= javascript ts=2 et sw=2 tw=80: */ +/* 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 l10n = require("gcli/l10n"); +loader.lazyRequireGetter(this, "gDevTools", + "devtools/client/framework/devtools", true); + +exports.items = [ + { + item: "command", + runAt: "client", + name: "splitconsole", + hidden: true, + buttonId: "command-button-splitconsole", + buttonClass: "command-button command-button-invertable", + tooltipText: l10n.lookup("splitconsoleTooltip"), + isRemoteSafe: true, + state: { + isChecked: function (target) { + let toolbox = gDevTools.getToolbox(target); + return !!(toolbox && toolbox.splitConsole); + }, + onChange: function (target, changeHandler) { + // Register handlers for when a change event should be fired + // (which resets the checked state of the button). + let toolbox = gDevTools.getToolbox(target); + let callback = changeHandler.bind(null, "changed", { target: target }); + + if (!toolbox) { + return; + } + + toolbox.on("split-console", callback); + toolbox.once("destroyed", () => { + toolbox.off("split-console", callback); + }); + } + }, + exec: function (args, context) { + let target = context.environment.target; + let toolbox = gDevTools.getToolbox(target); + + if (!toolbox) { + return gDevTools.showToolbox(target, "inspector").then((newToolbox) => { + newToolbox.toggleSplitConsole(); + }); + } + return toolbox.toggleSplitConsole(); + } + }, + { + name: "console", + description: l10n.lookup("consoleDesc"), + manual: l10n.lookup("consoleManual") + }, + { + item: "command", + runAt: "client", + name: "console clear", + description: l10n.lookup("consoleclearDesc"), + exec: function (args, context) { + let toolbox = gDevTools.getToolbox(context.environment.target); + if (toolbox == null) { + return null; + } + + let panel = toolbox.getPanel("webconsole"); + if (panel == null) { + return null; + } + + let onceMessagesCleared = panel.hud.jsterm.once("messages-cleared"); + panel.hud.jsterm.clearOutput(); + return onceMessagesCleared; + } + }, + { + item: "command", + runAt: "client", + name: "console close", + description: l10n.lookup("consolecloseDesc"), + exec: function (args, context) { + // Don't return a value to GCLI + return gDevTools.closeToolbox(context.environment.target).then(() => {}); + } + }, + { + item: "command", + runAt: "client", + name: "console open", + description: l10n.lookup("consoleopenDesc"), + exec: function (args, context) { + const target = context.environment.target; + // Don't return a value to GCLI + return gDevTools.showToolbox(target, "webconsole").then(() => {}); + } + } +]; -- cgit v1.2.3