summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/src/actions/context-menus/outline.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/debugger/src/actions/context-menus/outline.js')
-rw-r--r--devtools/client/debugger/src/actions/context-menus/outline.js54
1 files changed, 54 insertions, 0 deletions
diff --git a/devtools/client/debugger/src/actions/context-menus/outline.js b/devtools/client/debugger/src/actions/context-menus/outline.js
new file mode 100644
index 0000000000..4ba0fe8f6f
--- /dev/null
+++ b/devtools/client/debugger/src/actions/context-menus/outline.js
@@ -0,0 +1,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);
+ };
+}