2018-12-03 00:49:12 +03:00
|
|
|
import difference from 'lodash/difference';
|
|
|
|
import union from 'lodash/union';
|
|
|
|
import isPlainObject from 'lodash/isPlainObject';
|
2021-06-19 04:47:26 +03:00
|
|
|
import $$observable from './symbol-observable';
|
2020-08-22 17:28:08 +03:00
|
|
|
import {
|
|
|
|
Action,
|
|
|
|
Observable,
|
|
|
|
PreloadedState,
|
|
|
|
Reducer,
|
|
|
|
Store,
|
|
|
|
StoreEnhancer,
|
|
|
|
StoreEnhancerStoreCreator,
|
|
|
|
} from 'redux';
|
2018-12-03 00:49:12 +03:00
|
|
|
|
|
|
|
export const ActionTypes = {
|
|
|
|
PERFORM_ACTION: 'PERFORM_ACTION',
|
|
|
|
RESET: 'RESET',
|
|
|
|
ROLLBACK: 'ROLLBACK',
|
|
|
|
COMMIT: 'COMMIT',
|
|
|
|
SWEEP: 'SWEEP',
|
|
|
|
TOGGLE_ACTION: 'TOGGLE_ACTION',
|
|
|
|
SET_ACTIONS_ACTIVE: 'SET_ACTIONS_ACTIVE',
|
|
|
|
JUMP_TO_STATE: 'JUMP_TO_STATE',
|
|
|
|
JUMP_TO_ACTION: 'JUMP_TO_ACTION',
|
|
|
|
REORDER_ACTION: 'REORDER_ACTION',
|
|
|
|
IMPORT_STATE: 'IMPORT_STATE',
|
|
|
|
LOCK_CHANGES: 'LOCK_CHANGES',
|
2020-08-08 23:26:39 +03:00
|
|
|
PAUSE_RECORDING: 'PAUSE_RECORDING',
|
2020-08-22 17:28:08 +03:00
|
|
|
} as const;
|
2018-12-03 00:49:12 +03:00
|
|
|
|
2019-02-07 03:10:24 +03:00
|
|
|
const isChrome =
|
|
|
|
typeof window === 'object' &&
|
2020-08-22 17:28:08 +03:00
|
|
|
(typeof (window as typeof window & { chrome: unknown }).chrome !==
|
|
|
|
'undefined' ||
|
2019-02-07 03:10:24 +03:00
|
|
|
(typeof window.process !== 'undefined' &&
|
2020-08-22 17:28:08 +03:00
|
|
|
(window.process as typeof window.process & { type: unknown }).type ===
|
|
|
|
'renderer'));
|
2019-01-26 00:22:59 +03:00
|
|
|
|
2019-02-07 03:10:24 +03:00
|
|
|
const isChromeOrNode =
|
|
|
|
isChrome ||
|
|
|
|
(typeof process !== 'undefined' &&
|
|
|
|
process.release &&
|
|
|
|
process.release.name === 'node');
|
2019-01-26 00:22:59 +03:00
|
|
|
|
2020-08-27 06:54:54 +03:00
|
|
|
export interface PerformAction<A extends Action<unknown>> {
|
2020-08-22 17:28:08 +03:00
|
|
|
type: typeof ActionTypes.PERFORM_ACTION;
|
|
|
|
action: A;
|
|
|
|
timestamp: number;
|
|
|
|
stack: string | undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ResetAction {
|
|
|
|
type: typeof ActionTypes.RESET;
|
|
|
|
timestamp: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface RollbackAction {
|
|
|
|
type: typeof ActionTypes.ROLLBACK;
|
|
|
|
timestamp: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface CommitAction {
|
|
|
|
type: typeof ActionTypes.COMMIT;
|
|
|
|
timestamp: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface SweepAction {
|
|
|
|
type: typeof ActionTypes.SWEEP;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ToggleAction {
|
|
|
|
type: typeof ActionTypes.TOGGLE_ACTION;
|
|
|
|
id: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface SetActionsActiveAction {
|
|
|
|
type: typeof ActionTypes.SET_ACTIONS_ACTIVE;
|
|
|
|
start: number;
|
|
|
|
end: number;
|
|
|
|
active: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ReorderAction {
|
|
|
|
type: typeof ActionTypes.REORDER_ACTION;
|
|
|
|
actionId: number;
|
|
|
|
beforeActionId: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface JumpToStateAction {
|
|
|
|
type: typeof ActionTypes.JUMP_TO_STATE;
|
|
|
|
index: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface JumpToActionAction {
|
|
|
|
type: typeof ActionTypes.JUMP_TO_ACTION;
|
|
|
|
actionId: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ImportStateAction<S, A extends Action<unknown>, MonitorState> {
|
|
|
|
type: typeof ActionTypes.IMPORT_STATE;
|
|
|
|
nextLiftedState: LiftedState<S, A, MonitorState> | readonly A[];
|
|
|
|
preloadedState?: S;
|
2021-08-25 07:22:54 +03:00
|
|
|
noRecompute?: boolean | undefined;
|
2020-08-22 17:28:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
interface LockChangesAction {
|
|
|
|
type: typeof ActionTypes.LOCK_CHANGES;
|
|
|
|
status: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface PauseRecordingAction {
|
|
|
|
type: typeof ActionTypes.PAUSE_RECORDING;
|
|
|
|
status: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export type LiftedAction<S, A extends Action<unknown>, MonitorState> =
|
|
|
|
| PerformAction<A>
|
|
|
|
| ResetAction
|
|
|
|
| RollbackAction
|
|
|
|
| CommitAction
|
|
|
|
| SweepAction
|
|
|
|
| ToggleAction
|
|
|
|
| SetActionsActiveAction
|
|
|
|
| ReorderAction
|
|
|
|
| JumpToStateAction
|
|
|
|
| JumpToActionAction
|
|
|
|
| ImportStateAction<S, A, MonitorState>
|
|
|
|
| LockChangesAction
|
|
|
|
| PauseRecordingAction;
|
|
|
|
|
2018-12-03 00:49:12 +03:00
|
|
|
/**
|
|
|
|
* Action creators to change the History state.
|
|
|
|
*/
|
|
|
|
export const ActionCreators = {
|
2020-08-22 17:28:08 +03:00
|
|
|
performAction<A extends Action<unknown>>(
|
|
|
|
action: A,
|
|
|
|
trace?: ((action: A) => string | undefined) | boolean,
|
|
|
|
traceLimit?: number,
|
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
|
|
toExcludeFromTrace?: Function
|
|
|
|
) {
|
2018-12-03 00:49:12 +03:00
|
|
|
if (!isPlainObject(action)) {
|
|
|
|
throw new Error(
|
|
|
|
'Actions must be plain objects. ' +
|
2019-01-10 21:51:14 +03:00
|
|
|
'Use custom middleware for async actions.'
|
2018-12-03 00:49:12 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof action.type === 'undefined') {
|
|
|
|
throw new Error(
|
|
|
|
'Actions may not have an undefined "type" property. ' +
|
2019-01-10 21:51:14 +03:00
|
|
|
'Have you misspelled a constant?'
|
2018-12-03 00:49:12 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-12-10 19:58:46 +03:00
|
|
|
let stack;
|
|
|
|
if (trace) {
|
2018-12-14 23:27:11 +03:00
|
|
|
let extraFrames = 0;
|
2018-12-14 01:05:28 +03:00
|
|
|
if (typeof trace === 'function') {
|
|
|
|
stack = trace(action);
|
|
|
|
} else {
|
|
|
|
const error = Error();
|
|
|
|
let prevStackTraceLimit;
|
2019-02-07 03:10:24 +03:00
|
|
|
if (Error.captureStackTrace && isChromeOrNode) {
|
|
|
|
// avoid error-polyfill
|
2020-08-22 17:28:08 +03:00
|
|
|
if (traceLimit && Error.stackTraceLimit < traceLimit) {
|
2018-12-14 01:05:28 +03:00
|
|
|
prevStackTraceLimit = Error.stackTraceLimit;
|
|
|
|
Error.stackTraceLimit = traceLimit;
|
|
|
|
}
|
|
|
|
Error.captureStackTrace(error, toExcludeFromTrace);
|
2018-12-14 23:27:11 +03:00
|
|
|
} else {
|
|
|
|
extraFrames = 3;
|
2018-12-14 01:05:28 +03:00
|
|
|
}
|
2018-12-10 20:03:35 +03:00
|
|
|
stack = error.stack;
|
2018-12-14 01:05:28 +03:00
|
|
|
if (prevStackTraceLimit) Error.stackTraceLimit = prevStackTraceLimit;
|
2019-01-10 21:51:14 +03:00
|
|
|
if (
|
|
|
|
extraFrames ||
|
|
|
|
typeof Error.stackTraceLimit !== 'number' ||
|
2020-08-22 17:28:08 +03:00
|
|
|
(traceLimit && Error.stackTraceLimit > traceLimit)
|
2019-01-10 21:51:14 +03:00
|
|
|
) {
|
2020-08-22 17:28:08 +03:00
|
|
|
if (stack != null) {
|
|
|
|
const frames = stack.split('\n');
|
|
|
|
if (traceLimit && frames.length > traceLimit) {
|
|
|
|
stack = frames
|
|
|
|
.slice(
|
|
|
|
0,
|
|
|
|
traceLimit +
|
|
|
|
extraFrames +
|
|
|
|
(frames[0].startsWith('Error') ? 1 : 0)
|
|
|
|
)
|
|
|
|
.join('\n');
|
|
|
|
}
|
2018-12-14 00:54:38 +03:00
|
|
|
}
|
2018-12-10 21:16:55 +03:00
|
|
|
}
|
2018-12-10 20:03:35 +03:00
|
|
|
}
|
2018-12-10 19:58:46 +03:00
|
|
|
}
|
|
|
|
|
2019-01-10 21:51:14 +03:00
|
|
|
return {
|
|
|
|
type: ActionTypes.PERFORM_ACTION,
|
|
|
|
action,
|
|
|
|
timestamp: Date.now(),
|
2020-08-08 23:26:39 +03:00
|
|
|
stack,
|
2019-01-10 21:51:14 +03:00
|
|
|
};
|
2018-12-03 00:49:12 +03:00
|
|
|
},
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
reset(): ResetAction {
|
2018-12-03 00:49:12 +03:00
|
|
|
return { type: ActionTypes.RESET, timestamp: Date.now() };
|
|
|
|
},
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
rollback(): RollbackAction {
|
2018-12-03 00:49:12 +03:00
|
|
|
return { type: ActionTypes.ROLLBACK, timestamp: Date.now() };
|
|
|
|
},
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
commit(): CommitAction {
|
2018-12-03 00:49:12 +03:00
|
|
|
return { type: ActionTypes.COMMIT, timestamp: Date.now() };
|
|
|
|
},
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
sweep(): SweepAction {
|
2018-12-03 00:49:12 +03:00
|
|
|
return { type: ActionTypes.SWEEP };
|
|
|
|
},
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
toggleAction(id: number): ToggleAction {
|
2018-12-03 00:49:12 +03:00
|
|
|
return { type: ActionTypes.TOGGLE_ACTION, id };
|
|
|
|
},
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
setActionsActive(
|
|
|
|
start: number,
|
|
|
|
end: number,
|
|
|
|
active = true
|
|
|
|
): SetActionsActiveAction {
|
2018-12-03 00:49:12 +03:00
|
|
|
return { type: ActionTypes.SET_ACTIONS_ACTIVE, start, end, active };
|
|
|
|
},
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
reorderAction(actionId: number, beforeActionId: number): ReorderAction {
|
2018-12-03 00:49:12 +03:00
|
|
|
return { type: ActionTypes.REORDER_ACTION, actionId, beforeActionId };
|
|
|
|
},
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
jumpToState(index: number): JumpToStateAction {
|
2018-12-03 00:49:12 +03:00
|
|
|
return { type: ActionTypes.JUMP_TO_STATE, index };
|
|
|
|
},
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
jumpToAction(actionId: number): JumpToActionAction {
|
2018-12-03 00:49:12 +03:00
|
|
|
return { type: ActionTypes.JUMP_TO_ACTION, actionId };
|
|
|
|
},
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
importState<S, A extends Action<unknown>, MonitorState = null>(
|
|
|
|
nextLiftedState: LiftedState<S, A, MonitorState> | readonly A[],
|
|
|
|
noRecompute?: boolean
|
|
|
|
): ImportStateAction<S, A, MonitorState> {
|
2018-12-03 00:49:12 +03:00
|
|
|
return { type: ActionTypes.IMPORT_STATE, nextLiftedState, noRecompute };
|
|
|
|
},
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
lockChanges(status: boolean): LockChangesAction {
|
2018-12-03 00:49:12 +03:00
|
|
|
return { type: ActionTypes.LOCK_CHANGES, status };
|
|
|
|
},
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
pauseRecording(status: boolean): PauseRecordingAction {
|
2018-12-03 00:49:12 +03:00
|
|
|
return { type: ActionTypes.PAUSE_RECORDING, status };
|
2020-08-08 23:26:39 +03:00
|
|
|
},
|
2018-12-03 00:49:12 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
export const INIT_ACTION = { type: '@@INIT' };
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Computes the next entry with exceptions catching.
|
|
|
|
*/
|
2020-08-22 17:28:08 +03:00
|
|
|
function computeWithTryCatch<S, A extends Action<unknown>>(
|
|
|
|
reducer: Reducer<S, A>,
|
|
|
|
action: A,
|
|
|
|
state: S
|
|
|
|
) {
|
2018-12-03 00:49:12 +03:00
|
|
|
let nextState = state;
|
|
|
|
let nextError;
|
|
|
|
try {
|
|
|
|
nextState = reducer(state, action);
|
|
|
|
} catch (err) {
|
2021-10-05 05:32:03 +03:00
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
|
|
nextError = (err as object).toString();
|
2019-01-26 00:22:59 +03:00
|
|
|
if (isChrome) {
|
2018-12-03 00:49:12 +03:00
|
|
|
// In Chrome, rethrowing provides better source map support
|
2019-01-10 21:51:14 +03:00
|
|
|
setTimeout(() => {
|
|
|
|
throw err;
|
|
|
|
});
|
2018-12-03 00:49:12 +03:00
|
|
|
} else {
|
2019-01-10 20:23:33 +03:00
|
|
|
console.error(err); // eslint-disable-line no-console
|
2018-12-03 00:49:12 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
state: nextState,
|
2020-08-08 23:26:39 +03:00
|
|
|
error: nextError,
|
2018-12-03 00:49:12 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Computes the next entry in the log by applying an action.
|
|
|
|
*/
|
2020-08-22 17:28:08 +03:00
|
|
|
function computeNextEntry<S, A extends Action<unknown>>(
|
|
|
|
reducer: Reducer<S, A>,
|
|
|
|
action: A,
|
|
|
|
state: S,
|
|
|
|
shouldCatchErrors: boolean | undefined
|
|
|
|
) {
|
2018-12-03 00:49:12 +03:00
|
|
|
if (!shouldCatchErrors) {
|
|
|
|
return { state: reducer(state, action) };
|
|
|
|
}
|
|
|
|
return computeWithTryCatch(reducer, action, state);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Runs the reducer on invalidated actions to get a fresh computation log.
|
|
|
|
*/
|
2020-08-22 17:28:08 +03:00
|
|
|
function recomputeStates<S, A extends Action<unknown>>(
|
|
|
|
computedStates: { state: S; error?: string }[],
|
|
|
|
minInvalidatedStateIndex: number,
|
|
|
|
reducer: Reducer<S, A>,
|
|
|
|
committedState: S,
|
|
|
|
actionsById: { [actionId: number]: PerformAction<A> },
|
|
|
|
stagedActionIds: number[],
|
|
|
|
skippedActionIds: number[],
|
|
|
|
shouldCatchErrors: boolean | undefined
|
2018-12-03 00:49:12 +03:00
|
|
|
) {
|
|
|
|
// Optimization: exit early and return the same reference
|
|
|
|
// if we know nothing could have changed.
|
|
|
|
if (
|
2019-01-10 21:51:14 +03:00
|
|
|
!computedStates ||
|
|
|
|
minInvalidatedStateIndex === -1 ||
|
2018-12-03 00:49:12 +03:00
|
|
|
(minInvalidatedStateIndex >= computedStates.length &&
|
2019-01-10 21:51:14 +03:00
|
|
|
computedStates.length === stagedActionIds.length)
|
2018-12-03 00:49:12 +03:00
|
|
|
) {
|
|
|
|
return computedStates;
|
|
|
|
}
|
|
|
|
|
|
|
|
const nextComputedStates = computedStates.slice(0, minInvalidatedStateIndex);
|
|
|
|
for (let i = minInvalidatedStateIndex; i < stagedActionIds.length; i++) {
|
|
|
|
const actionId = stagedActionIds[i];
|
|
|
|
const action = actionsById[actionId].action;
|
|
|
|
|
|
|
|
const previousEntry = nextComputedStates[i - 1];
|
|
|
|
const previousState = previousEntry ? previousEntry.state : committedState;
|
|
|
|
|
|
|
|
const shouldSkip = skippedActionIds.indexOf(actionId) > -1;
|
|
|
|
let entry;
|
|
|
|
if (shouldSkip) {
|
|
|
|
entry = previousEntry;
|
|
|
|
} else {
|
|
|
|
if (shouldCatchErrors && previousEntry && previousEntry.error) {
|
|
|
|
entry = {
|
|
|
|
state: previousState,
|
2020-08-08 23:26:39 +03:00
|
|
|
error: 'Interrupted by an error up the chain',
|
2018-12-03 00:49:12 +03:00
|
|
|
};
|
|
|
|
} else {
|
2019-01-10 21:51:14 +03:00
|
|
|
entry = computeNextEntry(
|
|
|
|
reducer,
|
|
|
|
action,
|
|
|
|
previousState,
|
|
|
|
shouldCatchErrors
|
|
|
|
);
|
2018-12-03 00:49:12 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
nextComputedStates.push(entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
return nextComputedStates;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Lifts an app's action into an action on the lifted store.
|
|
|
|
*/
|
2020-08-22 17:28:08 +03:00
|
|
|
export function liftAction<A extends Action<unknown>>(
|
|
|
|
action: A,
|
|
|
|
trace?: ((action: A) => string | undefined) | boolean,
|
|
|
|
traceLimit?: number,
|
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
|
|
toExcludeFromTrace?: Function
|
|
|
|
) {
|
2019-01-10 21:51:14 +03:00
|
|
|
return ActionCreators.performAction(
|
|
|
|
action,
|
|
|
|
trace,
|
|
|
|
traceLimit,
|
|
|
|
toExcludeFromTrace
|
|
|
|
);
|
2018-12-03 00:49:12 +03:00
|
|
|
}
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
function isArray<S, A extends Action<unknown>, MonitorState>(
|
|
|
|
nextLiftedState: LiftedState<S, A, MonitorState> | readonly A[]
|
|
|
|
): nextLiftedState is readonly A[] {
|
|
|
|
return Array.isArray(nextLiftedState);
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface LiftedState<S, A extends Action<unknown>, MonitorState> {
|
|
|
|
monitorState: MonitorState;
|
|
|
|
nextActionId: number;
|
|
|
|
actionsById: { [actionId: number]: PerformAction<A> };
|
|
|
|
stagedActionIds: number[];
|
|
|
|
skippedActionIds: number[];
|
|
|
|
committedState: S;
|
|
|
|
currentStateIndex: number;
|
|
|
|
computedStates: { state: S; error?: string }[];
|
|
|
|
isLocked: boolean;
|
|
|
|
isPaused: boolean;
|
|
|
|
}
|
|
|
|
|
2018-12-03 00:49:12 +03:00
|
|
|
/**
|
|
|
|
* Creates a history state reducer from an app's reducer.
|
|
|
|
*/
|
2020-08-22 17:28:08 +03:00
|
|
|
export function liftReducerWith<
|
|
|
|
S,
|
|
|
|
A extends Action<unknown>,
|
|
|
|
MonitorState,
|
|
|
|
MonitorAction extends Action<unknown>
|
|
|
|
>(
|
|
|
|
reducer: Reducer<S, A>,
|
|
|
|
initialCommittedState: PreloadedState<S> | undefined,
|
|
|
|
monitorReducer: Reducer<MonitorState, MonitorAction>,
|
|
|
|
options: Options<S, A, MonitorState, MonitorAction>
|
|
|
|
): Reducer<LiftedState<S, A, MonitorState>, LiftedAction<S, A, MonitorState>> {
|
|
|
|
const initialLiftedState: LiftedState<S, A, MonitorState> = {
|
|
|
|
monitorState: monitorReducer(undefined, {} as MonitorAction),
|
2018-12-03 00:49:12 +03:00
|
|
|
nextActionId: 1,
|
2020-08-22 17:28:08 +03:00
|
|
|
actionsById: { 0: liftAction(INIT_ACTION as A) },
|
2018-12-03 00:49:12 +03:00
|
|
|
stagedActionIds: [0],
|
|
|
|
skippedActionIds: [],
|
2020-08-22 17:28:08 +03:00
|
|
|
committedState: initialCommittedState as S,
|
2018-12-03 00:49:12 +03:00
|
|
|
currentStateIndex: 0,
|
|
|
|
computedStates: [],
|
|
|
|
isLocked: options.shouldStartLocked === true,
|
2020-08-08 23:26:39 +03:00
|
|
|
isPaused: options.shouldRecordChanges === false,
|
2018-12-03 00:49:12 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Manages how the history actions modify the history state.
|
|
|
|
*/
|
2020-08-22 17:28:08 +03:00
|
|
|
return (
|
|
|
|
liftedState: LiftedState<S, A, MonitorState> | undefined,
|
|
|
|
liftedAction: LiftedAction<S, A, MonitorState>
|
|
|
|
): LiftedState<S, A, MonitorState> => {
|
2018-12-03 00:49:12 +03:00
|
|
|
let {
|
|
|
|
monitorState,
|
|
|
|
actionsById,
|
|
|
|
nextActionId,
|
|
|
|
stagedActionIds,
|
|
|
|
skippedActionIds,
|
|
|
|
committedState,
|
|
|
|
currentStateIndex,
|
|
|
|
computedStates,
|
|
|
|
isLocked,
|
2020-08-08 23:26:39 +03:00
|
|
|
isPaused,
|
2018-12-03 00:49:12 +03:00
|
|
|
} = liftedState || initialLiftedState;
|
|
|
|
|
|
|
|
if (!liftedState) {
|
|
|
|
// Prevent mutating initialLiftedState
|
|
|
|
actionsById = { ...actionsById };
|
|
|
|
}
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
function commitExcessActions(n: number) {
|
2018-12-03 00:49:12 +03:00
|
|
|
// Auto-commits n-number of excess actions.
|
|
|
|
let excess = n;
|
|
|
|
let idsToDelete = stagedActionIds.slice(1, excess + 1);
|
|
|
|
|
|
|
|
for (let i = 0; i < idsToDelete.length; i++) {
|
|
|
|
if (computedStates[i + 1].error) {
|
|
|
|
// Stop if error is found. Commit actions up to error.
|
|
|
|
excess = i;
|
|
|
|
idsToDelete = stagedActionIds.slice(1, excess + 1);
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
delete actionsById[idsToDelete[i]];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-10 21:51:14 +03:00
|
|
|
skippedActionIds = skippedActionIds.filter(
|
2020-08-08 23:26:39 +03:00
|
|
|
(id) => idsToDelete.indexOf(id) === -1
|
2019-01-10 21:51:14 +03:00
|
|
|
);
|
2018-12-03 00:49:12 +03:00
|
|
|
stagedActionIds = [0, ...stagedActionIds.slice(excess + 1)];
|
|
|
|
committedState = computedStates[excess].state;
|
|
|
|
computedStates = computedStates.slice(excess);
|
2019-01-10 21:51:14 +03:00
|
|
|
currentStateIndex =
|
|
|
|
currentStateIndex > excess ? currentStateIndex - excess : 0;
|
2018-12-03 00:49:12 +03:00
|
|
|
}
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
function computePausedAction(
|
|
|
|
shouldInit?: boolean
|
|
|
|
): LiftedState<S, A, MonitorState> {
|
2018-12-03 00:49:12 +03:00
|
|
|
let computedState;
|
|
|
|
if (shouldInit) {
|
|
|
|
computedState = computedStates[currentStateIndex];
|
2020-08-22 17:28:08 +03:00
|
|
|
monitorState = monitorReducer(
|
|
|
|
monitorState,
|
|
|
|
liftedAction as MonitorAction
|
|
|
|
);
|
2018-12-03 00:49:12 +03:00
|
|
|
} else {
|
|
|
|
computedState = computeNextEntry(
|
2019-01-10 21:51:14 +03:00
|
|
|
reducer,
|
2020-08-22 17:28:08 +03:00
|
|
|
(liftedAction as PerformAction<A>).action,
|
2019-01-10 21:51:14 +03:00
|
|
|
computedStates[currentStateIndex].state,
|
|
|
|
false
|
2018-12-03 00:49:12 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
if (!options.pauseActionType || nextActionId === 1) {
|
|
|
|
return {
|
|
|
|
monitorState,
|
2020-08-22 17:28:08 +03:00
|
|
|
actionsById: { 0: liftAction(INIT_ACTION as A) },
|
2018-12-03 00:49:12 +03:00
|
|
|
nextActionId: 1,
|
|
|
|
stagedActionIds: [0],
|
|
|
|
skippedActionIds: [],
|
|
|
|
committedState: computedState.state,
|
|
|
|
currentStateIndex: 0,
|
|
|
|
computedStates: [computedState],
|
|
|
|
isLocked,
|
2020-08-08 23:26:39 +03:00
|
|
|
isPaused: true,
|
2018-12-03 00:49:12 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
if (shouldInit) {
|
|
|
|
if (currentStateIndex === stagedActionIds.length - 1) {
|
|
|
|
currentStateIndex++;
|
|
|
|
}
|
|
|
|
stagedActionIds = [...stagedActionIds, nextActionId];
|
|
|
|
nextActionId++;
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
monitorState,
|
|
|
|
actionsById: {
|
|
|
|
...actionsById,
|
2020-08-22 17:28:08 +03:00
|
|
|
[nextActionId - 1]: liftAction({
|
|
|
|
type: options.pauseActionType,
|
|
|
|
} as A),
|
2018-12-03 00:49:12 +03:00
|
|
|
},
|
|
|
|
nextActionId,
|
|
|
|
stagedActionIds,
|
|
|
|
skippedActionIds,
|
|
|
|
committedState,
|
|
|
|
currentStateIndex,
|
2019-01-10 21:51:14 +03:00
|
|
|
computedStates: [
|
|
|
|
...computedStates.slice(0, stagedActionIds.length - 1),
|
2020-08-08 23:26:39 +03:00
|
|
|
computedState,
|
2019-01-10 21:51:14 +03:00
|
|
|
],
|
2018-12-03 00:49:12 +03:00
|
|
|
isLocked,
|
2020-08-08 23:26:39 +03:00
|
|
|
isPaused: true,
|
2018-12-03 00:49:12 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
// By default, aggressively recompute every state whatever happens.
|
2018-12-03 00:49:12 +03:00
|
|
|
// This has O(n) performance, so we'll override this to a sensible
|
|
|
|
// value whenever we feel like we don't have to recompute the states.
|
|
|
|
let minInvalidatedStateIndex = 0;
|
|
|
|
|
|
|
|
// maxAge number can be changed dynamically
|
|
|
|
let maxAge = options.maxAge;
|
2019-01-10 21:51:14 +03:00
|
|
|
if (typeof maxAge === 'function')
|
|
|
|
maxAge = maxAge(liftedAction, liftedState);
|
2018-12-03 00:49:12 +03:00
|
|
|
|
|
|
|
if (/^@@redux\/(INIT|REPLACE)/.test(liftedAction.type)) {
|
|
|
|
if (options.shouldHotReload === false) {
|
2020-08-22 17:28:08 +03:00
|
|
|
actionsById = { 0: liftAction(INIT_ACTION as A) };
|
2018-12-03 00:49:12 +03:00
|
|
|
nextActionId = 1;
|
|
|
|
stagedActionIds = [0];
|
|
|
|
skippedActionIds = [];
|
2019-01-10 21:51:14 +03:00
|
|
|
committedState =
|
|
|
|
computedStates.length === 0
|
2020-08-22 17:28:08 +03:00
|
|
|
? (initialCommittedState as S)
|
2019-01-10 21:51:14 +03:00
|
|
|
: computedStates[currentStateIndex].state;
|
2018-12-03 00:49:12 +03:00
|
|
|
currentStateIndex = 0;
|
|
|
|
computedStates = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Recompute states on hot reload and init.
|
|
|
|
minInvalidatedStateIndex = 0;
|
|
|
|
|
|
|
|
if (maxAge && stagedActionIds.length > maxAge) {
|
|
|
|
// States must be recomputed before committing excess.
|
2020-08-22 17:28:08 +03:00
|
|
|
computedStates = recomputeStates<S, A>(
|
2018-12-03 00:49:12 +03:00
|
|
|
computedStates,
|
|
|
|
minInvalidatedStateIndex,
|
|
|
|
reducer,
|
|
|
|
committedState,
|
|
|
|
actionsById,
|
|
|
|
stagedActionIds,
|
|
|
|
skippedActionIds,
|
|
|
|
options.shouldCatchErrors
|
|
|
|
);
|
|
|
|
|
|
|
|
commitExcessActions(stagedActionIds.length - maxAge);
|
|
|
|
|
|
|
|
// Avoid double computation.
|
|
|
|
minInvalidatedStateIndex = Infinity;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch (liftedAction.type) {
|
|
|
|
case ActionTypes.PERFORM_ACTION: {
|
|
|
|
if (isLocked) return liftedState || initialLiftedState;
|
|
|
|
if (isPaused) return computePausedAction();
|
|
|
|
|
|
|
|
// Auto-commit as new actions come in.
|
|
|
|
if (maxAge && stagedActionIds.length >= maxAge) {
|
|
|
|
commitExcessActions(stagedActionIds.length - maxAge + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (currentStateIndex === stagedActionIds.length - 1) {
|
|
|
|
currentStateIndex++;
|
|
|
|
}
|
|
|
|
const actionId = nextActionId++;
|
|
|
|
// Mutation! This is the hottest path, and we optimize on purpose.
|
|
|
|
// It is safe because we set a new key in a cache dictionary.
|
|
|
|
actionsById[actionId] = liftedAction;
|
|
|
|
stagedActionIds = [...stagedActionIds, actionId];
|
|
|
|
// Optimization: we know that only the new action needs computing.
|
|
|
|
minInvalidatedStateIndex = stagedActionIds.length - 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ActionTypes.RESET: {
|
|
|
|
// Get back to the state the store was created with.
|
2020-08-22 17:28:08 +03:00
|
|
|
actionsById = { 0: liftAction(INIT_ACTION as A) };
|
2018-12-03 00:49:12 +03:00
|
|
|
nextActionId = 1;
|
|
|
|
stagedActionIds = [0];
|
|
|
|
skippedActionIds = [];
|
2020-08-22 17:28:08 +03:00
|
|
|
committedState = initialCommittedState as S;
|
2018-12-03 00:49:12 +03:00
|
|
|
currentStateIndex = 0;
|
|
|
|
computedStates = [];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ActionTypes.COMMIT: {
|
|
|
|
// Consider the last committed state the new starting point.
|
|
|
|
// Squash any staged actions into a single committed state.
|
2020-08-22 17:28:08 +03:00
|
|
|
actionsById = { 0: liftAction(INIT_ACTION as A) };
|
2018-12-03 00:49:12 +03:00
|
|
|
nextActionId = 1;
|
|
|
|
stagedActionIds = [0];
|
|
|
|
skippedActionIds = [];
|
|
|
|
committedState = computedStates[currentStateIndex].state;
|
|
|
|
currentStateIndex = 0;
|
|
|
|
computedStates = [];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ActionTypes.ROLLBACK: {
|
|
|
|
// Forget about any staged actions.
|
|
|
|
// Start again from the last committed state.
|
2020-08-22 17:28:08 +03:00
|
|
|
actionsById = { 0: liftAction(INIT_ACTION as A) };
|
2018-12-03 00:49:12 +03:00
|
|
|
nextActionId = 1;
|
|
|
|
stagedActionIds = [0];
|
|
|
|
skippedActionIds = [];
|
|
|
|
currentStateIndex = 0;
|
|
|
|
computedStates = [];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ActionTypes.TOGGLE_ACTION: {
|
|
|
|
// Toggle whether an action with given ID is skipped.
|
|
|
|
// Being skipped means it is a no-op during the computation.
|
|
|
|
const { id: actionId } = liftedAction;
|
|
|
|
const index = skippedActionIds.indexOf(actionId);
|
|
|
|
if (index === -1) {
|
|
|
|
skippedActionIds = [actionId, ...skippedActionIds];
|
|
|
|
} else {
|
2020-08-08 23:26:39 +03:00
|
|
|
skippedActionIds = skippedActionIds.filter((id) => id !== actionId);
|
2018-12-03 00:49:12 +03:00
|
|
|
}
|
|
|
|
// Optimization: we know history before this action hasn't changed
|
|
|
|
minInvalidatedStateIndex = stagedActionIds.indexOf(actionId);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ActionTypes.SET_ACTIONS_ACTIVE: {
|
|
|
|
// Toggle whether an action with given ID is skipped.
|
|
|
|
// Being skipped means it is a no-op during the computation.
|
|
|
|
const { start, end, active } = liftedAction;
|
|
|
|
const actionIds = [];
|
|
|
|
for (let i = start; i < end; i++) actionIds.push(i);
|
|
|
|
if (active) {
|
|
|
|
skippedActionIds = difference(skippedActionIds, actionIds);
|
|
|
|
} else {
|
|
|
|
skippedActionIds = union(skippedActionIds, actionIds);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Optimization: we know history before this action hasn't changed
|
|
|
|
minInvalidatedStateIndex = stagedActionIds.indexOf(start);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ActionTypes.JUMP_TO_STATE: {
|
|
|
|
// Without recomputing anything, move the pointer that tell us
|
|
|
|
// which state is considered the current one. Useful for sliders.
|
|
|
|
currentStateIndex = liftedAction.index;
|
|
|
|
// Optimization: we know the history has not changed.
|
|
|
|
minInvalidatedStateIndex = Infinity;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ActionTypes.JUMP_TO_ACTION: {
|
|
|
|
// Jumps to a corresponding state to a specific action.
|
|
|
|
// Useful when filtering actions.
|
|
|
|
const index = stagedActionIds.indexOf(liftedAction.actionId);
|
|
|
|
if (index !== -1) currentStateIndex = index;
|
|
|
|
minInvalidatedStateIndex = Infinity;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ActionTypes.SWEEP: {
|
|
|
|
// Forget any actions that are currently being skipped.
|
|
|
|
stagedActionIds = difference(stagedActionIds, skippedActionIds);
|
|
|
|
skippedActionIds = [];
|
2019-01-10 21:51:14 +03:00
|
|
|
currentStateIndex = Math.min(
|
|
|
|
currentStateIndex,
|
|
|
|
stagedActionIds.length - 1
|
|
|
|
);
|
2018-12-03 00:49:12 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ActionTypes.REORDER_ACTION: {
|
|
|
|
// Recompute actions in a new order.
|
|
|
|
const actionId = liftedAction.actionId;
|
|
|
|
const idx = stagedActionIds.indexOf(actionId);
|
|
|
|
// do nothing in case the action is already removed or trying to move the first action
|
|
|
|
if (idx < 1) break;
|
|
|
|
const beforeActionId = liftedAction.beforeActionId;
|
|
|
|
let newIdx = stagedActionIds.indexOf(beforeActionId);
|
2019-01-10 21:51:14 +03:00
|
|
|
if (newIdx < 1) {
|
|
|
|
// move to the beginning or to the end
|
2018-12-03 00:49:12 +03:00
|
|
|
const count = stagedActionIds.length;
|
|
|
|
newIdx = beforeActionId > stagedActionIds[count - 1] ? count : 1;
|
|
|
|
}
|
|
|
|
const diff = idx - newIdx;
|
|
|
|
|
2019-01-10 21:51:14 +03:00
|
|
|
if (diff > 0) {
|
|
|
|
// move left
|
2018-12-03 00:49:12 +03:00
|
|
|
stagedActionIds = [
|
|
|
|
...stagedActionIds.slice(0, newIdx),
|
|
|
|
actionId,
|
|
|
|
...stagedActionIds.slice(newIdx, idx),
|
2020-08-08 23:26:39 +03:00
|
|
|
...stagedActionIds.slice(idx + 1),
|
2018-12-03 00:49:12 +03:00
|
|
|
];
|
|
|
|
minInvalidatedStateIndex = newIdx;
|
2019-01-10 21:51:14 +03:00
|
|
|
} else if (diff < 0) {
|
|
|
|
// move right
|
2018-12-03 00:49:12 +03:00
|
|
|
stagedActionIds = [
|
|
|
|
...stagedActionIds.slice(0, idx),
|
|
|
|
...stagedActionIds.slice(idx + 1, newIdx),
|
|
|
|
actionId,
|
2020-08-08 23:26:39 +03:00
|
|
|
...stagedActionIds.slice(newIdx),
|
2018-12-03 00:49:12 +03:00
|
|
|
];
|
|
|
|
minInvalidatedStateIndex = idx;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ActionTypes.IMPORT_STATE: {
|
2020-08-22 17:28:08 +03:00
|
|
|
if (isArray(liftedAction.nextLiftedState)) {
|
2018-12-03 00:49:12 +03:00
|
|
|
// recompute array of actions
|
2020-08-22 17:28:08 +03:00
|
|
|
actionsById = { 0: liftAction(INIT_ACTION as A) };
|
2018-12-03 00:49:12 +03:00
|
|
|
nextActionId = 1;
|
|
|
|
stagedActionIds = [0];
|
|
|
|
skippedActionIds = [];
|
|
|
|
currentStateIndex = liftedAction.nextLiftedState.length;
|
|
|
|
computedStates = [];
|
2020-08-22 17:28:08 +03:00
|
|
|
committedState = liftedAction.preloadedState as S;
|
2018-12-03 00:49:12 +03:00
|
|
|
minInvalidatedStateIndex = 0;
|
|
|
|
// iterate through actions
|
2020-08-08 23:26:39 +03:00
|
|
|
liftedAction.nextLiftedState.forEach((action) => {
|
2019-01-10 21:51:14 +03:00
|
|
|
actionsById[nextActionId] = liftAction(
|
|
|
|
action,
|
|
|
|
options.trace || options.shouldIncludeCallstack
|
|
|
|
);
|
2018-12-03 00:49:12 +03:00
|
|
|
stagedActionIds.push(nextActionId);
|
|
|
|
nextActionId++;
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// Completely replace everything.
|
|
|
|
({
|
|
|
|
monitorState,
|
|
|
|
actionsById,
|
|
|
|
nextActionId,
|
|
|
|
stagedActionIds,
|
|
|
|
skippedActionIds,
|
|
|
|
committedState,
|
|
|
|
currentStateIndex,
|
2020-08-08 23:26:39 +03:00
|
|
|
computedStates,
|
2018-12-03 00:49:12 +03:00
|
|
|
} = liftedAction.nextLiftedState);
|
|
|
|
|
|
|
|
if (liftedAction.noRecompute) {
|
|
|
|
minInvalidatedStateIndex = Infinity;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ActionTypes.LOCK_CHANGES: {
|
|
|
|
isLocked = liftedAction.status;
|
|
|
|
minInvalidatedStateIndex = Infinity;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ActionTypes.PAUSE_RECORDING: {
|
|
|
|
isPaused = liftedAction.status;
|
|
|
|
if (isPaused) {
|
|
|
|
return computePausedAction(true);
|
|
|
|
}
|
|
|
|
// Commit when unpausing
|
2020-08-22 17:28:08 +03:00
|
|
|
actionsById = { 0: liftAction(INIT_ACTION as A) };
|
2018-12-03 00:49:12 +03:00
|
|
|
nextActionId = 1;
|
|
|
|
stagedActionIds = [0];
|
|
|
|
skippedActionIds = [];
|
|
|
|
committedState = computedStates[currentStateIndex].state;
|
|
|
|
currentStateIndex = 0;
|
|
|
|
computedStates = [];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
// If the action is not recognized, it's a monitor action.
|
|
|
|
// Optimization: a monitor action can't change history.
|
|
|
|
minInvalidatedStateIndex = Infinity;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
computedStates = recomputeStates(
|
|
|
|
computedStates,
|
|
|
|
minInvalidatedStateIndex,
|
|
|
|
reducer,
|
|
|
|
committedState,
|
|
|
|
actionsById,
|
|
|
|
stagedActionIds,
|
|
|
|
skippedActionIds,
|
|
|
|
options.shouldCatchErrors
|
|
|
|
);
|
2020-08-22 17:28:08 +03:00
|
|
|
monitorState = monitorReducer(monitorState, liftedAction as MonitorAction);
|
2018-12-03 00:49:12 +03:00
|
|
|
return {
|
|
|
|
monitorState,
|
|
|
|
actionsById,
|
|
|
|
nextActionId,
|
|
|
|
stagedActionIds,
|
|
|
|
skippedActionIds,
|
|
|
|
committedState,
|
|
|
|
currentStateIndex,
|
|
|
|
computedStates,
|
|
|
|
isLocked,
|
2020-08-08 23:26:39 +03:00
|
|
|
isPaused,
|
2018-12-03 00:49:12 +03:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides an app's view into the state of the lifted store.
|
|
|
|
*/
|
2020-08-22 17:28:08 +03:00
|
|
|
export function unliftState<
|
|
|
|
S,
|
|
|
|
A extends Action<unknown>,
|
|
|
|
MonitorState,
|
|
|
|
NextStateExt
|
|
|
|
>(
|
|
|
|
liftedState: LiftedState<S, A, MonitorState> & NextStateExt
|
|
|
|
): S & NextStateExt {
|
2018-12-03 00:49:12 +03:00
|
|
|
const { computedStates, currentStateIndex } = liftedState;
|
|
|
|
const { state } = computedStates[currentStateIndex];
|
2020-08-22 17:28:08 +03:00
|
|
|
return state as S & NextStateExt;
|
2018-12-03 00:49:12 +03:00
|
|
|
}
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
export type LiftedReducer<S, A extends Action<unknown>, MonitorState> = Reducer<
|
|
|
|
LiftedState<S, A, MonitorState>,
|
|
|
|
LiftedAction<S, A, MonitorState>
|
|
|
|
>;
|
|
|
|
|
|
|
|
export type LiftedStore<S, A extends Action<unknown>, MonitorState> = Store<
|
|
|
|
LiftedState<S, A, MonitorState>,
|
|
|
|
LiftedAction<S, A, MonitorState>
|
|
|
|
>;
|
|
|
|
|
|
|
|
export type InstrumentExt<S, A extends Action<unknown>, MonitorState> = {
|
|
|
|
liftedStore: LiftedStore<S, A, MonitorState>;
|
|
|
|
};
|
|
|
|
|
|
|
|
export type EnhancedStore<S, A extends Action<unknown>, MonitorState> = Store<
|
|
|
|
S,
|
|
|
|
A
|
|
|
|
> &
|
|
|
|
InstrumentExt<S, A, MonitorState>;
|
|
|
|
|
2018-12-03 00:49:12 +03:00
|
|
|
/**
|
|
|
|
* Provides an app's view into the lifted store.
|
|
|
|
*/
|
2020-08-22 17:28:08 +03:00
|
|
|
export function unliftStore<
|
|
|
|
S,
|
|
|
|
A extends Action<unknown>,
|
|
|
|
MonitorState,
|
|
|
|
MonitorAction extends Action<unknown>,
|
|
|
|
NextExt,
|
|
|
|
NextStateExt
|
|
|
|
>(
|
|
|
|
liftedStore: Store<
|
|
|
|
LiftedState<S, A, MonitorState> & NextStateExt,
|
|
|
|
LiftedAction<S, A, MonitorState>
|
|
|
|
> &
|
|
|
|
NextExt,
|
|
|
|
liftReducer: (r: Reducer<S, A>) => LiftedReducer<S, A, MonitorState>,
|
|
|
|
options: Options<S, A, MonitorState, MonitorAction>
|
|
|
|
) {
|
|
|
|
let lastDefinedState: S & NextStateExt;
|
2018-12-10 19:58:46 +03:00
|
|
|
const trace = options.trace || options.shouldIncludeCallstack;
|
2018-12-10 21:16:55 +03:00
|
|
|
const traceLimit = options.traceLimit || 10;
|
2018-12-03 00:49:12 +03:00
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
function getState(): S & NextStateExt {
|
|
|
|
const state = unliftState<S, A, MonitorState, NextStateExt>(
|
|
|
|
liftedStore.getState()
|
|
|
|
);
|
2018-12-03 00:49:12 +03:00
|
|
|
if (state !== undefined) {
|
|
|
|
lastDefinedState = state;
|
|
|
|
}
|
|
|
|
return lastDefinedState;
|
|
|
|
}
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
function dispatch<T extends A>(action: T): T {
|
|
|
|
liftedStore.dispatch(liftAction<A>(action, trace, traceLimit, dispatch));
|
2018-12-14 00:53:33 +03:00
|
|
|
return action;
|
|
|
|
}
|
|
|
|
|
2021-06-18 06:56:36 +03:00
|
|
|
return {
|
2018-12-03 00:49:12 +03:00
|
|
|
...liftedStore,
|
|
|
|
|
|
|
|
liftedStore,
|
|
|
|
|
2018-12-14 00:53:33 +03:00
|
|
|
dispatch,
|
2018-12-03 00:49:12 +03:00
|
|
|
|
|
|
|
getState,
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
replaceReducer(nextReducer: Reducer<S & NextStateExt, A>) {
|
|
|
|
liftedStore.replaceReducer(
|
2021-06-18 06:56:36 +03:00
|
|
|
liftReducer(
|
|
|
|
nextReducer as unknown as Reducer<S, A>
|
|
|
|
) as unknown as Reducer<
|
2020-08-22 17:28:08 +03:00
|
|
|
LiftedState<S, A, MonitorState> & NextStateExt,
|
|
|
|
LiftedAction<S, A, MonitorState>
|
|
|
|
>
|
|
|
|
);
|
2018-12-03 00:49:12 +03:00
|
|
|
},
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
[$$observable](): Observable<S> {
|
2018-12-03 00:49:12 +03:00
|
|
|
return {
|
2020-08-22 17:28:08 +03:00
|
|
|
...(liftedStore as any)[$$observable](),
|
2018-12-03 00:49:12 +03:00
|
|
|
subscribe(observer) {
|
|
|
|
if (typeof observer !== 'object') {
|
|
|
|
throw new TypeError('Expected the observer to be an object.');
|
|
|
|
}
|
|
|
|
|
|
|
|
function observeState() {
|
|
|
|
if (observer.next) {
|
|
|
|
observer.next(getState());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
observeState();
|
|
|
|
const unsubscribe = liftedStore.subscribe(observeState);
|
|
|
|
return { unsubscribe };
|
2020-08-08 23:26:39 +03:00
|
|
|
},
|
2020-08-22 17:28:08 +03:00
|
|
|
|
|
|
|
[$$observable]() {
|
|
|
|
return this;
|
|
|
|
},
|
2018-12-03 00:49:12 +03:00
|
|
|
};
|
2020-08-08 23:26:39 +03:00
|
|
|
},
|
2021-06-18 06:56:36 +03:00
|
|
|
} as unknown as Store<S & NextStateExt, A> &
|
2020-08-22 17:28:08 +03:00
|
|
|
NextExt & {
|
|
|
|
liftedStore: Store<
|
|
|
|
LiftedState<S, A, MonitorState> & NextStateExt,
|
|
|
|
LiftedAction<S, A, MonitorState>
|
|
|
|
>;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Options<
|
|
|
|
S,
|
|
|
|
A extends Action<unknown>,
|
|
|
|
MonitorState,
|
|
|
|
MonitorAction extends Action<unknown>
|
|
|
|
> {
|
|
|
|
maxAge?:
|
|
|
|
| number
|
|
|
|
| ((
|
|
|
|
currentLiftedAction: LiftedAction<S, A, MonitorState>,
|
|
|
|
previousLiftedState: LiftedState<S, A, MonitorState> | undefined
|
|
|
|
) => number);
|
|
|
|
shouldCatchErrors?: boolean;
|
|
|
|
shouldRecordChanges?: boolean;
|
|
|
|
pauseActionType?: unknown;
|
|
|
|
shouldStartLocked?: boolean;
|
|
|
|
shouldHotReload?: boolean;
|
|
|
|
trace?: boolean | ((action: A) => string | undefined);
|
|
|
|
traceLimit?: number;
|
|
|
|
shouldIncludeCallstack?: boolean;
|
2018-12-03 00:49:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Redux instrumentation store enhancer.
|
|
|
|
*/
|
2020-08-22 17:28:08 +03:00
|
|
|
export default function instrument<
|
|
|
|
OptionsS,
|
|
|
|
OptionsA extends Action<unknown>,
|
|
|
|
MonitorState = null,
|
|
|
|
MonitorAction extends Action<unknown> = never
|
|
|
|
>(
|
2021-06-18 06:56:36 +03:00
|
|
|
monitorReducer: Reducer<MonitorState, MonitorAction> = (() =>
|
|
|
|
null) as unknown as Reducer<MonitorState, MonitorAction>,
|
2020-08-22 17:28:08 +03:00
|
|
|
options: Options<OptionsS, OptionsA, MonitorState, MonitorAction> = {}
|
|
|
|
): StoreEnhancer<InstrumentExt<any, any, MonitorState>> {
|
2018-12-03 00:49:12 +03:00
|
|
|
if (typeof options.maxAge === 'number' && options.maxAge < 2) {
|
|
|
|
throw new Error(
|
|
|
|
'DevTools.instrument({ maxAge }) option, if specified, ' +
|
2019-01-10 21:51:14 +03:00
|
|
|
'may not be less than 2.'
|
2018-12-03 00:49:12 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-08-22 17:28:08 +03:00
|
|
|
return <NextExt, NextStateExt>(
|
2021-06-18 06:56:36 +03:00
|
|
|
createStore: StoreEnhancerStoreCreator<NextExt, NextStateExt>
|
|
|
|
) =>
|
|
|
|
<S, A extends Action<unknown>>(
|
|
|
|
reducer: Reducer<S, A>,
|
|
|
|
initialState?: PreloadedState<S>
|
|
|
|
) => {
|
|
|
|
function liftReducer(r: Reducer<S, A>) {
|
|
|
|
if (typeof r !== 'function') {
|
|
|
|
if (r && typeof (r as { default: unknown }).default === 'function') {
|
|
|
|
throw new Error(
|
|
|
|
'Expected the reducer to be a function. ' +
|
|
|
|
'Instead got an object with a "default" field. ' +
|
|
|
|
'Did you pass a module instead of the default export? ' +
|
|
|
|
'Try passing require(...).default instead.'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
throw new Error('Expected the reducer to be a function.');
|
2018-12-03 00:49:12 +03:00
|
|
|
}
|
2021-06-18 06:56:36 +03:00
|
|
|
return liftReducerWith<S, A, MonitorState, MonitorAction>(
|
|
|
|
r,
|
|
|
|
initialState,
|
|
|
|
monitorReducer,
|
|
|
|
options as unknown as Options<S, A, MonitorState, MonitorAction>
|
|
|
|
);
|
2018-12-03 00:49:12 +03:00
|
|
|
}
|
|
|
|
|
2021-06-18 06:56:36 +03:00
|
|
|
const liftedStore = createStore(liftReducer(reducer));
|
|
|
|
if (
|
|
|
|
(
|
|
|
|
liftedStore as Store<
|
|
|
|
LiftedState<S, A, MonitorState> & NextStateExt,
|
2020-08-22 17:28:08 +03:00
|
|
|
LiftedAction<S, A, MonitorState>
|
2021-06-18 06:56:36 +03:00
|
|
|
> &
|
|
|
|
NextExt & {
|
|
|
|
liftedStore: Store<
|
|
|
|
LiftedState<S, A, MonitorState>,
|
|
|
|
LiftedAction<S, A, MonitorState>
|
|
|
|
>;
|
|
|
|
}
|
|
|
|
).liftedStore
|
|
|
|
) {
|
|
|
|
throw new Error(
|
|
|
|
'DevTools instrumentation should not be applied more than once. ' +
|
|
|
|
'Check your store configuration.'
|
|
|
|
);
|
|
|
|
}
|
2018-12-03 00:49:12 +03:00
|
|
|
|
2021-06-18 06:56:36 +03:00
|
|
|
return unliftStore<
|
|
|
|
S,
|
|
|
|
A,
|
|
|
|
MonitorState,
|
|
|
|
MonitorAction,
|
|
|
|
NextExt,
|
|
|
|
NextStateExt
|
|
|
|
>(
|
|
|
|
liftedStore,
|
|
|
|
liftReducer,
|
|
|
|
options as unknown as Options<S, A, MonitorState, MonitorAction>
|
|
|
|
);
|
|
|
|
};
|
2018-12-03 00:49:12 +03:00
|
|
|
}
|