summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/actions/object.js
blob: c2b255bd4d7ad66a54c334a39663b76e84bcdf81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* 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";

loader.lazyServiceGetter(
  this,
  "clipboardHelper",
  "@mozilla.org/widget/clipboardhelper;1",
  "nsIClipboardHelper"
);

function storeAsGlobal(actor) {
  return async ({ commands, hud }) => {
    const evalString = `{ let i = 0;
      while (this.hasOwnProperty("temp" + i) && i < 1000) {
        i++;
      }
      this["temp" + i] = _self;
      "temp" + i;
    }`;

    const res = await commands.scriptCommand.execute(evalString, {
      selectedObjectActor: actor,
    });

    // Select the adhoc target in the console.
    if (hud.toolbox) {
      const objectFront = commands.client.getFrontByID(actor);
      if (objectFront) {
        const targetActorID = objectFront.targetFront?.actorID;
        if (targetActorID) {
          hud.toolbox.selectTarget(targetActorID);
        }
      }
    }

    hud.focusInput();
    hud.setInputValue(res.result);
  };
}

function copyMessageObject(actor, variableText) {
  return async ({ commands }) => {
    if (actor) {
      // The Debugger.Object of the OA will be bound to |_self| during evaluation.
      // See server/actors/webconsole/eval-with-debugger.js `evalWithDebugger`.
      const res = await commands.scriptCommand.execute("copy(_self)", {
        selectedObjectActor: actor,
      });

      clipboardHelper.copyString(res.helperResult.value);
    } else {
      clipboardHelper.copyString(variableText);
    }
  };
}

module.exports = {
  storeAsGlobal,
  copyMessageObject,
};