1755 lines
68 KiB
JavaScript
1755 lines
68 KiB
JavaScript
var __defProp = Object.defineProperty;
|
|
var __defProps = Object.defineProperties;
|
|
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
var __spreadValues = (a, b) => {
|
|
for (var prop in b || (b = {}))
|
|
if (__hasOwnProp.call(b, prop))
|
|
__defNormalProp(a, prop, b[prop]);
|
|
if (__getOwnPropSymbols)
|
|
for (var prop of __getOwnPropSymbols(b)) {
|
|
if (__propIsEnum.call(b, prop))
|
|
__defNormalProp(a, prop, b[prop]);
|
|
}
|
|
return a;
|
|
};
|
|
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
// src/index.ts
|
|
import { enableES5 } from "immer";
|
|
export * from "redux";
|
|
import { default as default2, current as current2, freeze, original, isDraft as isDraft4 } from "immer";
|
|
import { createSelector as createSelector2 } from "reselect";
|
|
// src/createDraftSafeSelector.ts
|
|
import { current, isDraft } from "immer";
|
|
import { createSelector } from "reselect";
|
|
var createDraftSafeSelector = (...args) => {
|
|
const selector = createSelector(...args);
|
|
const wrappedSelector = (value, ...rest) => selector(isDraft(value) ? current(value) : value, ...rest);
|
|
return wrappedSelector;
|
|
};
|
|
// src/configureStore.ts
|
|
import { createStore, compose as compose2, applyMiddleware, combineReducers } from "redux";
|
|
// src/devtoolsExtension.ts
|
|
import { compose } from "redux";
|
|
var composeWithDevTools = typeof window !== "undefined" && window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ ? window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ : function () {
|
|
if (arguments.length === 0)
|
|
return void 0;
|
|
if (typeof arguments[0] === "object")
|
|
return compose;
|
|
return compose.apply(null, arguments);
|
|
};
|
|
var devToolsEnhancer = typeof window !== "undefined" && window.__REDUX_DEVTOOLS_EXTENSION__ ? window.__REDUX_DEVTOOLS_EXTENSION__ : function () {
|
|
return function (noop2) {
|
|
return noop2;
|
|
};
|
|
};
|
|
// src/isPlainObject.ts
|
|
function isPlainObject(value) {
|
|
if (typeof value !== "object" || value === null)
|
|
return false;
|
|
let proto = Object.getPrototypeOf(value);
|
|
if (proto === null)
|
|
return true;
|
|
let baseProto = proto;
|
|
while (Object.getPrototypeOf(baseProto) !== null) {
|
|
baseProto = Object.getPrototypeOf(baseProto);
|
|
}
|
|
return proto === baseProto;
|
|
}
|
|
// src/getDefaultMiddleware.ts
|
|
import thunkMiddleware from "redux-thunk";
|
|
// src/tsHelpers.ts
|
|
var hasMatchFunction = (v) => {
|
|
return v && typeof v.match === "function";
|
|
};
|
|
// src/createAction.ts
|
|
function createAction(type, prepareAction) {
|
|
function actionCreator(...args) {
|
|
if (prepareAction) {
|
|
let prepared = prepareAction(...args);
|
|
if (!prepared) {
|
|
throw new Error("prepareAction did not return an object");
|
|
}
|
|
return __spreadValues(__spreadValues({
|
|
type,
|
|
payload: prepared.payload
|
|
}, "meta" in prepared && { meta: prepared.meta }), "error" in prepared && { error: prepared.error });
|
|
}
|
|
return { type, payload: args[0] };
|
|
}
|
|
actionCreator.toString = () => `${type}`;
|
|
actionCreator.type = type;
|
|
actionCreator.match = (action) => action.type === type;
|
|
return actionCreator;
|
|
}
|
|
function isAction(action) {
|
|
return isPlainObject(action) && "type" in action;
|
|
}
|
|
function isActionCreator(action) {
|
|
return typeof action === "function" && "type" in action && hasMatchFunction(action);
|
|
}
|
|
function isFSA(action) {
|
|
return isAction(action) && typeof action.type === "string" && Object.keys(action).every(isValidKey);
|
|
}
|
|
function isValidKey(key) {
|
|
return ["type", "payload", "error", "meta"].indexOf(key) > -1;
|
|
}
|
|
function getType(actionCreator) {
|
|
return `${actionCreator}`;
|
|
}
|
|
// src/actionCreatorInvariantMiddleware.ts
|
|
function getMessage(type) {
|
|
const splitType = type ? `${type}`.split("/") : [];
|
|
const actionName = splitType[splitType.length - 1] || "actionCreator";
|
|
return `Detected an action creator with type "${type || "unknown"}" being dispatched.
|
|
Make sure you're calling the action creator before dispatching, i.e. \`dispatch(${actionName}())\` instead of \`dispatch(${actionName})\`. This is necessary even if the action has no payload.`;
|
|
}
|
|
function createActionCreatorInvariantMiddleware(options = {}) {
|
|
if (false) {
|
|
return () => (next) => (action) => next(action);
|
|
}
|
|
const { isActionCreator: isActionCreator2 = isActionCreator } = options;
|
|
return () => (next) => (action) => {
|
|
if (isActionCreator2(action)) {
|
|
console.warn(getMessage(action.type));
|
|
}
|
|
return next(action);
|
|
};
|
|
}
|
|
// src/utils.ts
|
|
import createNextState, { isDraftable } from "immer";
|
|
function getTimeMeasureUtils(maxDelay, fnName) {
|
|
let elapsed = 0;
|
|
return {
|
|
measureTime(fn) {
|
|
const started = Date.now();
|
|
try {
|
|
return fn();
|
|
}
|
|
finally {
|
|
const finished = Date.now();
|
|
elapsed += finished - started;
|
|
}
|
|
},
|
|
warnIfExceeded() {
|
|
if (elapsed > maxDelay) {
|
|
console.warn(`${fnName} took ${elapsed}ms, which is more than the warning threshold of ${maxDelay}ms.
|
|
If your state or actions are very large, you may want to disable the middleware as it might cause too much of a slowdown in development mode. See https://redux-toolkit.js.org/api/getDefaultMiddleware for instructions.
|
|
It is disabled in production builds, so you don't need to worry about that.`);
|
|
}
|
|
}
|
|
};
|
|
}
|
|
var MiddlewareArray = class extends Array {
|
|
constructor(...args) {
|
|
super(...args);
|
|
Object.setPrototypeOf(this, MiddlewareArray.prototype);
|
|
}
|
|
static get [Symbol.species]() {
|
|
return MiddlewareArray;
|
|
}
|
|
concat(...arr) {
|
|
return super.concat.apply(this, arr);
|
|
}
|
|
prepend(...arr) {
|
|
if (arr.length === 1 && Array.isArray(arr[0])) {
|
|
return new MiddlewareArray(...arr[0].concat(this));
|
|
}
|
|
return new MiddlewareArray(...arr.concat(this));
|
|
}
|
|
};
|
|
var EnhancerArray = class extends Array {
|
|
constructor(...args) {
|
|
super(...args);
|
|
Object.setPrototypeOf(this, EnhancerArray.prototype);
|
|
}
|
|
static get [Symbol.species]() {
|
|
return EnhancerArray;
|
|
}
|
|
concat(...arr) {
|
|
return super.concat.apply(this, arr);
|
|
}
|
|
prepend(...arr) {
|
|
if (arr.length === 1 && Array.isArray(arr[0])) {
|
|
return new EnhancerArray(...arr[0].concat(this));
|
|
}
|
|
return new EnhancerArray(...arr.concat(this));
|
|
}
|
|
};
|
|
function freezeDraftable(val) {
|
|
return isDraftable(val) ? createNextState(val, () => {
|
|
}) : val;
|
|
}
|
|
// src/immutableStateInvariantMiddleware.ts
|
|
var isProduction = false;
|
|
var prefix = "Invariant failed";
|
|
function invariant(condition, message) {
|
|
if (condition) {
|
|
return;
|
|
}
|
|
if (isProduction) {
|
|
throw new Error(prefix);
|
|
}
|
|
throw new Error(`${prefix}: ${message || ""}`);
|
|
}
|
|
function stringify(obj, serializer, indent, decycler) {
|
|
return JSON.stringify(obj, getSerialize(serializer, decycler), indent);
|
|
}
|
|
function getSerialize(serializer, decycler) {
|
|
let stack = [], keys = [];
|
|
if (!decycler)
|
|
decycler = function (_, value) {
|
|
if (stack[0] === value)
|
|
return "[Circular ~]";
|
|
return "[Circular ~." + keys.slice(0, stack.indexOf(value)).join(".") + "]";
|
|
};
|
|
return function (key, value) {
|
|
if (stack.length > 0) {
|
|
var thisPos = stack.indexOf(this);
|
|
~thisPos ? stack.splice(thisPos + 1) : stack.push(this);
|
|
~thisPos ? keys.splice(thisPos, Infinity, key) : keys.push(key);
|
|
if (~stack.indexOf(value))
|
|
value = decycler.call(this, key, value);
|
|
}
|
|
else
|
|
stack.push(value);
|
|
return serializer == null ? value : serializer.call(this, key, value);
|
|
};
|
|
}
|
|
function isImmutableDefault(value) {
|
|
return typeof value !== "object" || value == null || Object.isFrozen(value);
|
|
}
|
|
function trackForMutations(isImmutable, ignorePaths, obj) {
|
|
const trackedProperties = trackProperties(isImmutable, ignorePaths, obj);
|
|
return {
|
|
detectMutations() {
|
|
return detectMutations(isImmutable, ignorePaths, trackedProperties, obj);
|
|
}
|
|
};
|
|
}
|
|
function trackProperties(isImmutable, ignorePaths = [], obj, path = "", checkedObjects = new Set()) {
|
|
const tracked = { value: obj };
|
|
if (!isImmutable(obj) && !checkedObjects.has(obj)) {
|
|
checkedObjects.add(obj);
|
|
tracked.children = {};
|
|
for (const key in obj) {
|
|
const childPath = path ? path + "." + key : key;
|
|
if (ignorePaths.length && ignorePaths.indexOf(childPath) !== -1) {
|
|
continue;
|
|
}
|
|
tracked.children[key] = trackProperties(isImmutable, ignorePaths, obj[key], childPath);
|
|
}
|
|
}
|
|
return tracked;
|
|
}
|
|
function detectMutations(isImmutable, ignoredPaths = [], trackedProperty, obj, sameParentRef = false, path = "") {
|
|
const prevObj = trackedProperty ? trackedProperty.value : void 0;
|
|
const sameRef = prevObj === obj;
|
|
if (sameParentRef && !sameRef && !Number.isNaN(obj)) {
|
|
return { wasMutated: true, path };
|
|
}
|
|
if (isImmutable(prevObj) || isImmutable(obj)) {
|
|
return { wasMutated: false };
|
|
}
|
|
const keysToDetect = {};
|
|
for (let key in trackedProperty.children) {
|
|
keysToDetect[key] = true;
|
|
}
|
|
for (let key in obj) {
|
|
keysToDetect[key] = true;
|
|
}
|
|
const hasIgnoredPaths = ignoredPaths.length > 0;
|
|
for (let key in keysToDetect) {
|
|
const nestedPath = path ? path + "." + key : key;
|
|
if (hasIgnoredPaths) {
|
|
const hasMatches = ignoredPaths.some((ignored) => {
|
|
if (ignored instanceof RegExp) {
|
|
return ignored.test(nestedPath);
|
|
}
|
|
return nestedPath === ignored;
|
|
});
|
|
if (hasMatches) {
|
|
continue;
|
|
}
|
|
}
|
|
const result = detectMutations(isImmutable, ignoredPaths, trackedProperty.children[key], obj[key], sameRef, nestedPath);
|
|
if (result.wasMutated) {
|
|
return result;
|
|
}
|
|
}
|
|
return { wasMutated: false };
|
|
}
|
|
function createImmutableStateInvariantMiddleware(options = {}) {
|
|
if (false) {
|
|
return () => (next) => (action) => next(action);
|
|
}
|
|
let { isImmutable = isImmutableDefault, ignoredPaths, warnAfter = 32, ignore } = options;
|
|
ignoredPaths = ignoredPaths || ignore;
|
|
const track = trackForMutations.bind(null, isImmutable, ignoredPaths);
|
|
return ({ getState }) => {
|
|
let state = getState();
|
|
let tracker = track(state);
|
|
let result;
|
|
return (next) => (action) => {
|
|
const measureUtils = getTimeMeasureUtils(warnAfter, "ImmutableStateInvariantMiddleware");
|
|
measureUtils.measureTime(() => {
|
|
state = getState();
|
|
result = tracker.detectMutations();
|
|
tracker = track(state);
|
|
invariant(!result.wasMutated, `A state mutation was detected between dispatches, in the path '${result.path || ""}'. This may cause incorrect behavior. (https://redux.js.org/style-guide/style-guide#do-not-mutate-state)`);
|
|
});
|
|
const dispatchedAction = next(action);
|
|
measureUtils.measureTime(() => {
|
|
state = getState();
|
|
result = tracker.detectMutations();
|
|
tracker = track(state);
|
|
result.wasMutated && invariant(!result.wasMutated, `A state mutation was detected inside a dispatch, in the path: ${result.path || ""}. Take a look at the reducer(s) handling the action ${stringify(action)}. (https://redux.js.org/style-guide/style-guide#do-not-mutate-state)`);
|
|
});
|
|
measureUtils.warnIfExceeded();
|
|
return dispatchedAction;
|
|
};
|
|
};
|
|
}
|
|
// src/serializableStateInvariantMiddleware.ts
|
|
function isPlain(val) {
|
|
const type = typeof val;
|
|
return val == null || type === "string" || type === "boolean" || type === "number" || Array.isArray(val) || isPlainObject(val);
|
|
}
|
|
function findNonSerializableValue(value, path = "", isSerializable = isPlain, getEntries, ignoredPaths = [], cache) {
|
|
let foundNestedSerializable;
|
|
if (!isSerializable(value)) {
|
|
return {
|
|
keyPath: path || "<root>",
|
|
value
|
|
};
|
|
}
|
|
if (typeof value !== "object" || value === null) {
|
|
return false;
|
|
}
|
|
if (cache == null ? void 0 : cache.has(value))
|
|
return false;
|
|
const entries = getEntries != null ? getEntries(value) : Object.entries(value);
|
|
const hasIgnoredPaths = ignoredPaths.length > 0;
|
|
for (const [key, nestedValue] of entries) {
|
|
const nestedPath = path ? path + "." + key : key;
|
|
if (hasIgnoredPaths) {
|
|
const hasMatches = ignoredPaths.some((ignored) => {
|
|
if (ignored instanceof RegExp) {
|
|
return ignored.test(nestedPath);
|
|
}
|
|
return nestedPath === ignored;
|
|
});
|
|
if (hasMatches) {
|
|
continue;
|
|
}
|
|
}
|
|
if (!isSerializable(nestedValue)) {
|
|
return {
|
|
keyPath: nestedPath,
|
|
value: nestedValue
|
|
};
|
|
}
|
|
if (typeof nestedValue === "object") {
|
|
foundNestedSerializable = findNonSerializableValue(nestedValue, nestedPath, isSerializable, getEntries, ignoredPaths, cache);
|
|
if (foundNestedSerializable) {
|
|
return foundNestedSerializable;
|
|
}
|
|
}
|
|
}
|
|
if (cache && isNestedFrozen(value))
|
|
cache.add(value);
|
|
return false;
|
|
}
|
|
function isNestedFrozen(value) {
|
|
if (!Object.isFrozen(value))
|
|
return false;
|
|
for (const nestedValue of Object.values(value)) {
|
|
if (typeof nestedValue !== "object" || nestedValue === null)
|
|
continue;
|
|
if (!isNestedFrozen(nestedValue))
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
function createSerializableStateInvariantMiddleware(options = {}) {
|
|
if (false) {
|
|
return () => (next) => (action) => next(action);
|
|
}
|
|
const { isSerializable = isPlain, getEntries, ignoredActions = [], ignoredActionPaths = ["meta.arg", "meta.baseQueryMeta"], ignoredPaths = [], warnAfter = 32, ignoreState = false, ignoreActions = false, disableCache = false } = options;
|
|
const cache = !disableCache && WeakSet ? new WeakSet() : void 0;
|
|
return (storeAPI) => (next) => (action) => {
|
|
const result = next(action);
|
|
const measureUtils = getTimeMeasureUtils(warnAfter, "SerializableStateInvariantMiddleware");
|
|
if (!ignoreActions && !(ignoredActions.length && ignoredActions.indexOf(action.type) !== -1)) {
|
|
measureUtils.measureTime(() => {
|
|
const foundActionNonSerializableValue = findNonSerializableValue(action, "", isSerializable, getEntries, ignoredActionPaths, cache);
|
|
if (foundActionNonSerializableValue) {
|
|
const { keyPath, value } = foundActionNonSerializableValue;
|
|
console.error(`A non-serializable value was detected in an action, in the path: \`${keyPath}\`. Value:`, value, "\nTake a look at the logic that dispatched this action: ", action, "\n(See https://redux.js.org/faq/actions#why-should-type-be-a-string-or-at-least-serializable-why-should-my-action-types-be-constants)", "\n(To allow non-serializable values see: https://redux-toolkit.js.org/usage/usage-guide#working-with-non-serializable-data)");
|
|
}
|
|
});
|
|
}
|
|
if (!ignoreState) {
|
|
measureUtils.measureTime(() => {
|
|
const state = storeAPI.getState();
|
|
const foundStateNonSerializableValue = findNonSerializableValue(state, "", isSerializable, getEntries, ignoredPaths, cache);
|
|
if (foundStateNonSerializableValue) {
|
|
const { keyPath, value } = foundStateNonSerializableValue;
|
|
console.error(`A non-serializable value was detected in the state, in the path: \`${keyPath}\`. Value:`, value, `
|
|
Take a look at the reducer(s) handling this action type: ${action.type}.
|
|
(See https://redux.js.org/faq/organizing-state#can-i-put-functions-promises-or-other-non-serializable-items-in-my-store-state)`);
|
|
}
|
|
});
|
|
measureUtils.warnIfExceeded();
|
|
}
|
|
return result;
|
|
};
|
|
}
|
|
// src/getDefaultMiddleware.ts
|
|
function isBoolean(x) {
|
|
return typeof x === "boolean";
|
|
}
|
|
function curryGetDefaultMiddleware() {
|
|
return function curriedGetDefaultMiddleware(options) {
|
|
return getDefaultMiddleware(options);
|
|
};
|
|
}
|
|
function getDefaultMiddleware(options = {}) {
|
|
const { thunk = true, immutableCheck = true, serializableCheck = true, actionCreatorCheck = true } = options;
|
|
let middlewareArray = new MiddlewareArray();
|
|
if (thunk) {
|
|
if (isBoolean(thunk)) {
|
|
middlewareArray.push(thunkMiddleware);
|
|
}
|
|
else {
|
|
middlewareArray.push(thunkMiddleware.withExtraArgument(thunk.extraArgument));
|
|
}
|
|
}
|
|
if (true) {
|
|
if (immutableCheck) {
|
|
let immutableOptions = {};
|
|
if (!isBoolean(immutableCheck)) {
|
|
immutableOptions = immutableCheck;
|
|
}
|
|
middlewareArray.unshift(createImmutableStateInvariantMiddleware(immutableOptions));
|
|
}
|
|
if (serializableCheck) {
|
|
let serializableOptions = {};
|
|
if (!isBoolean(serializableCheck)) {
|
|
serializableOptions = serializableCheck;
|
|
}
|
|
middlewareArray.push(createSerializableStateInvariantMiddleware(serializableOptions));
|
|
}
|
|
if (actionCreatorCheck) {
|
|
let actionCreatorOptions = {};
|
|
if (!isBoolean(actionCreatorCheck)) {
|
|
actionCreatorOptions = actionCreatorCheck;
|
|
}
|
|
middlewareArray.unshift(createActionCreatorInvariantMiddleware(actionCreatorOptions));
|
|
}
|
|
}
|
|
return middlewareArray;
|
|
}
|
|
// src/configureStore.ts
|
|
var IS_PRODUCTION = false;
|
|
function configureStore(options) {
|
|
const curriedGetDefaultMiddleware = curryGetDefaultMiddleware();
|
|
const { reducer = void 0, middleware = curriedGetDefaultMiddleware(), devTools = true, preloadedState = void 0, enhancers = void 0 } = options || {};
|
|
let rootReducer;
|
|
if (typeof reducer === "function") {
|
|
rootReducer = reducer;
|
|
}
|
|
else if (isPlainObject(reducer)) {
|
|
rootReducer = combineReducers(reducer);
|
|
}
|
|
else {
|
|
throw new Error('"reducer" is a required argument, and must be a function or an object of functions that can be passed to combineReducers');
|
|
}
|
|
let finalMiddleware = middleware;
|
|
if (typeof finalMiddleware === "function") {
|
|
finalMiddleware = finalMiddleware(curriedGetDefaultMiddleware);
|
|
if (!IS_PRODUCTION && !Array.isArray(finalMiddleware)) {
|
|
throw new Error("when using a middleware builder function, an array of middleware must be returned");
|
|
}
|
|
}
|
|
if (!IS_PRODUCTION && finalMiddleware.some((item) => typeof item !== "function")) {
|
|
throw new Error("each middleware provided to configureStore must be a function");
|
|
}
|
|
const middlewareEnhancer = applyMiddleware(...finalMiddleware);
|
|
let finalCompose = compose2;
|
|
if (devTools) {
|
|
finalCompose = composeWithDevTools(__spreadValues({
|
|
trace: !IS_PRODUCTION
|
|
}, typeof devTools === "object" && devTools));
|
|
}
|
|
const defaultEnhancers = new EnhancerArray(middlewareEnhancer);
|
|
let storeEnhancers = defaultEnhancers;
|
|
if (Array.isArray(enhancers)) {
|
|
storeEnhancers = [middlewareEnhancer, ...enhancers];
|
|
}
|
|
else if (typeof enhancers === "function") {
|
|
storeEnhancers = enhancers(defaultEnhancers);
|
|
}
|
|
const composedEnhancer = finalCompose(...storeEnhancers);
|
|
return createStore(rootReducer, preloadedState, composedEnhancer);
|
|
}
|
|
// src/createReducer.ts
|
|
import createNextState2, { isDraft as isDraft2, isDraftable as isDraftable2 } from "immer";
|
|
// src/mapBuilders.ts
|
|
function executeReducerBuilderCallback(builderCallback) {
|
|
const actionsMap = {};
|
|
const actionMatchers = [];
|
|
let defaultCaseReducer;
|
|
const builder = {
|
|
addCase(typeOrActionCreator, reducer) {
|
|
if (true) {
|
|
if (actionMatchers.length > 0) {
|
|
throw new Error("`builder.addCase` should only be called before calling `builder.addMatcher`");
|
|
}
|
|
if (defaultCaseReducer) {
|
|
throw new Error("`builder.addCase` should only be called before calling `builder.addDefaultCase`");
|
|
}
|
|
}
|
|
const type = typeof typeOrActionCreator === "string" ? typeOrActionCreator : typeOrActionCreator.type;
|
|
if (!type) {
|
|
throw new Error("`builder.addCase` cannot be called with an empty action type");
|
|
}
|
|
if (type in actionsMap) {
|
|
throw new Error("`builder.addCase` cannot be called with two reducers for the same action type");
|
|
}
|
|
actionsMap[type] = reducer;
|
|
return builder;
|
|
},
|
|
addMatcher(matcher, reducer) {
|
|
if (true) {
|
|
if (defaultCaseReducer) {
|
|
throw new Error("`builder.addMatcher` should only be called before calling `builder.addDefaultCase`");
|
|
}
|
|
}
|
|
actionMatchers.push({ matcher, reducer });
|
|
return builder;
|
|
},
|
|
addDefaultCase(reducer) {
|
|
if (true) {
|
|
if (defaultCaseReducer) {
|
|
throw new Error("`builder.addDefaultCase` can only be called once");
|
|
}
|
|
}
|
|
defaultCaseReducer = reducer;
|
|
return builder;
|
|
}
|
|
};
|
|
builderCallback(builder);
|
|
return [actionsMap, actionMatchers, defaultCaseReducer];
|
|
}
|
|
// src/createReducer.ts
|
|
function isStateFunction(x) {
|
|
return typeof x === "function";
|
|
}
|
|
var hasWarnedAboutObjectNotation = false;
|
|
function createReducer(initialState, mapOrBuilderCallback, actionMatchers = [], defaultCaseReducer) {
|
|
if (true) {
|
|
if (typeof mapOrBuilderCallback === "object") {
|
|
if (!hasWarnedAboutObjectNotation) {
|
|
hasWarnedAboutObjectNotation = true;
|
|
console.warn("The object notation for `createReducer` is deprecated, and will be removed in RTK 2.0. Please use the 'builder callback' notation instead: https://redux-toolkit.js.org/api/createReducer");
|
|
}
|
|
}
|
|
}
|
|
let [actionsMap, finalActionMatchers, finalDefaultCaseReducer] = typeof mapOrBuilderCallback === "function" ? executeReducerBuilderCallback(mapOrBuilderCallback) : [mapOrBuilderCallback, actionMatchers, defaultCaseReducer];
|
|
let getInitialState;
|
|
if (isStateFunction(initialState)) {
|
|
getInitialState = () => freezeDraftable(initialState());
|
|
}
|
|
else {
|
|
const frozenInitialState = freezeDraftable(initialState);
|
|
getInitialState = () => frozenInitialState;
|
|
}
|
|
function reducer(state = getInitialState(), action) {
|
|
let caseReducers = [
|
|
actionsMap[action.type],
|
|
...finalActionMatchers.filter(({ matcher }) => matcher(action)).map(({ reducer: reducer2 }) => reducer2)
|
|
];
|
|
if (caseReducers.filter((cr) => !!cr).length === 0) {
|
|
caseReducers = [finalDefaultCaseReducer];
|
|
}
|
|
return caseReducers.reduce((previousState, caseReducer) => {
|
|
if (caseReducer) {
|
|
if (isDraft2(previousState)) {
|
|
const draft = previousState;
|
|
const result = caseReducer(draft, action);
|
|
if (result === void 0) {
|
|
return previousState;
|
|
}
|
|
return result;
|
|
}
|
|
else if (!isDraftable2(previousState)) {
|
|
const result = caseReducer(previousState, action);
|
|
if (result === void 0) {
|
|
if (previousState === null) {
|
|
return previousState;
|
|
}
|
|
throw Error("A case reducer on a non-draftable value must not return undefined");
|
|
}
|
|
return result;
|
|
}
|
|
else {
|
|
return createNextState2(previousState, (draft) => {
|
|
return caseReducer(draft, action);
|
|
});
|
|
}
|
|
}
|
|
return previousState;
|
|
}, state);
|
|
}
|
|
reducer.getInitialState = getInitialState;
|
|
return reducer;
|
|
}
|
|
// src/createSlice.ts
|
|
var hasWarnedAboutObjectNotation2 = false;
|
|
function getType2(slice, actionKey) {
|
|
return `${slice}/${actionKey}`;
|
|
}
|
|
function createSlice(options) {
|
|
const { name } = options;
|
|
if (!name) {
|
|
throw new Error("`name` is a required option for createSlice");
|
|
}
|
|
if (typeof process !== "undefined" && true) {
|
|
if (options.initialState === void 0) {
|
|
console.error("You must provide an `initialState` value that is not `undefined`. You may have misspelled `initialState`");
|
|
}
|
|
}
|
|
const initialState = typeof options.initialState == "function" ? options.initialState : freezeDraftable(options.initialState);
|
|
const reducers = options.reducers || {};
|
|
const reducerNames = Object.keys(reducers);
|
|
const sliceCaseReducersByName = {};
|
|
const sliceCaseReducersByType = {};
|
|
const actionCreators = {};
|
|
reducerNames.forEach((reducerName) => {
|
|
const maybeReducerWithPrepare = reducers[reducerName];
|
|
const type = getType2(name, reducerName);
|
|
let caseReducer;
|
|
let prepareCallback;
|
|
if ("reducer" in maybeReducerWithPrepare) {
|
|
caseReducer = maybeReducerWithPrepare.reducer;
|
|
prepareCallback = maybeReducerWithPrepare.prepare;
|
|
}
|
|
else {
|
|
caseReducer = maybeReducerWithPrepare;
|
|
}
|
|
sliceCaseReducersByName[reducerName] = caseReducer;
|
|
sliceCaseReducersByType[type] = caseReducer;
|
|
actionCreators[reducerName] = prepareCallback ? createAction(type, prepareCallback) : createAction(type);
|
|
});
|
|
function buildReducer() {
|
|
if (true) {
|
|
if (typeof options.extraReducers === "object") {
|
|
if (!hasWarnedAboutObjectNotation2) {
|
|
hasWarnedAboutObjectNotation2 = true;
|
|
console.warn("The object notation for `createSlice.extraReducers` is deprecated, and will be removed in RTK 2.0. Please use the 'builder callback' notation instead: https://redux-toolkit.js.org/api/createSlice");
|
|
}
|
|
}
|
|
}
|
|
const [extraReducers = {}, actionMatchers = [], defaultCaseReducer = void 0] = typeof options.extraReducers === "function" ? executeReducerBuilderCallback(options.extraReducers) : [options.extraReducers];
|
|
const finalCaseReducers = __spreadValues(__spreadValues({}, extraReducers), sliceCaseReducersByType);
|
|
return createReducer(initialState, (builder) => {
|
|
for (let key in finalCaseReducers) {
|
|
builder.addCase(key, finalCaseReducers[key]);
|
|
}
|
|
for (let m of actionMatchers) {
|
|
builder.addMatcher(m.matcher, m.reducer);
|
|
}
|
|
if (defaultCaseReducer) {
|
|
builder.addDefaultCase(defaultCaseReducer);
|
|
}
|
|
});
|
|
}
|
|
let _reducer;
|
|
return {
|
|
name,
|
|
reducer(state, action) {
|
|
if (!_reducer)
|
|
_reducer = buildReducer();
|
|
return _reducer(state, action);
|
|
},
|
|
actions: actionCreators,
|
|
caseReducers: sliceCaseReducersByName,
|
|
getInitialState() {
|
|
if (!_reducer)
|
|
_reducer = buildReducer();
|
|
return _reducer.getInitialState();
|
|
}
|
|
};
|
|
}
|
|
// src/entities/entity_state.ts
|
|
function getInitialEntityState() {
|
|
return {
|
|
ids: [],
|
|
entities: {}
|
|
};
|
|
}
|
|
function createInitialStateFactory() {
|
|
function getInitialState(additionalState = {}) {
|
|
return Object.assign(getInitialEntityState(), additionalState);
|
|
}
|
|
return { getInitialState };
|
|
}
|
|
// src/entities/state_selectors.ts
|
|
function createSelectorsFactory() {
|
|
function getSelectors(selectState) {
|
|
const selectIds = (state) => state.ids;
|
|
const selectEntities = (state) => state.entities;
|
|
const selectAll = createDraftSafeSelector(selectIds, selectEntities, (ids, entities) => ids.map((id) => entities[id]));
|
|
const selectId = (_, id) => id;
|
|
const selectById = (entities, id) => entities[id];
|
|
const selectTotal = createDraftSafeSelector(selectIds, (ids) => ids.length);
|
|
if (!selectState) {
|
|
return {
|
|
selectIds,
|
|
selectEntities,
|
|
selectAll,
|
|
selectTotal,
|
|
selectById: createDraftSafeSelector(selectEntities, selectId, selectById)
|
|
};
|
|
}
|
|
const selectGlobalizedEntities = createDraftSafeSelector(selectState, selectEntities);
|
|
return {
|
|
selectIds: createDraftSafeSelector(selectState, selectIds),
|
|
selectEntities: selectGlobalizedEntities,
|
|
selectAll: createDraftSafeSelector(selectState, selectAll),
|
|
selectTotal: createDraftSafeSelector(selectState, selectTotal),
|
|
selectById: createDraftSafeSelector(selectGlobalizedEntities, selectId, selectById)
|
|
};
|
|
}
|
|
return { getSelectors };
|
|
}
|
|
// src/entities/state_adapter.ts
|
|
import createNextState3, { isDraft as isDraft3 } from "immer";
|
|
function createSingleArgumentStateOperator(mutator) {
|
|
const operator = createStateOperator((_, state) => mutator(state));
|
|
return function operation(state) {
|
|
return operator(state, void 0);
|
|
};
|
|
}
|
|
function createStateOperator(mutator) {
|
|
return function operation(state, arg) {
|
|
function isPayloadActionArgument(arg2) {
|
|
return isFSA(arg2);
|
|
}
|
|
const runMutator = (draft) => {
|
|
if (isPayloadActionArgument(arg)) {
|
|
mutator(arg.payload, draft);
|
|
}
|
|
else {
|
|
mutator(arg, draft);
|
|
}
|
|
};
|
|
if (isDraft3(state)) {
|
|
runMutator(state);
|
|
return state;
|
|
}
|
|
else {
|
|
return createNextState3(state, runMutator);
|
|
}
|
|
};
|
|
}
|
|
// src/entities/utils.ts
|
|
function selectIdValue(entity, selectId) {
|
|
const key = selectId(entity);
|
|
if (key === void 0) {
|
|
console.warn("The entity passed to the `selectId` implementation returned undefined.", "You should probably provide your own `selectId` implementation.", "The entity that was passed:", entity, "The `selectId` implementation:", selectId.toString());
|
|
}
|
|
return key;
|
|
}
|
|
function ensureEntitiesArray(entities) {
|
|
if (!Array.isArray(entities)) {
|
|
entities = Object.values(entities);
|
|
}
|
|
return entities;
|
|
}
|
|
function splitAddedUpdatedEntities(newEntities, selectId, state) {
|
|
newEntities = ensureEntitiesArray(newEntities);
|
|
const added = [];
|
|
const updated = [];
|
|
for (const entity of newEntities) {
|
|
const id = selectIdValue(entity, selectId);
|
|
if (id in state.entities) {
|
|
updated.push({ id, changes: entity });
|
|
}
|
|
else {
|
|
added.push(entity);
|
|
}
|
|
}
|
|
return [added, updated];
|
|
}
|
|
// src/entities/unsorted_state_adapter.ts
|
|
function createUnsortedStateAdapter(selectId) {
|
|
function addOneMutably(entity, state) {
|
|
const key = selectIdValue(entity, selectId);
|
|
if (key in state.entities) {
|
|
return;
|
|
}
|
|
state.ids.push(key);
|
|
state.entities[key] = entity;
|
|
}
|
|
function addManyMutably(newEntities, state) {
|
|
newEntities = ensureEntitiesArray(newEntities);
|
|
for (const entity of newEntities) {
|
|
addOneMutably(entity, state);
|
|
}
|
|
}
|
|
function setOneMutably(entity, state) {
|
|
const key = selectIdValue(entity, selectId);
|
|
if (!(key in state.entities)) {
|
|
state.ids.push(key);
|
|
}
|
|
state.entities[key] = entity;
|
|
}
|
|
function setManyMutably(newEntities, state) {
|
|
newEntities = ensureEntitiesArray(newEntities);
|
|
for (const entity of newEntities) {
|
|
setOneMutably(entity, state);
|
|
}
|
|
}
|
|
function setAllMutably(newEntities, state) {
|
|
newEntities = ensureEntitiesArray(newEntities);
|
|
state.ids = [];
|
|
state.entities = {};
|
|
addManyMutably(newEntities, state);
|
|
}
|
|
function removeOneMutably(key, state) {
|
|
return removeManyMutably([key], state);
|
|
}
|
|
function removeManyMutably(keys, state) {
|
|
let didMutate = false;
|
|
keys.forEach((key) => {
|
|
if (key in state.entities) {
|
|
delete state.entities[key];
|
|
didMutate = true;
|
|
}
|
|
});
|
|
if (didMutate) {
|
|
state.ids = state.ids.filter((id) => id in state.entities);
|
|
}
|
|
}
|
|
function removeAllMutably(state) {
|
|
Object.assign(state, {
|
|
ids: [],
|
|
entities: {}
|
|
});
|
|
}
|
|
function takeNewKey(keys, update, state) {
|
|
const original2 = state.entities[update.id];
|
|
const updated = Object.assign({}, original2, update.changes);
|
|
const newKey = selectIdValue(updated, selectId);
|
|
const hasNewKey = newKey !== update.id;
|
|
if (hasNewKey) {
|
|
keys[update.id] = newKey;
|
|
delete state.entities[update.id];
|
|
}
|
|
state.entities[newKey] = updated;
|
|
return hasNewKey;
|
|
}
|
|
function updateOneMutably(update, state) {
|
|
return updateManyMutably([update], state);
|
|
}
|
|
function updateManyMutably(updates, state) {
|
|
const newKeys = {};
|
|
const updatesPerEntity = {};
|
|
updates.forEach((update) => {
|
|
if (update.id in state.entities) {
|
|
updatesPerEntity[update.id] = {
|
|
id: update.id,
|
|
changes: __spreadValues(__spreadValues({}, updatesPerEntity[update.id] ? updatesPerEntity[update.id].changes : null), update.changes)
|
|
};
|
|
}
|
|
});
|
|
updates = Object.values(updatesPerEntity);
|
|
const didMutateEntities = updates.length > 0;
|
|
if (didMutateEntities) {
|
|
const didMutateIds = updates.filter((update) => takeNewKey(newKeys, update, state)).length > 0;
|
|
if (didMutateIds) {
|
|
state.ids = Object.keys(state.entities);
|
|
}
|
|
}
|
|
}
|
|
function upsertOneMutably(entity, state) {
|
|
return upsertManyMutably([entity], state);
|
|
}
|
|
function upsertManyMutably(newEntities, state) {
|
|
const [added, updated] = splitAddedUpdatedEntities(newEntities, selectId, state);
|
|
updateManyMutably(updated, state);
|
|
addManyMutably(added, state);
|
|
}
|
|
return {
|
|
removeAll: createSingleArgumentStateOperator(removeAllMutably),
|
|
addOne: createStateOperator(addOneMutably),
|
|
addMany: createStateOperator(addManyMutably),
|
|
setOne: createStateOperator(setOneMutably),
|
|
setMany: createStateOperator(setManyMutably),
|
|
setAll: createStateOperator(setAllMutably),
|
|
updateOne: createStateOperator(updateOneMutably),
|
|
updateMany: createStateOperator(updateManyMutably),
|
|
upsertOne: createStateOperator(upsertOneMutably),
|
|
upsertMany: createStateOperator(upsertManyMutably),
|
|
removeOne: createStateOperator(removeOneMutably),
|
|
removeMany: createStateOperator(removeManyMutably)
|
|
};
|
|
}
|
|
// src/entities/sorted_state_adapter.ts
|
|
function createSortedStateAdapter(selectId, sort) {
|
|
const { removeOne, removeMany, removeAll } = createUnsortedStateAdapter(selectId);
|
|
function addOneMutably(entity, state) {
|
|
return addManyMutably([entity], state);
|
|
}
|
|
function addManyMutably(newEntities, state) {
|
|
newEntities = ensureEntitiesArray(newEntities);
|
|
const models = newEntities.filter((model) => !(selectIdValue(model, selectId) in state.entities));
|
|
if (models.length !== 0) {
|
|
merge(models, state);
|
|
}
|
|
}
|
|
function setOneMutably(entity, state) {
|
|
return setManyMutably([entity], state);
|
|
}
|
|
function setManyMutably(newEntities, state) {
|
|
newEntities = ensureEntitiesArray(newEntities);
|
|
if (newEntities.length !== 0) {
|
|
merge(newEntities, state);
|
|
}
|
|
}
|
|
function setAllMutably(newEntities, state) {
|
|
newEntities = ensureEntitiesArray(newEntities);
|
|
state.entities = {};
|
|
state.ids = [];
|
|
addManyMutably(newEntities, state);
|
|
}
|
|
function updateOneMutably(update, state) {
|
|
return updateManyMutably([update], state);
|
|
}
|
|
function updateManyMutably(updates, state) {
|
|
let appliedUpdates = false;
|
|
for (let update of updates) {
|
|
const entity = state.entities[update.id];
|
|
if (!entity) {
|
|
continue;
|
|
}
|
|
appliedUpdates = true;
|
|
Object.assign(entity, update.changes);
|
|
const newId = selectId(entity);
|
|
if (update.id !== newId) {
|
|
delete state.entities[update.id];
|
|
state.entities[newId] = entity;
|
|
}
|
|
}
|
|
if (appliedUpdates) {
|
|
resortEntities(state);
|
|
}
|
|
}
|
|
function upsertOneMutably(entity, state) {
|
|
return upsertManyMutably([entity], state);
|
|
}
|
|
function upsertManyMutably(newEntities, state) {
|
|
const [added, updated] = splitAddedUpdatedEntities(newEntities, selectId, state);
|
|
updateManyMutably(updated, state);
|
|
addManyMutably(added, state);
|
|
}
|
|
function areArraysEqual(a, b) {
|
|
if (a.length !== b.length) {
|
|
return false;
|
|
}
|
|
for (let i = 0; i < a.length && i < b.length; i++) {
|
|
if (a[i] === b[i]) {
|
|
continue;
|
|
}
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
function merge(models, state) {
|
|
models.forEach((model) => {
|
|
state.entities[selectId(model)] = model;
|
|
});
|
|
resortEntities(state);
|
|
}
|
|
function resortEntities(state) {
|
|
const allEntities = Object.values(state.entities);
|
|
allEntities.sort(sort);
|
|
const newSortedIds = allEntities.map(selectId);
|
|
const { ids } = state;
|
|
if (!areArraysEqual(ids, newSortedIds)) {
|
|
state.ids = newSortedIds;
|
|
}
|
|
}
|
|
return {
|
|
removeOne,
|
|
removeMany,
|
|
removeAll,
|
|
addOne: createStateOperator(addOneMutably),
|
|
updateOne: createStateOperator(updateOneMutably),
|
|
upsertOne: createStateOperator(upsertOneMutably),
|
|
setOne: createStateOperator(setOneMutably),
|
|
setMany: createStateOperator(setManyMutably),
|
|
setAll: createStateOperator(setAllMutably),
|
|
addMany: createStateOperator(addManyMutably),
|
|
updateMany: createStateOperator(updateManyMutably),
|
|
upsertMany: createStateOperator(upsertManyMutably)
|
|
};
|
|
}
|
|
// src/entities/create_adapter.ts
|
|
function createEntityAdapter(options = {}) {
|
|
const { selectId, sortComparer } = __spreadValues({
|
|
sortComparer: false,
|
|
selectId: (instance) => instance.id
|
|
}, options);
|
|
const stateFactory = createInitialStateFactory();
|
|
const selectorsFactory = createSelectorsFactory();
|
|
const stateAdapter = sortComparer ? createSortedStateAdapter(selectId, sortComparer) : createUnsortedStateAdapter(selectId);
|
|
return __spreadValues(__spreadValues(__spreadValues({
|
|
selectId,
|
|
sortComparer
|
|
}, stateFactory), selectorsFactory), stateAdapter);
|
|
}
|
|
// src/nanoid.ts
|
|
var urlAlphabet = "ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW";
|
|
var nanoid = (size = 21) => {
|
|
let id = "";
|
|
let i = size;
|
|
while (i--) {
|
|
id += urlAlphabet[Math.random() * 64 | 0];
|
|
}
|
|
return id;
|
|
};
|
|
// src/createAsyncThunk.ts
|
|
var commonProperties = [
|
|
"name",
|
|
"message",
|
|
"stack",
|
|
"code"
|
|
];
|
|
var RejectWithValue = class {
|
|
constructor(payload, meta) {
|
|
this.payload = payload;
|
|
this.meta = meta;
|
|
}
|
|
};
|
|
var FulfillWithMeta = class {
|
|
constructor(payload, meta) {
|
|
this.payload = payload;
|
|
this.meta = meta;
|
|
}
|
|
};
|
|
var miniSerializeError = (value) => {
|
|
if (typeof value === "object" && value !== null) {
|
|
const simpleError = {};
|
|
for (const property of commonProperties) {
|
|
if (typeof value[property] === "string") {
|
|
simpleError[property] = value[property];
|
|
}
|
|
}
|
|
return simpleError;
|
|
}
|
|
return { message: String(value) };
|
|
};
|
|
var createAsyncThunk = (() => {
|
|
function createAsyncThunk2(typePrefix, payloadCreator, options) {
|
|
const fulfilled = createAction(typePrefix + "/fulfilled", (payload, requestId, arg, meta) => ({
|
|
payload,
|
|
meta: __spreadProps(__spreadValues({}, meta || {}), {
|
|
arg,
|
|
requestId,
|
|
requestStatus: "fulfilled"
|
|
})
|
|
}));
|
|
const pending = createAction(typePrefix + "/pending", (requestId, arg, meta) => ({
|
|
payload: void 0,
|
|
meta: __spreadProps(__spreadValues({}, meta || {}), {
|
|
arg,
|
|
requestId,
|
|
requestStatus: "pending"
|
|
})
|
|
}));
|
|
const rejected = createAction(typePrefix + "/rejected", (error, requestId, arg, payload, meta) => ({
|
|
payload,
|
|
error: (options && options.serializeError || miniSerializeError)(error || "Rejected"),
|
|
meta: __spreadProps(__spreadValues({}, meta || {}), {
|
|
arg,
|
|
requestId,
|
|
rejectedWithValue: !!payload,
|
|
requestStatus: "rejected",
|
|
aborted: (error == null ? void 0 : error.name) === "AbortError",
|
|
condition: (error == null ? void 0 : error.name) === "ConditionError"
|
|
})
|
|
}));
|
|
let displayedWarning = false;
|
|
const AC = typeof AbortController !== "undefined" ? AbortController : class {
|
|
constructor() {
|
|
this.signal = {
|
|
aborted: false,
|
|
addEventListener() {
|
|
},
|
|
dispatchEvent() {
|
|
return false;
|
|
},
|
|
onabort() {
|
|
},
|
|
removeEventListener() {
|
|
},
|
|
reason: void 0,
|
|
throwIfAborted() {
|
|
}
|
|
};
|
|
}
|
|
abort() {
|
|
if (true) {
|
|
if (!displayedWarning) {
|
|
displayedWarning = true;
|
|
console.info(`This platform does not implement AbortController.
|
|
If you want to use the AbortController to react to \`abort\` events, please consider importing a polyfill like 'abortcontroller-polyfill/dist/abortcontroller-polyfill-only'.`);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
function actionCreator(arg) {
|
|
return (dispatch, getState, extra) => {
|
|
const requestId = (options == null ? void 0 : options.idGenerator) ? options.idGenerator(arg) : nanoid();
|
|
const abortController = new AC();
|
|
let abortReason;
|
|
let started = false;
|
|
function abort(reason) {
|
|
abortReason = reason;
|
|
abortController.abort();
|
|
}
|
|
const promise2 = async function () {
|
|
var _a, _b;
|
|
let finalAction;
|
|
try {
|
|
let conditionResult = (_a = options == null ? void 0 : options.condition) == null ? void 0 : _a.call(options, arg, { getState, extra });
|
|
if (isThenable(conditionResult)) {
|
|
conditionResult = await conditionResult;
|
|
}
|
|
if (conditionResult === false || abortController.signal.aborted) {
|
|
throw {
|
|
name: "ConditionError",
|
|
message: "Aborted due to condition callback returning false."
|
|
};
|
|
}
|
|
started = true;
|
|
const abortedPromise = new Promise((_, reject) => abortController.signal.addEventListener("abort", () => reject({
|
|
name: "AbortError",
|
|
message: abortReason || "Aborted"
|
|
})));
|
|
dispatch(pending(requestId, arg, (_b = options == null ? void 0 : options.getPendingMeta) == null ? void 0 : _b.call(options, { requestId, arg }, { getState, extra })));
|
|
finalAction = await Promise.race([
|
|
abortedPromise,
|
|
Promise.resolve(payloadCreator(arg, {
|
|
dispatch,
|
|
getState,
|
|
extra,
|
|
requestId,
|
|
signal: abortController.signal,
|
|
abort,
|
|
rejectWithValue: (value, meta) => {
|
|
return new RejectWithValue(value, meta);
|
|
},
|
|
fulfillWithValue: (value, meta) => {
|
|
return new FulfillWithMeta(value, meta);
|
|
}
|
|
})).then((result) => {
|
|
if (result instanceof RejectWithValue) {
|
|
throw result;
|
|
}
|
|
if (result instanceof FulfillWithMeta) {
|
|
return fulfilled(result.payload, requestId, arg, result.meta);
|
|
}
|
|
return fulfilled(result, requestId, arg);
|
|
})
|
|
]);
|
|
}
|
|
catch (err) {
|
|
finalAction = err instanceof RejectWithValue ? rejected(null, requestId, arg, err.payload, err.meta) : rejected(err, requestId, arg);
|
|
}
|
|
const skipDispatch = options && !options.dispatchConditionRejection && rejected.match(finalAction) && finalAction.meta.condition;
|
|
if (!skipDispatch) {
|
|
dispatch(finalAction);
|
|
}
|
|
return finalAction;
|
|
}();
|
|
return Object.assign(promise2, {
|
|
abort,
|
|
requestId,
|
|
arg,
|
|
unwrap() {
|
|
return promise2.then(unwrapResult);
|
|
}
|
|
});
|
|
};
|
|
}
|
|
return Object.assign(actionCreator, {
|
|
pending,
|
|
rejected,
|
|
fulfilled,
|
|
typePrefix
|
|
});
|
|
}
|
|
createAsyncThunk2.withTypes = () => createAsyncThunk2;
|
|
return createAsyncThunk2;
|
|
})();
|
|
function unwrapResult(action) {
|
|
if (action.meta && action.meta.rejectedWithValue) {
|
|
throw action.payload;
|
|
}
|
|
if (action.error) {
|
|
throw action.error;
|
|
}
|
|
return action.payload;
|
|
}
|
|
function isThenable(value) {
|
|
return value !== null && typeof value === "object" && typeof value.then === "function";
|
|
}
|
|
// src/matchers.ts
|
|
var matches = (matcher, action) => {
|
|
if (hasMatchFunction(matcher)) {
|
|
return matcher.match(action);
|
|
}
|
|
else {
|
|
return matcher(action);
|
|
}
|
|
};
|
|
function isAnyOf(...matchers) {
|
|
return (action) => {
|
|
return matchers.some((matcher) => matches(matcher, action));
|
|
};
|
|
}
|
|
function isAllOf(...matchers) {
|
|
return (action) => {
|
|
return matchers.every((matcher) => matches(matcher, action));
|
|
};
|
|
}
|
|
function hasExpectedRequestMetadata(action, validStatus) {
|
|
if (!action || !action.meta)
|
|
return false;
|
|
const hasValidRequestId = typeof action.meta.requestId === "string";
|
|
const hasValidRequestStatus = validStatus.indexOf(action.meta.requestStatus) > -1;
|
|
return hasValidRequestId && hasValidRequestStatus;
|
|
}
|
|
function isAsyncThunkArray(a) {
|
|
return typeof a[0] === "function" && "pending" in a[0] && "fulfilled" in a[0] && "rejected" in a[0];
|
|
}
|
|
function isPending(...asyncThunks) {
|
|
if (asyncThunks.length === 0) {
|
|
return (action) => hasExpectedRequestMetadata(action, ["pending"]);
|
|
}
|
|
if (!isAsyncThunkArray(asyncThunks)) {
|
|
return isPending()(asyncThunks[0]);
|
|
}
|
|
return (action) => {
|
|
const matchers = asyncThunks.map((asyncThunk) => asyncThunk.pending);
|
|
const combinedMatcher = isAnyOf(...matchers);
|
|
return combinedMatcher(action);
|
|
};
|
|
}
|
|
function isRejected(...asyncThunks) {
|
|
if (asyncThunks.length === 0) {
|
|
return (action) => hasExpectedRequestMetadata(action, ["rejected"]);
|
|
}
|
|
if (!isAsyncThunkArray(asyncThunks)) {
|
|
return isRejected()(asyncThunks[0]);
|
|
}
|
|
return (action) => {
|
|
const matchers = asyncThunks.map((asyncThunk) => asyncThunk.rejected);
|
|
const combinedMatcher = isAnyOf(...matchers);
|
|
return combinedMatcher(action);
|
|
};
|
|
}
|
|
function isRejectedWithValue(...asyncThunks) {
|
|
const hasFlag = (action) => {
|
|
return action && action.meta && action.meta.rejectedWithValue;
|
|
};
|
|
if (asyncThunks.length === 0) {
|
|
return (action) => {
|
|
const combinedMatcher = isAllOf(isRejected(...asyncThunks), hasFlag);
|
|
return combinedMatcher(action);
|
|
};
|
|
}
|
|
if (!isAsyncThunkArray(asyncThunks)) {
|
|
return isRejectedWithValue()(asyncThunks[0]);
|
|
}
|
|
return (action) => {
|
|
const combinedMatcher = isAllOf(isRejected(...asyncThunks), hasFlag);
|
|
return combinedMatcher(action);
|
|
};
|
|
}
|
|
function isFulfilled(...asyncThunks) {
|
|
if (asyncThunks.length === 0) {
|
|
return (action) => hasExpectedRequestMetadata(action, ["fulfilled"]);
|
|
}
|
|
if (!isAsyncThunkArray(asyncThunks)) {
|
|
return isFulfilled()(asyncThunks[0]);
|
|
}
|
|
return (action) => {
|
|
const matchers = asyncThunks.map((asyncThunk) => asyncThunk.fulfilled);
|
|
const combinedMatcher = isAnyOf(...matchers);
|
|
return combinedMatcher(action);
|
|
};
|
|
}
|
|
function isAsyncThunkAction(...asyncThunks) {
|
|
if (asyncThunks.length === 0) {
|
|
return (action) => hasExpectedRequestMetadata(action, ["pending", "fulfilled", "rejected"]);
|
|
}
|
|
if (!isAsyncThunkArray(asyncThunks)) {
|
|
return isAsyncThunkAction()(asyncThunks[0]);
|
|
}
|
|
return (action) => {
|
|
const matchers = [];
|
|
for (const asyncThunk of asyncThunks) {
|
|
matchers.push(asyncThunk.pending, asyncThunk.rejected, asyncThunk.fulfilled);
|
|
}
|
|
const combinedMatcher = isAnyOf(...matchers);
|
|
return combinedMatcher(action);
|
|
};
|
|
}
|
|
// src/listenerMiddleware/utils.ts
|
|
var assertFunction = (func, expected) => {
|
|
if (typeof func !== "function") {
|
|
throw new TypeError(`${expected} is not a function`);
|
|
}
|
|
};
|
|
var noop = () => {
|
|
};
|
|
var catchRejection = (promise2, onError = noop) => {
|
|
promise2.catch(onError);
|
|
return promise2;
|
|
};
|
|
var addAbortSignalListener = (abortSignal, callback) => {
|
|
abortSignal.addEventListener("abort", callback, { once: true });
|
|
return () => abortSignal.removeEventListener("abort", callback);
|
|
};
|
|
var abortControllerWithReason = (abortController, reason) => {
|
|
const signal = abortController.signal;
|
|
if (signal.aborted) {
|
|
return;
|
|
}
|
|
if (!("reason" in signal)) {
|
|
Object.defineProperty(signal, "reason", {
|
|
enumerable: true,
|
|
value: reason,
|
|
configurable: true,
|
|
writable: true
|
|
});
|
|
}
|
|
;
|
|
abortController.abort(reason);
|
|
};
|
|
// src/listenerMiddleware/exceptions.ts
|
|
var task = "task";
|
|
var listener = "listener";
|
|
var completed = "completed";
|
|
var cancelled = "cancelled";
|
|
var taskCancelled = `task-${cancelled}`;
|
|
var taskCompleted = `task-${completed}`;
|
|
var listenerCancelled = `${listener}-${cancelled}`;
|
|
var listenerCompleted = `${listener}-${completed}`;
|
|
var TaskAbortError = class {
|
|
constructor(code) {
|
|
this.code = code;
|
|
this.name = "TaskAbortError";
|
|
this.message = `${task} ${cancelled} (reason: ${code})`;
|
|
}
|
|
};
|
|
// src/listenerMiddleware/task.ts
|
|
var validateActive = (signal) => {
|
|
if (signal.aborted) {
|
|
throw new TaskAbortError(signal.reason);
|
|
}
|
|
};
|
|
function raceWithSignal(signal, promise2) {
|
|
let cleanup = noop;
|
|
return new Promise((resolve, reject) => {
|
|
const notifyRejection = () => reject(new TaskAbortError(signal.reason));
|
|
if (signal.aborted) {
|
|
notifyRejection();
|
|
return;
|
|
}
|
|
cleanup = addAbortSignalListener(signal, notifyRejection);
|
|
promise2.finally(() => cleanup()).then(resolve, reject);
|
|
}).finally(() => {
|
|
cleanup = noop;
|
|
});
|
|
}
|
|
var runTask = async (task2, cleanUp) => {
|
|
try {
|
|
await Promise.resolve();
|
|
const value = await task2();
|
|
return {
|
|
status: "ok",
|
|
value
|
|
};
|
|
}
|
|
catch (error) {
|
|
return {
|
|
status: error instanceof TaskAbortError ? "cancelled" : "rejected",
|
|
error
|
|
};
|
|
}
|
|
finally {
|
|
cleanUp == null ? void 0 : cleanUp();
|
|
}
|
|
};
|
|
var createPause = (signal) => {
|
|
return (promise2) => {
|
|
return catchRejection(raceWithSignal(signal, promise2).then((output) => {
|
|
validateActive(signal);
|
|
return output;
|
|
}));
|
|
};
|
|
};
|
|
var createDelay = (signal) => {
|
|
const pause = createPause(signal);
|
|
return (timeoutMs) => {
|
|
return pause(new Promise((resolve) => setTimeout(resolve, timeoutMs)));
|
|
};
|
|
};
|
|
// src/listenerMiddleware/index.ts
|
|
var { assign } = Object;
|
|
var INTERNAL_NIL_TOKEN = {};
|
|
var alm = "listenerMiddleware";
|
|
var createFork = (parentAbortSignal, parentBlockingPromises) => {
|
|
const linkControllers = (controller) => addAbortSignalListener(parentAbortSignal, () => abortControllerWithReason(controller, parentAbortSignal.reason));
|
|
return (taskExecutor, opts) => {
|
|
assertFunction(taskExecutor, "taskExecutor");
|
|
const childAbortController = new AbortController();
|
|
linkControllers(childAbortController);
|
|
const result = runTask(async () => {
|
|
validateActive(parentAbortSignal);
|
|
validateActive(childAbortController.signal);
|
|
const result2 = await taskExecutor({
|
|
pause: createPause(childAbortController.signal),
|
|
delay: createDelay(childAbortController.signal),
|
|
signal: childAbortController.signal
|
|
});
|
|
validateActive(childAbortController.signal);
|
|
return result2;
|
|
}, () => abortControllerWithReason(childAbortController, taskCompleted));
|
|
if (opts == null ? void 0 : opts.autoJoin) {
|
|
parentBlockingPromises.push(result);
|
|
}
|
|
return {
|
|
result: createPause(parentAbortSignal)(result),
|
|
cancel() {
|
|
abortControllerWithReason(childAbortController, taskCancelled);
|
|
}
|
|
};
|
|
};
|
|
};
|
|
var createTakePattern = (startListening, signal) => {
|
|
const take = async (predicate, timeout) => {
|
|
validateActive(signal);
|
|
let unsubscribe = () => {
|
|
};
|
|
const tuplePromise = new Promise((resolve, reject) => {
|
|
let stopListening = startListening({
|
|
predicate,
|
|
effect: (action, listenerApi) => {
|
|
listenerApi.unsubscribe();
|
|
resolve([
|
|
action,
|
|
listenerApi.getState(),
|
|
listenerApi.getOriginalState()
|
|
]);
|
|
}
|
|
});
|
|
unsubscribe = () => {
|
|
stopListening();
|
|
reject();
|
|
};
|
|
});
|
|
const promises = [
|
|
tuplePromise
|
|
];
|
|
if (timeout != null) {
|
|
promises.push(new Promise((resolve) => setTimeout(resolve, timeout, null)));
|
|
}
|
|
try {
|
|
const output = await raceWithSignal(signal, Promise.race(promises));
|
|
validateActive(signal);
|
|
return output;
|
|
}
|
|
finally {
|
|
unsubscribe();
|
|
}
|
|
};
|
|
return (predicate, timeout) => catchRejection(take(predicate, timeout));
|
|
};
|
|
var getListenerEntryPropsFrom = (options) => {
|
|
let { type, actionCreator, matcher, predicate, effect } = options;
|
|
if (type) {
|
|
predicate = createAction(type).match;
|
|
}
|
|
else if (actionCreator) {
|
|
type = actionCreator.type;
|
|
predicate = actionCreator.match;
|
|
}
|
|
else if (matcher) {
|
|
predicate = matcher;
|
|
}
|
|
else if (predicate) {
|
|
}
|
|
else {
|
|
throw new Error("Creating or removing a listener requires one of the known fields for matching an action");
|
|
}
|
|
assertFunction(effect, "options.listener");
|
|
return { predicate, type, effect };
|
|
};
|
|
var createListenerEntry = (options) => {
|
|
const { type, predicate, effect } = getListenerEntryPropsFrom(options);
|
|
const id = nanoid();
|
|
const entry = {
|
|
id,
|
|
effect,
|
|
type,
|
|
predicate,
|
|
pending: new Set(),
|
|
unsubscribe: () => {
|
|
throw new Error("Unsubscribe not initialized");
|
|
}
|
|
};
|
|
return entry;
|
|
};
|
|
var cancelActiveListeners = (entry) => {
|
|
entry.pending.forEach((controller) => {
|
|
abortControllerWithReason(controller, listenerCancelled);
|
|
});
|
|
};
|
|
var createClearListenerMiddleware = (listenerMap) => {
|
|
return () => {
|
|
listenerMap.forEach(cancelActiveListeners);
|
|
listenerMap.clear();
|
|
};
|
|
};
|
|
var safelyNotifyError = (errorHandler, errorToNotify, errorInfo) => {
|
|
try {
|
|
errorHandler(errorToNotify, errorInfo);
|
|
}
|
|
catch (errorHandlerError) {
|
|
setTimeout(() => {
|
|
throw errorHandlerError;
|
|
}, 0);
|
|
}
|
|
};
|
|
var addListener = createAction(`${alm}/add`);
|
|
var clearAllListeners = createAction(`${alm}/removeAll`);
|
|
var removeListener = createAction(`${alm}/remove`);
|
|
var defaultErrorHandler = (...args) => {
|
|
console.error(`${alm}/error`, ...args);
|
|
};
|
|
function createListenerMiddleware(middlewareOptions = {}) {
|
|
const listenerMap = new Map();
|
|
const { extra, onError = defaultErrorHandler } = middlewareOptions;
|
|
assertFunction(onError, "onError");
|
|
const insertEntry = (entry) => {
|
|
entry.unsubscribe = () => listenerMap.delete(entry.id);
|
|
listenerMap.set(entry.id, entry);
|
|
return (cancelOptions) => {
|
|
entry.unsubscribe();
|
|
if (cancelOptions == null ? void 0 : cancelOptions.cancelActive) {
|
|
cancelActiveListeners(entry);
|
|
}
|
|
};
|
|
};
|
|
const findListenerEntry = (comparator) => {
|
|
for (const entry of Array.from(listenerMap.values())) {
|
|
if (comparator(entry)) {
|
|
return entry;
|
|
}
|
|
}
|
|
return void 0;
|
|
};
|
|
const startListening = (options) => {
|
|
let entry = findListenerEntry((existingEntry) => existingEntry.effect === options.effect);
|
|
if (!entry) {
|
|
entry = createListenerEntry(options);
|
|
}
|
|
return insertEntry(entry);
|
|
};
|
|
const stopListening = (options) => {
|
|
const { type, effect, predicate } = getListenerEntryPropsFrom(options);
|
|
const entry = findListenerEntry((entry2) => {
|
|
const matchPredicateOrType = typeof type === "string" ? entry2.type === type : entry2.predicate === predicate;
|
|
return matchPredicateOrType && entry2.effect === effect;
|
|
});
|
|
if (entry) {
|
|
entry.unsubscribe();
|
|
if (options.cancelActive) {
|
|
cancelActiveListeners(entry);
|
|
}
|
|
}
|
|
return !!entry;
|
|
};
|
|
const notifyListener = async (entry, action, api, getOriginalState) => {
|
|
const internalTaskController = new AbortController();
|
|
const take = createTakePattern(startListening, internalTaskController.signal);
|
|
const autoJoinPromises = [];
|
|
try {
|
|
entry.pending.add(internalTaskController);
|
|
await Promise.resolve(entry.effect(action, assign({}, api, {
|
|
getOriginalState,
|
|
condition: (predicate, timeout) => take(predicate, timeout).then(Boolean),
|
|
take,
|
|
delay: createDelay(internalTaskController.signal),
|
|
pause: createPause(internalTaskController.signal),
|
|
extra,
|
|
signal: internalTaskController.signal,
|
|
fork: createFork(internalTaskController.signal, autoJoinPromises),
|
|
unsubscribe: entry.unsubscribe,
|
|
subscribe: () => {
|
|
listenerMap.set(entry.id, entry);
|
|
},
|
|
cancelActiveListeners: () => {
|
|
entry.pending.forEach((controller, _, set) => {
|
|
if (controller !== internalTaskController) {
|
|
abortControllerWithReason(controller, listenerCancelled);
|
|
set.delete(controller);
|
|
}
|
|
});
|
|
}
|
|
})));
|
|
}
|
|
catch (listenerError) {
|
|
if (!(listenerError instanceof TaskAbortError)) {
|
|
safelyNotifyError(onError, listenerError, {
|
|
raisedBy: "effect"
|
|
});
|
|
}
|
|
}
|
|
finally {
|
|
await Promise.allSettled(autoJoinPromises);
|
|
abortControllerWithReason(internalTaskController, listenerCompleted);
|
|
entry.pending.delete(internalTaskController);
|
|
}
|
|
};
|
|
const clearListenerMiddleware = createClearListenerMiddleware(listenerMap);
|
|
const middleware = (api) => (next) => (action) => {
|
|
if (!isAction(action)) {
|
|
return next(action);
|
|
}
|
|
if (addListener.match(action)) {
|
|
return startListening(action.payload);
|
|
}
|
|
if (clearAllListeners.match(action)) {
|
|
clearListenerMiddleware();
|
|
return;
|
|
}
|
|
if (removeListener.match(action)) {
|
|
return stopListening(action.payload);
|
|
}
|
|
let originalState = api.getState();
|
|
const getOriginalState = () => {
|
|
if (originalState === INTERNAL_NIL_TOKEN) {
|
|
throw new Error(`${alm}: getOriginalState can only be called synchronously`);
|
|
}
|
|
return originalState;
|
|
};
|
|
let result;
|
|
try {
|
|
result = next(action);
|
|
if (listenerMap.size > 0) {
|
|
let currentState = api.getState();
|
|
const listenerEntries = Array.from(listenerMap.values());
|
|
for (let entry of listenerEntries) {
|
|
let runListener = false;
|
|
try {
|
|
runListener = entry.predicate(action, currentState, originalState);
|
|
}
|
|
catch (predicateError) {
|
|
runListener = false;
|
|
safelyNotifyError(onError, predicateError, {
|
|
raisedBy: "predicate"
|
|
});
|
|
}
|
|
if (!runListener) {
|
|
continue;
|
|
}
|
|
notifyListener(entry, action, api, getOriginalState);
|
|
}
|
|
}
|
|
}
|
|
finally {
|
|
originalState = INTERNAL_NIL_TOKEN;
|
|
}
|
|
return result;
|
|
};
|
|
return {
|
|
middleware,
|
|
startListening,
|
|
stopListening,
|
|
clearListeners: clearListenerMiddleware
|
|
};
|
|
}
|
|
// src/autoBatchEnhancer.ts
|
|
var SHOULD_AUTOBATCH = "RTK_autoBatch";
|
|
var prepareAutoBatched = () => (payload) => ({
|
|
payload,
|
|
meta: { [SHOULD_AUTOBATCH]: true }
|
|
});
|
|
var promise;
|
|
var queueMicrotaskShim = typeof queueMicrotask === "function" ? queueMicrotask.bind(typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : globalThis) : (cb) => (promise || (promise = Promise.resolve())).then(cb).catch((err) => setTimeout(() => {
|
|
throw err;
|
|
}, 0));
|
|
var createQueueWithTimer = (timeout) => {
|
|
return (notify) => {
|
|
setTimeout(notify, timeout);
|
|
};
|
|
};
|
|
var rAF = typeof window !== "undefined" && window.requestAnimationFrame ? window.requestAnimationFrame : createQueueWithTimer(10);
|
|
var autoBatchEnhancer = (options = { type: "raf" }) => (next) => (...args) => {
|
|
const store = next(...args);
|
|
let notifying = true;
|
|
let shouldNotifyAtEndOfTick = false;
|
|
let notificationQueued = false;
|
|
const listeners = new Set();
|
|
const queueCallback = options.type === "tick" ? queueMicrotaskShim : options.type === "raf" ? rAF : options.type === "callback" ? options.queueNotification : createQueueWithTimer(options.timeout);
|
|
const notifyListeners = () => {
|
|
notificationQueued = false;
|
|
if (shouldNotifyAtEndOfTick) {
|
|
shouldNotifyAtEndOfTick = false;
|
|
listeners.forEach((l) => l());
|
|
}
|
|
};
|
|
return Object.assign({}, store, {
|
|
subscribe(listener2) {
|
|
const wrappedListener = () => notifying && listener2();
|
|
const unsubscribe = store.subscribe(wrappedListener);
|
|
listeners.add(listener2);
|
|
return () => {
|
|
unsubscribe();
|
|
listeners.delete(listener2);
|
|
};
|
|
},
|
|
dispatch(action) {
|
|
var _a;
|
|
try {
|
|
notifying = !((_a = action == null ? void 0 : action.meta) == null ? void 0 : _a[SHOULD_AUTOBATCH]);
|
|
shouldNotifyAtEndOfTick = !notifying;
|
|
if (shouldNotifyAtEndOfTick) {
|
|
if (!notificationQueued) {
|
|
notificationQueued = true;
|
|
queueCallback(notifyListeners);
|
|
}
|
|
}
|
|
return store.dispatch(action);
|
|
}
|
|
finally {
|
|
notifying = true;
|
|
}
|
|
}
|
|
});
|
|
};
|
|
// src/index.ts
|
|
enableES5();
|
|
export { EnhancerArray, MiddlewareArray, SHOULD_AUTOBATCH, TaskAbortError, addListener, autoBatchEnhancer, clearAllListeners, configureStore, createAction, createActionCreatorInvariantMiddleware, createAsyncThunk, createDraftSafeSelector, createEntityAdapter, createImmutableStateInvariantMiddleware, createListenerMiddleware, default2 as createNextState, createReducer, createSelector2 as createSelector, createSerializableStateInvariantMiddleware, createSlice, current2 as current, findNonSerializableValue, freeze, getDefaultMiddleware, getType, isAction, isActionCreator, isAllOf, isAnyOf, isAsyncThunkAction, isDraft4 as isDraft, isFSA as isFluxStandardAction, isFulfilled, isImmutableDefault, isPending, isPlain, isPlainObject, isRejected, isRejectedWithValue, miniSerializeError, nanoid, original, prepareAutoBatched, removeListener, unwrapResult };
|
|
//# sourceMappingURL=redux-toolkit.modern.development.js.map
|