2015-09-28 14:33:20 +03:00
|
|
|
/* -*- 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/. */
|
|
|
|
|
2016-03-18 08:26:53 +03:00
|
|
|
"use strict";
|
2015-09-28 14:33:20 +03:00
|
|
|
|
2016-04-27 05:32:42 +03:00
|
|
|
define(function (require, exports, module) {
|
2016-03-21 15:45:06 +03:00
|
|
|
const { render } = require("devtools/client/shared/vendor/react-dom");
|
2017-04-12 09:33:37 +03:00
|
|
|
const { createFactories } = require("devtools/client/shared/react-utils");
|
2016-03-18 08:26:53 +03:00
|
|
|
const { MainTabbedArea } = createFactories(require("./components/main-tabbed-area"));
|
|
|
|
|
|
|
|
const json = document.getElementById("json");
|
|
|
|
const headers = document.getElementById("headers");
|
|
|
|
|
|
|
|
let jsonData;
|
2017-05-10 10:48:00 +03:00
|
|
|
let prettyURL;
|
2016-03-18 08:26:53 +03:00
|
|
|
|
|
|
|
try {
|
|
|
|
jsonData = JSON.parse(json.textContent);
|
|
|
|
} catch (err) {
|
|
|
|
jsonData = err + "";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Application state object.
|
|
|
|
let input = {
|
|
|
|
jsonText: json.textContent,
|
|
|
|
jsonPretty: null,
|
|
|
|
json: jsonData,
|
|
|
|
headers: JSON.parse(headers.textContent),
|
2016-07-15 10:59:21 +03:00
|
|
|
tabActive: 0,
|
2016-03-18 08:26:53 +03:00
|
|
|
prettified: false
|
|
|
|
};
|
|
|
|
|
|
|
|
json.remove();
|
|
|
|
headers.remove();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Application actions/commands. This list implements all commands
|
|
|
|
* available for the JSON viewer.
|
|
|
|
*/
|
|
|
|
input.actions = {
|
2017-01-12 01:21:56 +03:00
|
|
|
onCopyJson: function () {
|
2016-11-30 15:55:51 +03:00
|
|
|
dispatchEvent("copy", input.prettified ? input.jsonPretty : input.jsonText);
|
2016-03-18 08:26:53 +03:00
|
|
|
},
|
|
|
|
|
2017-01-12 01:21:56 +03:00
|
|
|
onSaveJson: function () {
|
2017-05-10 10:48:00 +03:00
|
|
|
if (input.prettified && !prettyURL) {
|
|
|
|
prettyURL = URL.createObjectURL(new window.Blob([input.jsonPretty]));
|
|
|
|
}
|
|
|
|
dispatchEvent("save", input.prettified ? prettyURL : null);
|
2016-03-18 08:26:53 +03:00
|
|
|
},
|
|
|
|
|
2017-01-12 01:21:56 +03:00
|
|
|
onCopyHeaders: function () {
|
2016-11-30 15:55:51 +03:00
|
|
|
dispatchEvent("copy-headers", input.headers);
|
2016-03-18 08:26:53 +03:00
|
|
|
},
|
|
|
|
|
2017-01-12 01:21:56 +03:00
|
|
|
onSearch: function (value) {
|
2016-03-18 08:26:53 +03:00
|
|
|
theApp.setState({searchFilter: value});
|
|
|
|
},
|
|
|
|
|
2017-01-12 01:21:56 +03:00
|
|
|
onPrettify: function (data) {
|
2016-03-18 08:26:53 +03:00
|
|
|
if (input.prettified) {
|
|
|
|
theApp.setState({jsonText: input.jsonText});
|
|
|
|
} else {
|
|
|
|
if (!input.jsonPretty) {
|
|
|
|
input.jsonPretty = JSON.stringify(jsonData, null, " ");
|
|
|
|
}
|
|
|
|
theApp.setState({jsonText: input.jsonPretty});
|
2015-09-28 14:33:20 +03:00
|
|
|
}
|
2016-03-18 08:26:53 +03:00
|
|
|
|
|
|
|
input.prettified = !input.prettified;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2016-11-30 15:55:51 +03:00
|
|
|
/**
|
|
|
|
* Helper for dispatching an event. It's handled in chrome scope.
|
|
|
|
*
|
|
|
|
* @param {String} type Event detail type
|
|
|
|
* @param {Object} value Event detail value
|
|
|
|
*/
|
|
|
|
function dispatchEvent(type, value) {
|
|
|
|
let data = {
|
|
|
|
detail: {
|
|
|
|
type,
|
|
|
|
value,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let contentMessageEvent = new CustomEvent("contentMessage", data);
|
|
|
|
window.dispatchEvent(contentMessageEvent);
|
|
|
|
}
|
|
|
|
|
2016-03-18 08:26:53 +03:00
|
|
|
/**
|
|
|
|
* Render the main application component. It's the main tab bar displayed
|
|
|
|
* at the top of the window. This component also represents ReacJS root.
|
|
|
|
*/
|
|
|
|
let content = document.getElementById("content");
|
2016-03-21 15:45:06 +03:00
|
|
|
let theApp = render(MainTabbedArea(input), content);
|
2016-03-18 08:26:53 +03:00
|
|
|
|
|
|
|
// Send notification event to the window. Can be useful for
|
|
|
|
// tests as well as extensions.
|
|
|
|
let event = new CustomEvent("JSONViewInitialized", {});
|
|
|
|
window.jsonViewInitialized = true;
|
|
|
|
window.dispatchEvent(event);
|
2015-09-28 14:33:20 +03:00
|
|
|
});
|