mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-05-28 01:33:06 +03:00
* Use rollup for d3tooltip * Use rollup for map2tree * Set moduleResolution * Use rollup for d3-state-visualizer * Use rollup for react-base16-styling * Use rollup for react-dock * Use rollup for react-json-tree * Use rollup for redux-devtools * Use rollup for redux-devtools-intrument * Use rollup for redux-devtools-chart-monitor * Update export * Use rollup for redux-devtools-dock-monitor * Use rollup for redux-devtools-inspector-monitor * Fix inspector demo * Fix invalid eslint config * Use rollup for inspector-monitor-test-tab * Use rollup for inspector-monitor-trace-tab * Use rollup for redux-devtools-log-monitor * Use rollup for redux-devtools-remote * Use rollup in redux-devtools-rtk-query-monitor * Use rollup for redux-devtools-serialize * Fix redux-devtools examples * Use rollup for redux-devtools-slider-monitor * Fix slider examples * Use rollup for redux-devtools-ui * Use rollup for redux-devtools-utils * Use rollup for redux-devtools-extension * Use rollup for redux-devtools-app * Fix Webpack app build * Fix extension build * Turn on minimization * Update CLI
43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
import { Action, compose, Reducer, StoreEnhancerStoreCreator } from 'redux';
|
|
import { instrument } from '@redux-devtools/instrument';
|
|
import { persistState } from '@redux-devtools/core';
|
|
import { ConfigWithExpandedMaxAge } from '../../browser/extension/inject/pageScript';
|
|
|
|
export function getUrlParam(key: string) {
|
|
const matches = window.location.href.match(
|
|
new RegExp(`[?&]${key}=([^&#]+)\\b`)
|
|
);
|
|
return matches && matches.length > 0 ? matches[1] : null;
|
|
}
|
|
|
|
declare global {
|
|
interface Window {
|
|
shouldCatchErrors?: boolean;
|
|
}
|
|
}
|
|
|
|
export default function configureStore<
|
|
S,
|
|
A extends Action<unknown>,
|
|
MonitorState,
|
|
MonitorAction extends Action<unknown>
|
|
>(
|
|
next: StoreEnhancerStoreCreator,
|
|
monitorReducer: Reducer<MonitorState, MonitorAction>,
|
|
config: ConfigWithExpandedMaxAge
|
|
) {
|
|
return compose(
|
|
instrument(monitorReducer, {
|
|
maxAge: config.maxAge,
|
|
trace: config.trace,
|
|
traceLimit: config.traceLimit,
|
|
shouldCatchErrors: config.shouldCatchErrors || window.shouldCatchErrors,
|
|
shouldHotReload: config.shouldHotReload,
|
|
shouldRecordChanges: config.shouldRecordChanges,
|
|
shouldStartLocked: config.shouldStartLocked,
|
|
pauseActionType: config.pauseActionType || '@@PAUSED',
|
|
}),
|
|
persistState(getUrlParam('debug_session'))
|
|
)(next);
|
|
}
|