diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /devtools/client/jsonview/viewer-config.js | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devtools/client/jsonview/viewer-config.js')
-rw-r--r-- | devtools/client/jsonview/viewer-config.js | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/devtools/client/jsonview/viewer-config.js b/devtools/client/jsonview/viewer-config.js new file mode 100644 index 0000000000..85ff36d253 --- /dev/null +++ b/devtools/client/jsonview/viewer-config.js @@ -0,0 +1,59 @@ +/* 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/. */ +/* global requirejs */ + +"use strict"; + +// Send readyState change notification event to the window. It's useful for tests. +JSONView.readyState = "loading"; +window.dispatchEvent(new CustomEvent("AppReadyStateChange")); + +// Services is required in the Reps bundle but can't be loaded in the json-viewer. +// Since it's only used for the ObjectInspector, that the json-viewer does not use, we +// can mock it. The mock should be removed when we un-bundle reps, (i.e. land individual +// files instead of a big bundle). +define("ServicesMock", () => ({ appinfo: {} })); + +/** + * RequireJS configuration for JSON Viewer. + * + * ReactJS library is shared among DevTools. The minified (production) version + * of the library is always available, and is used by default. + * + * In order to use the developer version you need to specify the following + * in your .mozconfig (see also bug 1181646): + * ac_add_options --enable-debug-js-modules + * + * React module ID is using exactly the same (relative) path as the rest + * of the code base, so it's consistent and modules can be easily reused. + */ +require.config({ + baseUrl: "resource://devtools-client-jsonview/", + paths: { + "devtools/client/jsonview": "resource://devtools-client-jsonview", + "devtools/client/shared": "resource://devtools-client-shared", + "devtools/shared": "resource://devtools/shared", + "devtools/client/shared/vendor/react": JSONView.debugJsModules + ? "resource://devtools-client-shared/vendor/react-dev" + : "resource://devtools-client-shared/vendor/react", + "devtools/client/shared/vendor/react-dom": JSONView.debugJsModules + ? "resource://devtools-client-shared/vendor/react-dom-dev" + : "resource://devtools-client-shared/vendor/react-dom", + "devtools/client/shared/vendor/react-prop-types": JSONView.debugJsModules + ? "resource://devtools-client-shared/vendor/react-prop-types-dev" + : "resource://devtools-client-shared/vendor/react-prop-types", + "devtools/client/shared/vendor/react-dom-test-utils": JSONView.debugJsModules + ? "resource://devtools-client-shared/vendor/react-dom-test-utils-dev" + : "resource://devtools-client-shared/vendor/react-dom-test-utils", + Services: "resource://devtools-client-shared/vendor/react-prop-types", + }, + map: { + "*": { + Services: "ServicesMock", + }, + }, +}); + +// Load the main panel module +requirejs(["json-viewer"]); |