summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/src/utils/open-request-in-tab.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--devtools/client/netmonitor/src/utils/open-request-in-tab.js63
1 files changed, 63 insertions, 0 deletions
diff --git a/devtools/client/netmonitor/src/utils/open-request-in-tab.js b/devtools/client/netmonitor/src/utils/open-request-in-tab.js
new file mode 100644
index 0000000000..cb63da61ec
--- /dev/null
+++ b/devtools/client/netmonitor/src/utils/open-request-in-tab.js
@@ -0,0 +1,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/. */
+
+// This file is a chrome-API-free version of the module
+// devtools/client/netmonitor/src/utils/firefox/open-request-in-tab.js, so that
+// it can be used in Chrome-API-free applications, such as the Launchpad. But
+// because of this, it cannot take advantage of utilizing chrome APIs and should
+// implement the similar functionalities on its own.
+//
+// Please keep in mind that if the feature in this file has changed, don't
+// forget to also change that accordingly in
+// devtools/client/netmonitor/src/utils/firefox/open-request-in-tab.js.
+
+"use strict";
+
+loader.lazyRequireGetter(
+ this,
+ "openContentLink",
+ "resource://devtools/client/shared/link.js",
+ true
+);
+
+/**
+ * Opens given request in a new tab.
+ *
+ * For POST request supports application/x-www-form-urlencoded content-type only.
+ */
+function openRequestInTab(url, requestHeaders, requestPostData) {
+ if (!requestPostData) {
+ openContentLink(url, { relatedToCurrent: true });
+ } else {
+ openPostRequestInTabHelper({
+ url,
+ data: requestPostData.postData,
+ });
+ }
+}
+
+function openPostRequestInTabHelper({ url, data }) {
+ const form = document.createElement("form");
+ form.target = "_blank";
+ form.action = url;
+ form.method = "post";
+
+ if (data) {
+ for (const key in data) {
+ const input = document.createElement("input");
+ input.name = key;
+ input.value = data[key];
+ form.appendChild(input);
+ }
+ }
+
+ form.hidden = true;
+ document.body.appendChild(form);
+ form.submit();
+ form.remove();
+}
+
+module.exports = {
+ openRequestInTab,
+};