forked from mirrors/gecko-dev
		
	Merge `thunk-with-options` behavior directly into `thunk`, update `thunk` and `thunk-with-options` callsites and finally remove now unused `thunk-with-options` (as well as netmonitor's own `thunk`) Depends on D92888 Differential Revision: https://phabricator.services.mozilla.com/D93195
		
			
				
	
	
		
			108 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			108 lines
		
	
	
	
		
			2.9 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 {
 | 
						|
  combineReducers,
 | 
						|
  createStore,
 | 
						|
  applyMiddleware,
 | 
						|
} = require("devtools/client/shared/vendor/redux");
 | 
						|
const { thunk } = require("devtools/client/shared/redux/middleware/thunk");
 | 
						|
const {
 | 
						|
  waitUntilService,
 | 
						|
} = require("devtools/client/shared/redux/middleware/wait-service");
 | 
						|
const { task } = require("devtools/client/shared/redux/middleware/task");
 | 
						|
const { promise } = require("devtools/client/shared/redux/middleware/promise");
 | 
						|
const flags = require("devtools/shared/flags");
 | 
						|
 | 
						|
loader.lazyRequireGetter(
 | 
						|
  this,
 | 
						|
  "history",
 | 
						|
  "devtools/client/shared/redux/middleware/history",
 | 
						|
  true
 | 
						|
);
 | 
						|
loader.lazyRequireGetter(
 | 
						|
  this,
 | 
						|
  "log",
 | 
						|
  "devtools/client/shared/redux/middleware/log",
 | 
						|
  true
 | 
						|
);
 | 
						|
 | 
						|
/**
 | 
						|
 * 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:
 | 
						|
 *        - enableTaskMiddleware: if true, include the task middleware
 | 
						|
 *        - log: log all dispatched actions to console
 | 
						|
 *        - history: an array to store every action in. Should only be used in tests.
 | 
						|
 *        - middleware: array of middleware to be included in the redux store
 | 
						|
 *        - thunkOptions: object that will be spread within a {dispatch, getState} object,
 | 
						|
 *                        that will be passed in each thunk action.
 | 
						|
 */
 | 
						|
const createStoreWithMiddleware = (opts = {}) => {
 | 
						|
  const middleware = [];
 | 
						|
  if (opts.enableTaskMiddleware) {
 | 
						|
    middleware.push(task);
 | 
						|
  }
 | 
						|
  middleware.push(
 | 
						|
    thunk(opts.thunkOptions),
 | 
						|
    promise,
 | 
						|
 | 
						|
    // Order is important: services must go last as they always
 | 
						|
    // operate on "already transformed" actions. Actions going through
 | 
						|
    // them shouldn't have any special fields like promises, they
 | 
						|
    // should just be normal JSON objects.
 | 
						|
    waitUntilService
 | 
						|
  );
 | 
						|
 | 
						|
  if (opts.history) {
 | 
						|
    middleware.push(history(opts.history));
 | 
						|
  }
 | 
						|
 | 
						|
  if (opts.middleware) {
 | 
						|
    opts.middleware.forEach(fn => middleware.push(fn));
 | 
						|
  }
 | 
						|
 | 
						|
  if (opts.log) {
 | 
						|
    middleware.push(log);
 | 
						|
  }
 | 
						|
 | 
						|
  return applyMiddleware(...middleware)(createStore);
 | 
						|
};
 | 
						|
 | 
						|
module.exports = (
 | 
						|
  reducers,
 | 
						|
  {
 | 
						|
    shouldLog = false,
 | 
						|
    initialState = undefined,
 | 
						|
    thunkOptions,
 | 
						|
    enableTaskMiddleware = false,
 | 
						|
  } = {}
 | 
						|
) => {
 | 
						|
  const reducer =
 | 
						|
    typeof reducers === "function" ? reducers : combineReducers(reducers);
 | 
						|
 | 
						|
  let historyEntries;
 | 
						|
 | 
						|
  // If testing, store the action history in an array
 | 
						|
  // we'll later attach to the store
 | 
						|
  if (flags.testing) {
 | 
						|
    historyEntries = [];
 | 
						|
  }
 | 
						|
 | 
						|
  const store = createStoreWithMiddleware({
 | 
						|
    enableTaskMiddleware,
 | 
						|
    log: flags.testing && shouldLog,
 | 
						|
    history: historyEntries,
 | 
						|
    thunkOptions,
 | 
						|
  })(reducer, initialState);
 | 
						|
 | 
						|
  if (history) {
 | 
						|
    store.history = historyEntries;
 | 
						|
  }
 | 
						|
 | 
						|
  return store;
 | 
						|
};
 |