Move major DevTools files to new directories using the following steps: hg mv browser/devtools devtools/client hg mv toolkit/devtools/server devtools/server hg mv toolkit/devtools devtools/shared No other changes are made.
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
/* 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/. */
|
|
"use strict";
|
|
|
|
const { createStore, applyMiddleware } = require("devtools/shared/vendor/redux");
|
|
const { thunk } = require("./middleware/thunk");
|
|
const { waitUntilService } = require("./middleware/wait-service");
|
|
const { log } = require("./middleware/log");
|
|
|
|
/**
|
|
* This creates a dispatcher with all the standard middleware in place
|
|
* that all code requires. It can also be optionally configured in
|
|
* various ways, such as logging and recording.
|
|
*
|
|
* @param {object} opts - boolean configuration flags
|
|
* - log: log all dispatched actions to console
|
|
* - middleware: array of middleware to be included in the redux store
|
|
*/
|
|
module.exports = (opts={}) => {
|
|
const middleware = [
|
|
thunk,
|
|
waitUntilService
|
|
];
|
|
|
|
if (opts.log) {
|
|
middleware.push(log);
|
|
}
|
|
|
|
if (opts.middleware) {
|
|
opts.middleware.forEach(fn => middleware.push(fn));
|
|
}
|
|
|
|
return applyMiddleware(...middleware)(createStore);
|
|
}
|