gecko-dev/devtools/client/webconsole/console-commands.js
J. Ryan Stinnett 30b2b7ce44 Bug 1271084 - Apply ESLint autofixes to ignored /devtools files. r=tromey
For simple rules like function spacing, we can auto-fix these across the code
base so they are followed in a consistent way.

To generate this patch, I ran:

./mach eslint devtools --no-ignore --fix

After this, I reverted any changes to third party files that we really do want
to ignore.

MozReview-Commit-ID: 6Q8BApkAW20
2016-05-18 12:49:23 -05:00

104 lines
3.0 KiB
JavaScript

/* -*- 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(() => {});
}
}
];