summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/src/actions/context-menus/outline.js
blob: 4ba0fe8f6f7145b378f2be1a8749289ab7723f7b (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
/* 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/>. */

import { showMenu } from "../../context-menu/menu";
import { copyToTheClipboard } from "../../utils/clipboard";
import { findFunctionText } from "../../utils/function";

import { flashLineRange } from "../../actions/ui";

import {
  getSelectedSource,
  getSelectedSourceTextContent,
} from "../../selectors/index";

export function showOutlineContextMenu(event, func, symbols) {
  return async ({ dispatch, getState }) => {
    const state = getState();

    const selectedSource = getSelectedSource(state);
    if (!selectedSource) {
      return;
    }
    const selectedSourceTextContent = getSelectedSourceTextContent(state);

    const sourceLine = func.location.start.line;
    const functionText = findFunctionText(
      sourceLine,
      selectedSource,
      selectedSourceTextContent,
      symbols
    );

    const copyFunctionItem = {
      id: "node-menu-copy-function",
      label: L10N.getStr("copyFunction.label"),
      accesskey: L10N.getStr("copyFunction.accesskey"),
      disabled: !functionText,
      click: () => {
        dispatch(
          flashLineRange({
            start: sourceLine,
            end: func.location.end.line,
            sourceId: selectedSource.id,
          })
        );
        return copyToTheClipboard(functionText);
      },
    };

    const items = [copyFunctionItem];
    showMenu(event, items);
  };
}