/* This Source Code Form is subject to the terms of the Mozilla Public *License,v.2.0.IfacopyoftheMPLwasnotdistributedwiththis
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ "use strict";
/** *Thiscreatesadispatcherwithallthestandardmiddlewareinplace *thatallcoderequires.Itcanalsobeoptionallyconfiguredin *variousways,suchasloggingandrecording. * *@param{object}opts: *-enableTaskMiddleware:iftrue,includethetaskmiddleware *-log:logalldispatchedactionstoconsole *-middleware:arrayofmiddlewaretobeincludedinthereduxstore *-thunkOptions:objectthatwillbespreadwithina{dispatch,getState}object, *thatwillbepassedineachthunkaction.
*/ const createStoreWithMiddleware = (opts = {}) => { const middleware = [ // Ignore should be registered first to prevent any subsequent middle from running
ignore,
]; 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.middleware) {
opts.middleware.forEach(fn => middleware.push(fn));
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.