Merge branch 'main' into main

This commit is contained in:
Dhruv Maindola 2023-09-30 22:53:00 +05:30 committed by GitHub
commit 0ee8625334
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
420 changed files with 9989 additions and 9736 deletions

View File

@ -1,5 +0,0 @@
---
'@redux-devtools/cli': major
---
Dropped support for Node.js 14.

View File

@ -1,7 +0,0 @@
---
'remotedev-redux-devtools-extension': minor
'@redux-devtools/inspector-monitor': minor
---
Option to sort State Tree keys alphabetically
Option to disable collapsing of object keys

View File

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- uses: nrwl/nx-set-shas@v3 - uses: nrwl/nx-set-shas@v3
@ -25,10 +25,10 @@ jobs:
- name: Check formatting - name: Check formatting
run: pnpm run format:check run: pnpm run format:check
- name: Build - name: Build
run: pnpm exec nx affected --target=build --parallel=1 run: pnpm run build:all
- name: Lint - name: Lint
run: pnpm exec nx affected --target=lint --parallel=1 run: pnpm run lint:all
- name: Test - name: Test
uses: GabrielBB/xvfb-action@v1 uses: coactions/setup-xvfb@v1
with: with:
run: pnpm exec nx affected --target=test --parallel=1 run: pnpm run test:all

View File

@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout Repo - name: Checkout Repo
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0 fetch-depth: 0

View File

@ -52,7 +52,7 @@ const DevTools = createDevTools(
defaultIsVisible={true} defaultIsVisible={true}
> >
<LogMonitor theme="tomorrow" /> <LogMonitor theme="tomorrow" />
</DockMonitor> </DockMonitor>,
); );
export default DevTools; export default DevTools;
@ -88,7 +88,7 @@ const enhancer = compose(
// Middleware you want to use in development: // Middleware you want to use in development:
applyMiddleware(d1, d2, d3), applyMiddleware(d1, d2, d3),
// Required! Enable Redux DevTools with the monitors you chose // Required! Enable Redux DevTools with the monitors you chose
DevTools.instrument() DevTools.instrument(),
); );
export default function configureStore(initialState) { export default function configureStore(initialState) {
@ -100,8 +100,8 @@ export default function configureStore(initialState) {
if (module.hot) { if (module.hot) {
module.hot.accept('../reducers', () => module.hot.accept('../reducers', () =>
store.replaceReducer( store.replaceReducer(
require('../reducers') /*.default if you use Babel 6+ */ require('../reducers') /*.default if you use Babel 6+ */,
) ),
); );
} }
@ -121,7 +121,7 @@ const enhancer = compose(
// Required! Enable Redux DevTools with the monitors you chose // Required! Enable Redux DevTools with the monitors you chose
DevTools.instrument(), DevTools.instrument(),
// Optional. Lets you write ?debug_session=<key> in address bar to persist debug sessions // Optional. Lets you write ?debug_session=<key> in address bar to persist debug sessions
persistState(getDebugSessionKey()) persistState(getDebugSessionKey()),
); );
function getDebugSessionKey() { function getDebugSessionKey() {
@ -200,7 +200,7 @@ const enhancer = compose(
// Required! Enable Redux DevTools with the monitors you chose // Required! Enable Redux DevTools with the monitors you chose
DevTools.instrument(), DevTools.instrument(),
// Optional. Lets you write ?debug_session=<key> in address bar to persist debug sessions // Optional. Lets you write ?debug_session=<key> in address bar to persist debug sessions
persistState(getDebugSessionKey()) persistState(getDebugSessionKey()),
); );
function getDebugSessionKey() { function getDebugSessionKey() {
@ -219,8 +219,8 @@ export default function configureStore(initialState) {
if (module.hot) { if (module.hot) {
module.hot.accept('../reducers', () => module.hot.accept('../reducers', () =>
store.replaceReducer( store.replaceReducer(
require('../reducers') /*.default if you use Babel 6+ */ require('../reducers') /*.default if you use Babel 6+ */,
) ),
); );
} }
@ -333,7 +333,7 @@ render(
<Provider store={store}> <Provider store={store}>
<App /> <App />
</Provider>, </Provider>,
document.getElementById('root') document.getElementById('root'),
); );
if (process.env.NODE_ENV !== 'production') { if (process.env.NODE_ENV !== 'production') {
@ -353,7 +353,7 @@ export default function showDevTools(store) {
const popup = window.open( const popup = window.open(
null, null,
'Redux DevTools', 'Redux DevTools',
'menubar=no,location=no,resizable=yes,scrollbars=no,status=no' 'menubar=no,location=no,resizable=yes,scrollbars=no,status=no',
); );
// Reload in case it already exists // Reload in case it already exists
popup.location.reload(); popup.location.reload();
@ -362,7 +362,7 @@ export default function showDevTools(store) {
popup.document.write('<div id="react-devtools-root"></div>'); popup.document.write('<div id="react-devtools-root"></div>');
render( render(
<DevTools store={store} />, <DevTools store={store} />,
popup.document.getElementById('react-devtools-root') popup.document.getElementById('react-devtools-root'),
); );
}, 10); }, 10);
} }

View File

@ -3,15 +3,29 @@
"plugins": ["@typescript-eslint"], "plugins": ["@typescript-eslint"],
"extends": [ "extends": [
"eslint:recommended", "eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended-type-checked",
"plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/stylistic-type-checked",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier" "prettier"
], ],
"rules": { "rules": {
"@typescript-eslint/no-unsafe-return": "off", "@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-assignment": "off", "@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off", "@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off" "@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/prefer-optional-chain": "off",
"@typescript-eslint/no-base-to-string": "off",
"@typescript-eslint/consistent-indexed-object-style": "off",
"@typescript-eslint/prefer-nullish-coalescing": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/prefer-for-of": "off",
"@typescript-eslint/non-nullable-type-assertion-style": "off",
"@typescript-eslint/class-literal-property-style": "off",
"@typescript-eslint/no-redundant-type-constituents": "off",
"@typescript-eslint/prefer-string-starts-ends-with": "off",
"@typescript-eslint/no-duplicate-type-constituents": "off",
"@typescript-eslint/array-type": "off",
"@typescript-eslint/prefer-function-type": "off"
} }
} }

View File

@ -2,9 +2,8 @@
"plugins": ["jest"], "plugins": ["jest"],
"extends": [ "extends": [
"eslint:recommended", "eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended-type-checked",
"plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/stylistic-type-checked",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:jest/recommended", "plugin:jest/recommended",
"plugin:jest/style", "plugin:jest/style",
"prettier" "prettier"
@ -13,6 +12,21 @@
"@typescript-eslint/no-unsafe-return": "off", "@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-assignment": "off", "@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off", "@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off" "@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/prefer-optional-chain": "off",
"@typescript-eslint/no-base-to-string": "off",
"@typescript-eslint/consistent-indexed-object-style": "off",
"@typescript-eslint/prefer-nullish-coalescing": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/prefer-for-of": "off",
"@typescript-eslint/non-nullable-type-assertion-style": "off",
"@typescript-eslint/class-literal-property-style": "off",
"@typescript-eslint/no-redundant-type-constituents": "off",
"@typescript-eslint/prefer-string-starts-ends-with": "off",
"@typescript-eslint/no-duplicate-type-constituents": "off",
"@typescript-eslint/array-type": "off",
"@typescript-eslint/prefer-function-type": "off"
} }
} }

View File

@ -8,9 +8,8 @@
"plugins": ["@typescript-eslint", "react"], "plugins": ["@typescript-eslint", "react"],
"extends": [ "extends": [
"eslint:recommended", "eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended-type-checked",
"plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/stylistic-type-checked",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:react/recommended", "plugin:react/recommended",
"plugin:react-hooks/recommended", "plugin:react-hooks/recommended",
"prettier" "prettier"
@ -32,6 +31,21 @@
"attributes": false "attributes": false
} }
} }
] ],
"@typescript-eslint/prefer-optional-chain": "off",
"@typescript-eslint/no-base-to-string": "off",
"@typescript-eslint/consistent-indexed-object-style": "off",
"@typescript-eslint/prefer-nullish-coalescing": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/prefer-for-of": "off",
"@typescript-eslint/non-nullable-type-assertion-style": "off",
"@typescript-eslint/class-literal-property-style": "off",
"@typescript-eslint/no-redundant-type-constituents": "off",
"@typescript-eslint/prefer-string-starts-ends-with": "off",
"@typescript-eslint/no-duplicate-type-constituents": "off",
"@typescript-eslint/array-type": "off",
"@typescript-eslint/prefer-function-type": "off"
} }
} }

View File

@ -2,9 +2,8 @@
"plugins": ["jest"], "plugins": ["jest"],
"extends": [ "extends": [
"eslint:recommended", "eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended-type-checked",
"plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/stylistic-type-checked",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:react/recommended", "plugin:react/recommended",
"plugin:react-hooks/recommended", "plugin:react-hooks/recommended",
"plugin:jest/recommended", "plugin:jest/recommended",
@ -15,6 +14,21 @@
"@typescript-eslint/no-unsafe-return": "off", "@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-assignment": "off", "@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off", "@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off" "@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/prefer-optional-chain": "off",
"@typescript-eslint/no-base-to-string": "off",
"@typescript-eslint/consistent-indexed-object-style": "off",
"@typescript-eslint/prefer-nullish-coalescing": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/prefer-for-of": "off",
"@typescript-eslint/non-nullable-type-assertion-style": "off",
"@typescript-eslint/class-literal-property-style": "off",
"@typescript-eslint/no-redundant-type-constituents": "off",
"@typescript-eslint/prefer-string-starts-ends-with": "off",
"@typescript-eslint/no-duplicate-type-constituents": "off",
"@typescript-eslint/array-type": "off",
"@typescript-eslint/prefer-function-type": "off"
} }
} }

View File

@ -1,5 +1,43 @@
# remotedev-redux-devtools-extension # remotedev-redux-devtools-extension
## 3.1.4
### Patch Changes
- Updated dependencies [e57bcb39]
- @redux-devtools/app@4.0.0
## 3.1.3
### Patch Changes
- bca76009: Fix missing CSS for code editor
## 3.1.2
### Patch Changes
- 64ed81b0: Fix extension in Firefox and Chrome Incognito
## 3.1.1
### Patch Changes
- d18525b5: Increase min-width of popup
- Updated dependencies [57751ff9]
- @redux-devtools/app@3.0.0
## 3.1.0
### Minor Changes
- d54adb76: Option to sort State Tree keys alphabetically
Option to disable collapsing of object keys
### Patch Changes
- @redux-devtools/app@2.2.2
## 3.0.19 ## 3.0.19
### Patch Changes ### Patch Changes

View File

@ -105,7 +105,7 @@ const composeEnhancers =
: compose; : compose;
const enhancer = composeEnhancers( const enhancer = composeEnhancers(
applyMiddleware(...middleware) applyMiddleware(...middleware),
// other store enhancers if any // other store enhancers if any
); );
const store = createStore(reducer, enhancer); const store = createStore(reducer, enhancer);
@ -130,9 +130,9 @@ import { composeWithDevTools } from '@redux-devtools/extension';
const store = createStore( const store = createStore(
reducer, reducer,
composeWithDevTools( composeWithDevTools(
applyMiddleware(...middleware) applyMiddleware(...middleware),
// other store enhancers if any // other store enhancers if any
) ),
); );
``` ```
@ -148,9 +148,9 @@ const composeEnhancers = composeWithDevTools({
const store = createStore( const store = createStore(
reducer, reducer,
/* preloadedState, */ composeEnhancers( /* preloadedState, */ composeEnhancers(
applyMiddleware(...middleware) applyMiddleware(...middleware),
// other store enhancers if any // other store enhancers if any
) ),
); );
``` ```
@ -164,7 +164,7 @@ import { devToolsEnhancer } from '@redux-devtools/extension';
const store = createStore( const store = createStore(
reducer, reducer,
/* preloadedState, */ devToolsEnhancer() /* preloadedState, */ devToolsEnhancer(),
// Specify name here, actionsDenylist, actionsCreators and other options if needed // Specify name here, actionsDenylist, actionsCreators and other options if needed
); );
``` ```
@ -181,7 +181,7 @@ import { devToolsEnhancerLogOnlyInProduction } from '@redux-devtools/extension';
const store = createStore( const store = createStore(
reducer, reducer,
/* preloadedState, */ devToolsEnhancerLogOnlyInProduction() /* preloadedState, */ devToolsEnhancerLogOnlyInProduction(),
// options like actionSanitizer, stateSanitizer // options like actionSanitizer, stateSanitizer
); );
``` ```
@ -198,9 +198,9 @@ const composeEnhancers = composeWithDevToolsLogOnlyInProduction({
const store = createStore( const store = createStore(
reducer, reducer,
/* preloadedState, */ composeEnhancers( /* preloadedState, */ composeEnhancers(
applyMiddleware(...middleware) applyMiddleware(...middleware),
// other store enhancers if any // other store enhancers if any
) ),
); );
``` ```

71
extension/build.mjs Normal file
View File

@ -0,0 +1,71 @@
import * as fs from 'node:fs';
import * as esbuild from 'esbuild';
import pug from 'pug';
const args = process.argv.slice(2);
const prod = !args.includes('--dev');
const commonEsbuildOptions = {
bundle: true,
logLevel: 'info',
outdir: 'dist',
minify: prod,
sourcemap: !prod,
define: {
'process.env.NODE_ENV': prod ? '"production"' : '"development"',
'process.env.BABEL_ENV': prod ? '"production"' : '"development"',
},
};
await esbuild.build({
...commonEsbuildOptions,
entryPoints: [
{ out: 'background.bundle', in: 'src/background/index.ts' },
{ out: 'options.bundle', in: 'src/options/index.tsx' },
{ out: 'window.bundle', in: 'src/window/index.tsx' },
{ out: 'remote.bundle', in: 'src/remote/index.tsx' },
{ out: 'devpanel.bundle', in: 'src/devpanel/index.tsx' },
{ out: 'devtools.bundle', in: 'src/devtools/index.ts' },
{ out: 'content.bundle', in: 'src/contentScript/index.ts' },
{ out: 'page.bundle', in: 'src/pageScript/index.ts' },
...(prod ? [] : [{ out: 'pagewrap.bundle', in: 'src/pageScriptWrap.ts' }]),
],
loader: {
'.woff2': 'file',
},
});
if (prod) {
await esbuild.build({
...commonEsbuildOptions,
entryPoints: [{ out: 'pagewrap.bundle', in: 'src/pageScriptWrap.ts' }],
loader: {
'.js': 'text',
},
});
}
console.log();
console.log('Creating HTML files...');
const htmlFiles = ['devpanel', 'devtools', 'options', 'remote', 'window'];
for (const htmlFile of htmlFiles) {
fs.writeFileSync(
`dist/${htmlFile}.html`,
pug.renderFile(`src/${htmlFile}/${htmlFile}.pug`),
);
}
console.log('Copying manifest.json...');
fs.copyFileSync('chrome/manifest.json', 'dist/manifest.json');
console.log('Copying assets...');
fs.cpSync('src/assets', 'dist', { recursive: true });
console.log('Copying dist for each browser...');
fs.cpSync('dist', 'chrome/dist', { recursive: true });
fs.copyFileSync('chrome/manifest.json', 'chrome/dist/manifest.json');
fs.cpSync('dist', 'edge/dist', { recursive: true });
fs.copyFileSync('edge/manifest.json', 'edge/dist/manifest.json');
fs.cpSync('dist', 'firefox/dist', { recursive: true });
fs.copyFileSync('firefox/manifest.json', 'firefox/dist/manifest.json');

View File

@ -1,5 +1,5 @@
{ {
"version": "3.0.19", "version": "3.1.3",
"name": "Redux DevTools", "name": "Redux DevTools",
"description": "Redux DevTools for debugging application's state changes.", "description": "Redux DevTools for debugging application's state changes.",
"homepage_url": "https://github.com/reduxjs/redux-devtools", "homepage_url": "https://github.com/reduxjs/redux-devtools",

View File

@ -5,18 +5,18 @@ Use with
- `window.__REDUX_DEVTOOLS_EXTENSION__([options])` - `window.__REDUX_DEVTOOLS_EXTENSION__([options])`
- `window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__([options])()` - `window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__([options])()`
- `window.__REDUX_DEVTOOLS_EXTENSION__.connect([options])` - `window.__REDUX_DEVTOOLS_EXTENSION__.connect([options])`
- `redux-devtools-extension` npm package: - `@redux-devtools/extension` npm package:
```js ```js
import { composeWithDevTools } from 'redux-devtools-extension'; import { composeWithDevTools } from '@redux-devtools/extension';
const composeEnhancers = composeWithDevTools(options); const composeEnhancers = composeWithDevTools(options);
const store = createStore( const store = createStore(
reducer, reducer,
/* preloadedState, */ composeEnhancers( /* preloadedState, */ composeEnhancers(
applyMiddleware(...middleware) applyMiddleware(...middleware),
// other store enhancers if any // other store enhancers if any
) ),
); );
``` ```
@ -70,7 +70,7 @@ _boolean_ or _object_ which contains:
}, },
}, },
}, },
}) }),
); );
``` ```
@ -87,7 +87,7 @@ _boolean_ or _object_ which contains:
replacer: (key, value) => replacer: (key, value) =>
value && mori.isMap(value) ? mori.toJs(value) : value, value && mori.isMap(value) ? mori.toJs(value) : value,
}, },
}) }),
); );
``` ```
@ -109,7 +109,7 @@ _boolean_ or _object_ which contains:
} }
}, },
}, },
}) }),
); );
``` ```
@ -134,7 +134,7 @@ _boolean_ or _object_ which contains:
} }
}, },
}, },
}) }),
); );
``` ```
@ -174,7 +174,7 @@ _boolean_ or _object_ which contains:
immutable: Immutable, immutable: Immutable,
refs: [ABRecord], refs: [ABRecord],
}, },
}) }),
); );
``` ```
@ -185,7 +185,7 @@ In the example bellow it will always send `{ component: '[React]' }`, regardless
```js ```js
function component( function component(
state = { component: null, toJSON: () => ({ component: '[React]' }) }, state = { component: null, toJSON: () => ({ component: '[React]' }) },
action action,
) { ) {
switch (action.type) { switch (action.type) {
case 'ADD_COMPONENT': case 'ADD_COMPONENT':
@ -206,7 +206,7 @@ function counter(
return { conter: this.count * 10 }; return { conter: this.count * 10 };
}, },
}, },
action action,
) { ) {
switch (action.type) { switch (action.type) {
case 'INCREMENT': case 'INCREMENT':
@ -236,7 +236,7 @@ const store = createStore(
actionSanitizer, actionSanitizer,
stateSanitizer: (state) => stateSanitizer: (state) =>
state.data ? { ...state, data: '<<LONG_BLOB>>' } : state, state.data ? { ...state, data: '<<LONG_BLOB>>' } : state,
}) }),
); );
``` ```
@ -254,7 +254,7 @@ createStore(
actionsDenylist: 'SOME_ACTION', actionsDenylist: 'SOME_ACTION',
// or actionsDenylist: ['SOME_ACTION', 'SOME_OTHER_ACTION'] // or actionsDenylist: ['SOME_ACTION', 'SOME_OTHER_ACTION']
// or just actionsDenylist: 'SOME_' to omit both // or just actionsDenylist: 'SOME_' to omit both
}) }),
); );
``` ```
@ -270,7 +270,7 @@ const store = createStore(
window.__REDUX_DEVTOOLS_EXTENSION__({ window.__REDUX_DEVTOOLS_EXTENSION__({
predicate: (state, action) => predicate: (state, action) =>
state.dev.logLevel === VERBOSE && !action.forwarded, state.dev.logLevel === VERBOSE && !action.forwarded,
}) }),
); );
``` ```

View File

@ -32,7 +32,7 @@ import { inspectProps } from 'react-inspect-props';
compose( compose(
withState('count', 'setCount', 0), withState('count', 'setCount', 0),
inspectProps('Counter inspector') inspectProps('Counter inspector'),
)(Counter); )(Counter);
``` ```
@ -167,7 +167,7 @@ run(App, {
{ id: newId(), num: 0 }, { id: newId(), num: 0 },
{ id: newId(), num: 0 }, { id: newId(), num: 0 },
], ],
}) }),
), ),
}); });
``` ```

View File

@ -28,7 +28,7 @@ type WindowWithDevTools = Window & {
}; };
const isReduxDevtoolsExtenstionExist = ( const isReduxDevtoolsExtenstionExist = (
arg: Window | WindowWithDevTools arg: Window | WindowWithDevTools,
): arg is WindowWithDevTools => { ): arg is WindowWithDevTools => {
return '__REDUX_DEVTOOLS_EXTENSION__' in arg; return '__REDUX_DEVTOOLS_EXTENSION__' in arg;
}; };
@ -40,7 +40,7 @@ const store = createStore(
initialState, initialState,
isReduxDevtoolsExtenstionExist(window) isReduxDevtoolsExtenstionExist(window)
? window.__REDUX_DEVTOOLS_EXTENSION__() ? window.__REDUX_DEVTOOLS_EXTENSION__()
: undefined : undefined,
); );
``` ```
@ -72,7 +72,7 @@ const store = createStore(
instaceID: 2, instaceID: 2,
name: 'Allowlisted', name: 'Allowlisted',
actionsAllowlist: '...', actionsAllowlist: '...',
}) }),
) ),
); );
``` ```

View File

@ -35,8 +35,8 @@ const store = createStore(
window.__REDUX_DEVTOOLS_EXTENSION__ window.__REDUX_DEVTOOLS_EXTENSION__
? window.__REDUX_DEVTOOLS_EXTENSION__() ? window.__REDUX_DEVTOOLS_EXTENSION__()
: (noop) => noop, : (noop) => noop,
batchedSubscribe(/* ... */) batchedSubscribe(/* ... */),
) ),
); );
``` ```
@ -60,7 +60,7 @@ const store = createStore(
actionSanitizer, actionSanitizer,
stateSanitizer: (state) => stateSanitizer: (state) =>
state.data ? { ...state, data: '<<LONG_BLOB>>' } : state, state.data ? { ...state, data: '<<LONG_BLOB>>' } : state,
}) }),
); );
``` ```
@ -124,7 +124,7 @@ const store = Redux.createStore(
window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__ &&
window.__REDUX_DEVTOOLS_EXTENSION__({ window.__REDUX_DEVTOOLS_EXTENSION__({
serialize: true, serialize: true,
}) }),
); );
``` ```

View File

@ -1,5 +1,5 @@
{ {
"version": "3.0.19", "version": "3.1.3",
"name": "Redux DevTools", "name": "Redux DevTools",
"description": "Redux DevTools for debugging application's state changes.", "description": "Redux DevTools for debugging application's state changes.",
"homepage_url": "https://github.com/reduxjs/redux-devtools", "homepage_url": "https://github.com/reduxjs/redux-devtools",

View File

@ -1,4 +1,4 @@
<!DOCTYPE html> <!doctype html>
<html> <html>
<head> <head>
<title>Redux counter example</title> <title>Redux counter example</title>

View File

@ -10,5 +10,5 @@ render(
<Provider store={store}> <Provider store={store}>
<App /> <App />
</Provider>, </Provider>,
document.getElementById('root') document.getElementById('root'),
); );

View File

@ -11,7 +11,7 @@ app.use(
webpackDevMiddleware(compiler, { webpackDevMiddleware(compiler, {
noInfo: true, noInfo: true,
publicPath: config.output.publicPath, publicPath: config.output.publicPath,
}) }),
); );
app.use(webpackHotMiddleware(compiler)); app.use(webpackHotMiddleware(compiler));
@ -26,7 +26,7 @@ app.listen(port, function (error) {
console.info( console.info(
'==> 🌎 Listening on port %s. Open up http://localhost:%s/ in your browser.', '==> 🌎 Listening on port %s. Open up http://localhost:%s/ in your browser.',
port, port,
port port,
); );
} }
}); });

View File

@ -14,7 +14,7 @@ export default function configureStore(preloadedState) {
const store = createStore( const store = createStore(
reducer, reducer,
preloadedState, preloadedState,
composeEnhancers(applyMiddleware(invariant(), thunk)) composeEnhancers(applyMiddleware(invariant(), thunk)),
); );
if (module.hot) { if (module.hot) {

View File

@ -37,7 +37,7 @@ function mockStore(getState, expectedActions, onLastAction) {
} }
const mockStoreWithMiddleware = applyMiddleware(...middlewares)( const mockStoreWithMiddleware = applyMiddleware(...middlewares)(
mockStoreWithoutMiddleware mockStoreWithoutMiddleware,
); );
return mockStoreWithMiddleware(); return mockStoreWithMiddleware();

View File

@ -11,7 +11,7 @@ function setup() {
decrement: expect.createSpy(), decrement: expect.createSpy(),
}; };
const component = TestUtils.renderIntoDocument( const component = TestUtils.renderIntoDocument(
<Counter counter={1} {...actions} /> <Counter counter={1} {...actions} />,
); );
return { return {
component: component, component: component,

View File

@ -10,7 +10,7 @@ function setup(initialState) {
const app = TestUtils.renderIntoDocument( const app = TestUtils.renderIntoDocument(
<Provider store={store}> <Provider store={store}>
<App /> <App />
</Provider> </Provider>,
); );
return { return {
app: app, app: app,

View File

@ -1,4 +1,4 @@
<!DOCTYPE html> <!doctype html>
<html> <html>
<head> <head>
<title>React counter example</title> <title>React counter example</title>

View File

@ -69,7 +69,7 @@ class MainSection extends Component {
const filteredTodos = todos.filter(TODO_FILTERS[filter]); const filteredTodos = todos.filter(TODO_FILTERS[filter]);
const completedCount = todos.reduce( const completedCount = todos.reduce(
(count, todo) => (todo.completed ? count + 1 : count), (count, todo) => (todo.completed ? count + 1 : count),
0 0,
); );
return ( return (

View File

@ -1,4 +1,4 @@
<!DOCTYPE html> <!doctype html>
<html> <html>
<head> <head>
<title>Redux TodoMVC example</title> <title>Redux TodoMVC example</title>

View File

@ -12,5 +12,5 @@ render(
<Provider store={store}> <Provider store={store}>
<Root /> <Root />
</Provider>, </Provider>,
document.getElementById('root') document.getElementById('root'),
); );

View File

@ -34,14 +34,14 @@ export default function todos(state = initialState, action) {
return state.map((todo) => return state.map((todo) =>
todo.id === action.id todo.id === action.id
? Object.assign({}, todo, { text: action.text }) ? Object.assign({}, todo, { text: action.text })
: todo : todo,
); );
case COMPLETE_TODO: case COMPLETE_TODO:
return state.map((todo) => return state.map((todo) =>
todo.id === action.id todo.id === action.id
? Object.assign({}, todo, { completed: !todo.completed }) ? Object.assign({}, todo, { completed: !todo.completed })
: todo : todo,
); );
case COMPLETE_ALL: case COMPLETE_ALL:
@ -49,7 +49,7 @@ export default function todos(state = initialState, action) {
return state.map((todo) => return state.map((todo) =>
Object.assign({}, todo, { Object.assign({}, todo, {
completed: !areAllMarked, completed: !areAllMarked,
}) }),
); );
case CLEAR_COMPLETED: case CLEAR_COMPLETED:

View File

@ -11,7 +11,7 @@ app.use(
webpackDevMiddleware(compiler, { webpackDevMiddleware(compiler, {
noInfo: true, noInfo: true,
publicPath: config.output.publicPath, publicPath: config.output.publicPath,
}) }),
); );
app.use(webpackHotMiddleware(compiler)); app.use(webpackHotMiddleware(compiler));
@ -26,7 +26,7 @@ app.listen(port, function (error) {
console.info( console.info(
'==> 🌎 Listening on port %s. Open up http://localhost:%s/ in your browser.', '==> 🌎 Listening on port %s. Open up http://localhost:%s/ in your browser.',
port, port,
port port,
); );
} }
}); });

View File

@ -11,7 +11,7 @@ import rootReducer from '../reducers';
export default function configureStore(initialState) { export default function configureStore(initialState) {
let finalCreateStore = compose( let finalCreateStore = compose(
reduxReactRouter({ createHistory }), reduxReactRouter({ createHistory }),
global.devToolsExtension ? global.devToolsExtension() : (f) => f global.devToolsExtension ? global.devToolsExtension() : (f) => f,
)(createStore); )(createStore);
const store = finalCreateStore(rootReducer, initialState); const store = finalCreateStore(rootReducer, initialState);

View File

@ -13,7 +13,7 @@ function setup(propOverrides) {
onClearCompleted: expect.createSpy(), onClearCompleted: expect.createSpy(),
onShow: expect.createSpy(), onShow: expect.createSpy(),
}, },
propOverrides propOverrides,
); );
const renderer = TestUtils.createRenderer(); const renderer = TestUtils.createRenderer();
@ -72,7 +72,7 @@ describe('components', () => {
0: 'All', 0: 'All',
1: 'Active', 1: 'Active',
2: 'Completed', 2: 'Completed',
}[i] }[i],
); );
}); });
}); });

View File

@ -29,7 +29,7 @@ function setup(propOverrides) {
clearCompleted: expect.createSpy(), clearCompleted: expect.createSpy(),
}, },
}, },
propOverrides propOverrides,
); );
const renderer = TestUtils.createRenderer(); const renderer = TestUtils.createRenderer();

View File

@ -12,7 +12,7 @@ function setup(propOverrides) {
editing: false, editing: false,
newTodo: false, newTodo: false,
}, },
propOverrides propOverrides,
); );
const renderer = TestUtils.createRenderer(); const renderer = TestUtils.createRenderer();

View File

@ -18,7 +18,7 @@ describe('todos reducer', () => {
todos([], { todos([], {
type: types.ADD_TODO, type: types.ADD_TODO,
text: 'Run the tests', text: 'Run the tests',
}) }),
).toEqual([ ).toEqual([
{ {
text: 'Run the tests', text: 'Run the tests',
@ -39,8 +39,8 @@ describe('todos reducer', () => {
{ {
type: types.ADD_TODO, type: types.ADD_TODO,
text: 'Run the tests', text: 'Run the tests',
} },
) ),
).toEqual([ ).toEqual([
{ {
text: 'Run the tests', text: 'Run the tests',
@ -71,8 +71,8 @@ describe('todos reducer', () => {
{ {
type: types.ADD_TODO, type: types.ADD_TODO,
text: 'Fix the tests', text: 'Fix the tests',
} },
) ),
).toEqual([ ).toEqual([
{ {
text: 'Fix the tests', text: 'Fix the tests',
@ -110,8 +110,8 @@ describe('todos reducer', () => {
{ {
type: types.DELETE_TODO, type: types.DELETE_TODO,
id: 1, id: 1,
} },
) ),
).toEqual([ ).toEqual([
{ {
text: 'Use Redux', text: 'Use Redux',
@ -140,8 +140,8 @@ describe('todos reducer', () => {
type: types.EDIT_TODO, type: types.EDIT_TODO,
text: 'Fix the tests', text: 'Fix the tests',
id: 1, id: 1,
} },
) ),
).toEqual([ ).toEqual([
{ {
text: 'Fix the tests', text: 'Fix the tests',
@ -174,8 +174,8 @@ describe('todos reducer', () => {
{ {
type: types.COMPLETE_TODO, type: types.COMPLETE_TODO,
id: 1, id: 1,
} },
) ),
).toEqual([ ).toEqual([
{ {
text: 'Run the tests', text: 'Run the tests',
@ -207,8 +207,8 @@ describe('todos reducer', () => {
], ],
{ {
type: types.COMPLETE_ALL, type: types.COMPLETE_ALL,
} },
) ),
).toEqual([ ).toEqual([
{ {
text: 'Run the tests', text: 'Run the tests',
@ -239,8 +239,8 @@ describe('todos reducer', () => {
], ],
{ {
type: types.COMPLETE_ALL, type: types.COMPLETE_ALL,
} },
) ),
).toEqual([ ).toEqual([
{ {
text: 'Run the tests', text: 'Run the tests',
@ -272,8 +272,8 @@ describe('todos reducer', () => {
], ],
{ {
type: types.CLEAR_COMPLETED, type: types.CLEAR_COMPLETED,
} },
) ),
).toEqual([ ).toEqual([
{ {
text: 'Use Redux', text: 'Use Redux',
@ -308,7 +308,7 @@ describe('todos reducer', () => {
completed: false, completed: false,
text: 'Write tests', text: 'Write tests',
}, },
]) ]),
).toEqual([ ).toEqual([
{ {
text: 'Write more tests', text: 'Write more tests',

View File

@ -1,4 +1,4 @@
<!DOCTYPE html> <!doctype html>
<html> <html>
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />

View File

@ -20,7 +20,7 @@ const composeEnhancers =
compose; compose;
const store = createStore( const store = createStore(
reducer, reducer,
composeEnhancers(applyMiddleware(sagaMiddleware)) composeEnhancers(applyMiddleware(sagaMiddleware)),
); );
sagaMiddleware.run(rootSaga); sagaMiddleware.run(rootSaga);
@ -35,7 +35,7 @@ function render() {
onIncrementIfOdd={() => action('INCREMENT_IF_ODD')} onIncrementIfOdd={() => action('INCREMENT_IF_ODD')}
onIncrementAsync={() => action('INCREMENT_ASYNC')} onIncrementAsync={() => action('INCREMENT_ASYNC')}
/>, />,
document.getElementById('root') document.getElementById('root'),
); );
} }

View File

@ -70,7 +70,7 @@ class MainSection extends Component {
const filteredTodos = todos.filter(TODO_FILTERS[filter]); const filteredTodos = todos.filter(TODO_FILTERS[filter]);
const completedCount = todos.reduce( const completedCount = todos.reduce(
(count, todo) => (todo.completed ? count + 1 : count), (count, todo) => (todo.completed ? count + 1 : count),
0 0,
); );
return ( return (

View File

@ -1,4 +1,4 @@
<!DOCTYPE html> <!doctype html>
<html> <html>
<head> <head>
<title>Redux TodoMVC example</title> <title>Redux TodoMVC example</title>

View File

@ -12,5 +12,5 @@ render(
<Provider store={store}> <Provider store={store}>
<App /> <App />
</Provider>, </Provider>,
document.getElementById('root') document.getElementById('root'),
); );

View File

@ -36,7 +36,7 @@ export default function todos(state = initialState, action) {
return state.map((todo) => return state.map((todo) =>
todo.id === action.id todo.id === action.id
? Object.assign({}, todo, { text: action.text, modified: new Date() }) ? Object.assign({}, todo, { text: action.text, modified: new Date() })
: todo : todo,
); );
case COMPLETE_TODO: case COMPLETE_TODO:
@ -46,7 +46,7 @@ export default function todos(state = initialState, action) {
completed: !todo.completed, completed: !todo.completed,
modified: new Date(), modified: new Date(),
}) })
: todo : todo,
); );
case COMPLETE_ALL: case COMPLETE_ALL:
@ -55,7 +55,7 @@ export default function todos(state = initialState, action) {
Object.assign({}, todo, { Object.assign({}, todo, {
completed: !areAllMarked, completed: !areAllMarked,
modified: new Date(), modified: new Date(),
}) }),
); );
case CLEAR_COMPLETED: case CLEAR_COMPLETED:

View File

@ -11,7 +11,7 @@ app.use(
webpackDevMiddleware(compiler, { webpackDevMiddleware(compiler, {
noInfo: true, noInfo: true,
publicPath: config.output.publicPath, publicPath: config.output.publicPath,
}) }),
); );
app.use(webpackHotMiddleware(compiler)); app.use(webpackHotMiddleware(compiler));
@ -26,7 +26,7 @@ app.listen(port, function (error) {
console.info( console.info(
'==> 🌎 Listening on port %s. Open up http://localhost:%s/ in your browser.', '==> 🌎 Listening on port %s. Open up http://localhost:%s/ in your browser.',
port, port,
port port,
); );
} }
}); });

View File

@ -13,7 +13,7 @@ export default function configureStore(preloadedState) {
if (!enhancer) { if (!enhancer) {
console.warn( console.warn(
'Install Redux DevTools Extension to inspect the app state: ' + 'Install Redux DevTools Extension to inspect the app state: ' +
'https://github.com/zalmoxisus/redux-devtools-extension#installation' 'https://github.com/zalmoxisus/redux-devtools-extension#installation',
); );
} }

View File

@ -13,7 +13,7 @@ function setup(propOverrides) {
onClearCompleted: expect.createSpy(), onClearCompleted: expect.createSpy(),
onShow: expect.createSpy(), onShow: expect.createSpy(),
}, },
propOverrides propOverrides,
); );
const renderer = TestUtils.createRenderer(); const renderer = TestUtils.createRenderer();
@ -72,7 +72,7 @@ describe('components', () => {
0: 'All', 0: 'All',
1: 'Active', 1: 'Active',
2: 'Completed', 2: 'Completed',
}[i] }[i],
); );
}); });
}); });

View File

@ -29,7 +29,7 @@ function setup(propOverrides) {
clearCompleted: expect.createSpy(), clearCompleted: expect.createSpy(),
}, },
}, },
propOverrides propOverrides,
); );
const renderer = TestUtils.createRenderer(); const renderer = TestUtils.createRenderer();

View File

@ -12,7 +12,7 @@ function setup(propOverrides) {
editing: false, editing: false,
newTodo: false, newTodo: false,
}, },
propOverrides propOverrides,
); );
const renderer = TestUtils.createRenderer(); const renderer = TestUtils.createRenderer();

View File

@ -18,7 +18,7 @@ describe('todos reducer', () => {
todos([], { todos([], {
type: types.ADD_TODO, type: types.ADD_TODO,
text: 'Run the tests', text: 'Run the tests',
}) }),
).toEqual([ ).toEqual([
{ {
text: 'Run the tests', text: 'Run the tests',
@ -39,8 +39,8 @@ describe('todos reducer', () => {
{ {
type: types.ADD_TODO, type: types.ADD_TODO,
text: 'Run the tests', text: 'Run the tests',
} },
) ),
).toEqual([ ).toEqual([
{ {
text: 'Run the tests', text: 'Run the tests',
@ -71,8 +71,8 @@ describe('todos reducer', () => {
{ {
type: types.ADD_TODO, type: types.ADD_TODO,
text: 'Fix the tests', text: 'Fix the tests',
} },
) ),
).toEqual([ ).toEqual([
{ {
text: 'Fix the tests', text: 'Fix the tests',
@ -110,8 +110,8 @@ describe('todos reducer', () => {
{ {
type: types.DELETE_TODO, type: types.DELETE_TODO,
id: 1, id: 1,
} },
) ),
).toEqual([ ).toEqual([
{ {
text: 'Use Redux', text: 'Use Redux',
@ -140,8 +140,8 @@ describe('todos reducer', () => {
type: types.EDIT_TODO, type: types.EDIT_TODO,
text: 'Fix the tests', text: 'Fix the tests',
id: 1, id: 1,
} },
) ),
).toEqual([ ).toEqual([
{ {
text: 'Fix the tests', text: 'Fix the tests',
@ -174,8 +174,8 @@ describe('todos reducer', () => {
{ {
type: types.COMPLETE_TODO, type: types.COMPLETE_TODO,
id: 1, id: 1,
} },
) ),
).toEqual([ ).toEqual([
{ {
text: 'Run the tests', text: 'Run the tests',
@ -207,8 +207,8 @@ describe('todos reducer', () => {
], ],
{ {
type: types.COMPLETE_ALL, type: types.COMPLETE_ALL,
} },
) ),
).toEqual([ ).toEqual([
{ {
text: 'Run the tests', text: 'Run the tests',
@ -239,8 +239,8 @@ describe('todos reducer', () => {
], ],
{ {
type: types.COMPLETE_ALL, type: types.COMPLETE_ALL,
} },
) ),
).toEqual([ ).toEqual([
{ {
text: 'Run the tests', text: 'Run the tests',
@ -272,8 +272,8 @@ describe('todos reducer', () => {
], ],
{ {
type: types.CLEAR_COMPLETED, type: types.CLEAR_COMPLETED,
} },
) ),
).toEqual([ ).toEqual([
{ {
text: 'Use Redux', text: 'Use Redux',
@ -308,7 +308,7 @@ describe('todos reducer', () => {
completed: false, completed: false,
text: 'Write tests', text: 'Write tests',
}, },
]) ]),
).toEqual([ ).toEqual([
{ {
text: 'Write more tests', text: 'Write more tests',

View File

@ -1,5 +1,5 @@
{ {
"version": "3.0.19", "version": "3.1.3",
"name": "Redux DevTools", "name": "Redux DevTools",
"manifest_version": 2, "manifest_version": 2,
"description": "Redux Developer Tools for debugging application state changes.", "description": "Redux Developer Tools for debugging application state changes.",

View File

@ -6,6 +6,6 @@ module.exports = {
'\\.css$': '<rootDir>/test/__mocks__/styleMock.ts', '\\.css$': '<rootDir>/test/__mocks__/styleMock.ts',
}, },
transformIgnorePatterns: [ transformIgnorePatterns: [
'node_modules/(?!.pnpm|d3|dateformat|delaunator|internmap|nanoid|robust-predicates|uuid)', 'node_modules/(?!.pnpm|@babel/code-frame|@babel/highlight|@babel/helper-validator-identifier|chalk|d3|dateformat|delaunator|internmap|nanoid|robust-predicates|uuid)',
], ],
}; };

View File

@ -1,7 +1,7 @@
{ {
"private": true, "private": true,
"name": "remotedev-redux-devtools-extension", "name": "remotedev-redux-devtools-extension",
"version": "3.0.19", "version": "3.1.4",
"description": "Redux Developer Tools for debugging application state changes.", "description": "Redux Developer Tools for debugging application state changes.",
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/extension", "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/extension",
"license": "MIT", "license": "MIT",
@ -11,12 +11,8 @@
"url": "https://github.com/reduxjs/redux-devtools.git" "url": "https://github.com/reduxjs/redux-devtools.git"
}, },
"scripts": { "scripts": {
"start": "webpack --env development --watch", "build": "pnpm run build:extension && pnpm run type-check",
"build": "pnpm run build:extension && pnpm run build:chrome && pnpm run build:edge && pnpm run build:firefox", "build:extension": "node build.mjs",
"build:extension": "webpack --env production && webpack --config wrap.webpack.config.js",
"build:chrome": "cpy . ../chrome/dist --cwd dist && cpy manifest.json dist --cwd chrome",
"build:edge": "cpy . ../edge/dist --cwd dist && cpy manifest.json dist --cwd edge",
"build:firefox": "cpy . ../firefox/dist --cwd dist && cpy manifest.json dist --cwd firefox",
"build:examples": "babel-node examples/buildAll.js", "build:examples": "babel-node examples/buildAll.js",
"clean": "rimraf dist && rimraf chrome/dist && rimraf edge/dist && rimraf firefox/dist", "clean": "rimraf dist && rimraf chrome/dist && rimraf edge/dist && rimraf firefox/dist",
"test:app": "cross-env BABEL_ENV=test jest test/app", "test:app": "cross-env BABEL_ENV=test jest test/app",
@ -28,69 +24,60 @@
}, },
"dependencies": { "dependencies": {
"@babel/polyfill": "^7.12.1", "@babel/polyfill": "^7.12.1",
"@redux-devtools/app": "^2.2.1", "@redux-devtools/app": "^4.0.0",
"@redux-devtools/core": "^3.13.0", "@redux-devtools/core": "^3.13.0",
"@redux-devtools/instrument": "^2.1.0", "@redux-devtools/instrument": "^2.1.0",
"@redux-devtools/serialize": "^0.4.1", "@redux-devtools/serialize": "^0.4.1",
"@redux-devtools/slider-monitor": "^4.0.0", "@redux-devtools/slider-monitor": "^4.0.0",
"@redux-devtools/ui": "^1.3.0", "@redux-devtools/ui": "^1.3.0",
"@redux-devtools/utils": "^2.0.0", "@redux-devtools/utils": "^2.0.0",
"@types/jsan": "^3.1.2", "@types/jsan": "^3.1.3",
"jsan": "^3.1.14", "jsan": "^3.1.14",
"localforage": "^1.10.0", "localforage": "^1.10.0",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-icons": "^4.9.0", "react-icons": "^4.11.0",
"react-is": "^18.2.0", "react-is": "^18.2.0",
"react-json-tree": "^0.18.0", "react-json-tree": "^0.18.0",
"react-redux": "^8.0.7", "react-redux": "^8.1.2",
"redux": "^4.2.1", "redux": "^4.2.1",
"redux-persist": "^6.0.0", "redux-persist": "^6.0.0",
"styled-components": "^5.3.11" "styled-components": "^5.3.11"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.22.1", "@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.4", "@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.3", "@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.21.5", "@babel/preset-typescript": "^7.23.0",
"@babel/register": "^7.21.0", "@babel/register": "^7.22.15",
"@testing-library/jest-dom": "^5.16.5", "@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0", "@testing-library/react": "^14.0.0",
"@types/chrome": "^0.0.237", "@types/chrome": "^0.0.246",
"@types/lodash": "^4.14.195", "@types/lodash": "^4.14.199",
"@types/react": "^18.2.8", "@types/react": "^18.2.23",
"@types/react-dom": "^18.2.4", "@types/react-dom": "^18.2.8",
"@types/styled-components": "^5.1.26", "@types/styled-components": "^5.1.28",
"babel-loader": "^9.1.2", "chromedriver": "^116.0.0",
"chromedriver": "^112.0.1",
"copy-webpack-plugin": "^11.0.0",
"cpy-cli": "^4.2.0",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"css-loader": "^6.8.1", "electron": "^26.2.2",
"electron": "^24.4.1", "esbuild": "^0.19.3",
"eslint": "^8.42.0", "eslint": "^8.50.0",
"eslint-config-airbnb": "^19.0.4", "eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5", "eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1", "eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0", "immutable": "^4.3.4",
"fork-ts-checker-webpack-plugin": "^8.0.0", "jest": "^29.7.0",
"immutable": "^4.3.0", "jest-environment-jsdom": "^29.7.0",
"jest": "^29.5.0", "pug": "^3.0.2",
"jest-environment-jsdom": "^29.5.0", "rimraf": "^5.0.5",
"pug-html-loader": "^1.1.5", "selenium-webdriver": "^4.13.0",
"raw-loader": "^4.0.2",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"rimraf": "^5.0.1",
"selenium-webdriver": "^4.9.2",
"sinon-chrome": "^3.0.1", "sinon-chrome": "^3.0.1",
"style-loader": "^3.3.3", "ts-jest": "^29.1.1",
"ts-jest": "^29.1.0", "typescript": "~5.2.2",
"typescript": "~5.0.4", "webpack": "^5.88.2",
"webpack": "^5.85.0", "webpack-cli": "^5.1.4"
"webpack-cli": "^5.1.3"
} }
} }

View File

@ -17,7 +17,7 @@ import {
StoreState, StoreState,
TopButtons, TopButtons,
} from '@redux-devtools/app'; } from '@redux-devtools/app';
import { GoRadioTower } from 'react-icons/go'; import { GoBroadcast } from 'react-icons/go';
import { MdBorderBottom, MdBorderLeft, MdBorderRight } from 'react-icons/md'; import { MdBorderBottom, MdBorderLeft, MdBorderRight } from 'react-icons/md';
import type { Position } from '../pageScript/api/openWindow'; import type { Position } from '../pageScript/api/openWindow';
import type { SingleMessage } from '../background/store/apiMiddleware'; import type { SingleMessage } from '../background/store/apiMiddleware';
@ -131,7 +131,7 @@ class Actions extends Component<Props> {
this.openWindow('remote'); this.openWindow('remote');
}} }}
> >
<GoRadioTower /> <GoBroadcast />
</Button> </Button>
)} )}
</Toolbar> </Toolbar>

View File

@ -1,3 +1,4 @@
import '../chromeApiMock';
import { Store } from 'redux'; import { Store } from 'redux';
import configureStore, { BackgroundAction } from './store/backgroundStore'; import configureStore, { BackgroundAction } from './store/backgroundStore';
import openDevToolsWindow, { DevToolsPosition } from './openWindow'; import openDevToolsWindow, { DevToolsPosition } from './openWindow';

View File

@ -3,7 +3,7 @@ import { LIFTED_ACTION } from '@redux-devtools/app';
export function getReport( export function getReport(
reportId: string, reportId: string,
tabId: string | number, tabId: string | number,
instanceId: number instanceId: number,
) { ) {
chrome.storage.local.get(['s:hostname', 's:port', 's:secure'], (options) => { chrome.storage.local.get(['s:hostname', 's:port', 's:secure'], (options) => {
if (!options['s:hostname'] || !options['s:port']) return; if (!options['s:hostname'] || !options['s:port']) return;

View File

@ -12,7 +12,7 @@ export default function openDevToolsWindow(position: DevToolsPosition) {
function popWindow( function popWindow(
action: string, action: string,
url: string, url: string,
customOptions: chrome.windows.CreateData & chrome.windows.UpdateInfo customOptions: chrome.windows.CreateData & chrome.windows.UpdateInfo,
) { ) {
function focusIfExist(callback: () => void) { function focusIfExist(callback: () => void) {
if (!windows[position]) { if (!windows[position]) {
@ -37,7 +37,7 @@ export default function openDevToolsWindow(position: DevToolsPosition) {
}; };
if (action === 'open') { if (action === 'open') {
options.url = chrome.extension.getURL( options.url = chrome.extension.getURL(
url + '#' + position.substr(position.indexOf('-') + 1) url + '#' + position.substr(position.indexOf('-') + 1),
); );
chrome.windows.create(options, (win) => { chrome.windows.create(options, (win) => {
windows[position] = win!.id; windows[position] = win!.id;

View File

@ -193,7 +193,7 @@ type TabPort = Omit<chrome.runtime.Port, 'postMessage'> & {
}; };
type PanelPort = Omit<chrome.runtime.Port, 'postMessage'> & { type PanelPort = Omit<chrome.runtime.Port, 'postMessage'> & {
postMessage: <S, A extends Action<unknown>>( postMessage: <S, A extends Action<unknown>>(
message: PanelMessage<S, A> message: PanelMessage<S, A>,
) => void; ) => void;
}; };
type MonitorPort = Omit<chrome.runtime.Port, 'postMessage'> & { type MonitorPort = Omit<chrome.runtime.Port, 'postMessage'> & {
@ -232,13 +232,13 @@ type MonitorAction<S, A extends Action<unknown>> =
function toMonitors<S, A extends Action<unknown>>( function toMonitors<S, A extends Action<unknown>>(
action: MonitorAction<S, A>, action: MonitorAction<S, A>,
tabId?: string | number, tabId?: string | number,
verbose?: boolean verbose?: boolean,
) { ) {
Object.keys(connections.monitor).forEach((id) => { Object.keys(connections.monitor).forEach((id) => {
connections.monitor[id].postMessage( connections.monitor[id].postMessage(
verbose || action.type === 'ERROR' || action.type === SET_PERSIST verbose || action.type === 'ERROR' || action.type === SET_PERSIST
? action ? action
: { type: UPDATE_STATE } : { type: UPDATE_STATE },
); );
}); });
Object.keys(connections.panel).forEach((id) => { Object.keys(connections.panel).forEach((id) => {
@ -267,7 +267,7 @@ function toContentScript(messageBody: ToContentScriptMessage) {
message, message,
instanceId, instanceId,
action as AppDispatchAction, action as AppDispatchAction,
state state,
), ),
id: instanceId.toString().replace(/^[^\/]+\//, ''), id: instanceId.toString().replace(/^[^\/]+\//, ''),
}); });
@ -281,7 +281,7 @@ function toContentScript(messageBody: ToContentScriptMessage) {
message, message,
instanceId, instanceId,
action as unknown as AppDispatchAction, action as unknown as AppDispatchAction,
state state,
), ),
id: instanceId.toString().replace(/^[^\/]+\//, ''), id: instanceId.toString().replace(/^[^\/]+\//, ''),
}); });
@ -295,7 +295,7 @@ function toContentScript(messageBody: ToContentScriptMessage) {
message, message,
instanceId, instanceId,
action as unknown as AppDispatchAction, action as unknown as AppDispatchAction,
state state,
), ),
id: instanceId.toString().replace(/^[^\/]+\//, ''), id: instanceId.toString().replace(/^[^\/]+\//, ''),
}); });
@ -309,7 +309,7 @@ function toContentScript(messageBody: ToContentScriptMessage) {
message, message,
instanceId, instanceId,
action as unknown as AppDispatchAction, action as unknown as AppDispatchAction,
state state,
), ),
id: instanceId.toString().replace(/^[^\/]+\//, ''), id: instanceId.toString().replace(/^[^\/]+\//, ''),
}); });
@ -323,7 +323,7 @@ function toContentScript(messageBody: ToContentScriptMessage) {
message, message,
instanceId, instanceId,
action as AppDispatchAction, action as AppDispatchAction,
state state,
), ),
id: (instanceId as number).toString().replace(/^[^\/]+\//, ''), id: (instanceId as number).toString().replace(/^[^\/]+\//, ''),
}); });
@ -397,7 +397,7 @@ type BackgroundStoreResponse = { readonly options: Options };
function messaging<S, A extends Action<unknown>>( function messaging<S, A extends Action<unknown>>(
request: BackgroundStoreMessage<S, A>, request: BackgroundStoreMessage<S, A>,
sender: chrome.runtime.MessageSender, sender: chrome.runtime.MessageSender,
sendResponse?: (response?: BackgroundStoreResponse) => void sendResponse?: (response?: BackgroundStoreResponse) => void,
) { ) {
let tabId = getId(sender); let tabId = getId(sender);
if (!tabId) return; if (!tabId) return;
@ -427,7 +427,7 @@ function messaging<S, A extends Action<unknown>>(
let position: DevToolsPosition = 'devtools-left'; let position: DevToolsPosition = 'devtools-left';
if ( if (
['remote', 'panel', 'left', 'right', 'bottom'].indexOf( ['remote', 'panel', 'left', 'right', 'bottom'].indexOf(
request.position request.position,
) !== -1 ) !== -1
) { ) {
position = ('devtools-' + request.position) as DevToolsPosition; position = ('devtools-' + request.position) as DevToolsPosition;
@ -489,7 +489,7 @@ function messaging<S, A extends Action<unknown>>(
function disconnect( function disconnect(
type: 'tab' | 'monitor' | 'panel', type: 'tab' | 'monitor' | 'panel',
id: number | string, id: number | string,
listener?: (message: any, port: chrome.runtime.Port) => void listener?: (message: any, port: chrome.runtime.Port) => void,
) { ) {
return function disconnectListener() { return function disconnectListener() {
const p = connections[type][id]; const p = connections[type][id];
@ -537,7 +537,7 @@ function onConnect<S, A extends Action<unknown>>(port: chrome.runtime.Port) {
instanceId, instanceId,
state: stringifyJSON( state: stringifyJSON(
persistedState, persistedState,
state.instances.options[instanceId].serialize state.instances.options[instanceId].serialize,
), ),
}); });
} }
@ -588,7 +588,7 @@ declare global {
window.syncOptions = syncOptions(toAllTabs); // Expose to the options page window.syncOptions = syncOptions(toAllTabs); // Expose to the options page
export default function api( export default function api(
store: MiddlewareAPI<Dispatch<BackgroundAction>, BackgroundState> store: MiddlewareAPI<Dispatch<BackgroundAction>, BackgroundState>,
) { ) {
return (next: Dispatch<BackgroundAction>) => (action: BackgroundAction) => { return (next: Dispatch<BackgroundAction>) => (action: BackgroundAction) => {
if (action.type === LIFTED_ACTION) toContentScript(action); if (action.type === LIFTED_ACTION) toContentScript(action);

View File

@ -60,7 +60,7 @@ export type BackgroundAction =
| DisconnectedAction; | DisconnectedAction;
export default function configureStore( export default function configureStore(
preloadedState?: PreloadedState<BackgroundState> preloadedState?: PreloadedState<BackgroundState>,
) { ) {
return createStore(rootReducer, preloadedState, applyMiddleware(api)); return createStore(rootReducer, preloadedState, applyMiddleware(api));
/* /*

View File

@ -1,3 +1,4 @@
import '../chromeApiMock';
import { import {
injectOptions, injectOptions,
getOptionsFromBg, getOptionsFromBg,
@ -205,9 +206,11 @@ export type SplitMessage =
function tryCatch<S, A extends Action<unknown>>( function tryCatch<S, A extends Action<unknown>>(
fn: ( fn: (
args: PageScriptToContentScriptMessageWithoutDisconnect<S, A> | SplitMessage args:
| PageScriptToContentScriptMessageWithoutDisconnect<S, A>
| SplitMessage,
) => void, ) => void,
args: PageScriptToContentScriptMessageWithoutDisconnect<S, A> args: PageScriptToContentScriptMessageWithoutDisconnect<S, A>,
) { ) {
try { try {
return fn(args); return fn(args);
@ -273,7 +276,7 @@ export type ContentScriptToBackgroundMessage<S, A extends Action<unknown>> =
| RelayMessage<S, A>; | RelayMessage<S, A>;
function postToBackground<S, A extends Action<unknown>>( function postToBackground<S, A extends Action<unknown>>(
message: ContentScriptToBackgroundMessage<S, A> message: ContentScriptToBackgroundMessage<S, A>,
) { ) {
bg!.postMessage(message); bg!.postMessage(message);
} }
@ -281,7 +284,7 @@ function postToBackground<S, A extends Action<unknown>>(
function send<S, A extends Action<unknown>>( function send<S, A extends Action<unknown>>(
message: message:
| PageScriptToContentScriptMessageWithoutDisconnect<S, A> | PageScriptToContentScriptMessageWithoutDisconnect<S, A>
| SplitMessage | SplitMessage,
) { ) {
if (!connected) connect(); if (!connected) connect();
if (message.type === 'INIT_INSTANCE') { if (message.type === 'INIT_INSTANCE') {
@ -294,7 +297,7 @@ function send<S, A extends Action<unknown>>(
// Resend messages from the page to the background script // Resend messages from the page to the background script
function handleMessages<S, A extends Action<unknown>>( function handleMessages<S, A extends Action<unknown>>(
event: MessageEvent<PageScriptToContentScriptMessage<S, A>> event: MessageEvent<PageScriptToContentScriptMessage<S, A>>,
) { ) {
if (!isAllowed()) return; if (!isAllowed()) return;
if (!event || event.source !== window || typeof event.data !== 'object') { if (!event || event.source !== window || typeof event.data !== 'object') {

View File

@ -12,4 +12,5 @@ html
body body
#root #root
link(href='/devpanel.bundle.css', rel='stylesheet')
script(src='/devpanel.bundle.js') script(src='/devpanel.bundle.js')

View File

@ -1,3 +1,4 @@
import '../chromeApiMock';
import React, { CSSProperties, ReactNode } from 'react'; import React, { CSSProperties, ReactNode } from 'react';
import { createRoot, Root } from 'react-dom/client'; import { createRoot, Root } from 'react-dom/client';
import { Provider } from 'react-redux'; import { Provider } from 'react-redux';
@ -6,7 +7,6 @@ import { REMOVE_INSTANCE, StoreAction } from '@redux-devtools/app';
import App from '../app/App'; import App from '../app/App';
import configureStore from './store/panelStore'; import configureStore from './store/panelStore';
import './devpanel.pug';
import { Action, Store } from 'redux'; import { Action, Store } from 'redux';
import type { PanelMessage } from '../background/store/apiMiddleware'; import type { PanelMessage } from '../background/store/apiMiddleware';
import type { StoreStateWithoutSocket } from './store/panelReducer'; import type { StoreStateWithoutSocket } from './store/panelReducer';
@ -42,7 +42,7 @@ function renderDevTools() {
<PersistGate loading={null} persistor={persistor}> <PersistGate loading={null} persistor={persistor}>
<App position={position} /> <App position={position} />
</PersistGate> </PersistGate>
</Provider> </Provider>,
); );
rendered = true; rendered = true;
} }
@ -104,7 +104,7 @@ function init(id: number) {
if (!rendered) renderDevTools(); if (!rendered) renderDevTools();
store!.dispatch(message); store!.dispatch(message);
} }
} },
); );
} }

View File

@ -12,6 +12,8 @@ import {
ReportsState, ReportsState,
section, section,
SectionState, SectionState,
StateTreeSettings,
stateTreeSettings,
StoreAction, StoreAction,
theme, theme,
ThemeState, ThemeState,
@ -25,6 +27,7 @@ export interface StoreStateWithoutSocket {
readonly instances: InstancesState; readonly instances: InstancesState;
readonly reports: ReportsState; readonly reports: ReportsState;
readonly notification: NotificationState; readonly notification: NotificationState;
readonly stateTreeSettings: StateTreeSettings;
} }
const rootReducer: Reducer<StoreStateWithoutSocket, StoreAction> = const rootReducer: Reducer<StoreStateWithoutSocket, StoreAction> =
@ -36,6 +39,7 @@ const rootReducer: Reducer<StoreStateWithoutSocket, StoreAction> =
section, section,
theme, theme,
connection, connection,
stateTreeSettings,
}); });
export default rootReducer; export default rootReducer;

View File

@ -16,11 +16,11 @@ const persistedReducer: Reducer<StoreStateWithoutSocket, StoreAction> =
export default function configureStore( export default function configureStore(
position: string, position: string,
bgConnection: chrome.runtime.Port bgConnection: chrome.runtime.Port,
) { ) {
const enhancer = applyMiddleware( const enhancer = applyMiddleware(
exportStateMiddleware, exportStateMiddleware,
panelDispatcher(bgConnection) panelDispatcher(bgConnection),
); );
const store = createStore(persistedReducer, enhancer); const store = createStore(persistedReducer, enhancer);
const persistor = persistStore(store); const persistor = persistStore(store);

View File

@ -1,11 +1,9 @@
import './devtools.pug';
function createPanel(url: string) { function createPanel(url: string) {
chrome.devtools.panels.create( chrome.devtools.panels.create(
'Redux', 'Redux',
'img/logo/scalable.png', 'img/logo/scalable.png',
url, url,
function () {} function () {},
); );
} }

View File

@ -10,7 +10,7 @@ export interface OptionsProps {
readonly options: Options; readonly options: Options;
readonly saveOption: <K extends keyof Options>( readonly saveOption: <K extends keyof Options>(
name: K, name: K,
value: Options[K] value: Options[K],
) => void; ) => void;
} }

View File

@ -1,10 +1,9 @@
import '../chromeApiMock';
import React from 'react'; import React from 'react';
import { createRoot } from 'react-dom/client'; import { createRoot } from 'react-dom/client';
import OptionsComponent from './Options'; import OptionsComponent from './Options';
import { Options } from './syncOptions'; import { Options } from './syncOptions';
import './options.pug';
chrome.runtime.getBackgroundPage((background) => { chrome.runtime.getBackgroundPage((background) => {
const syncOptions = background!.syncOptions; const syncOptions = background!.syncOptions;

View File

@ -93,7 +93,7 @@ const get = (callback: (options: Options) => void) => {
function (items) { function (items) {
options = migrateOldOptions(items as OldOrNewOptions); options = migrateOldOptions(items as OldOrNewOptions);
callback(options); callback(options);
} },
); );
} }
}; };
@ -125,8 +125,8 @@ export const injectOptions = (newOptions: Options) => {
document.createTextNode( document.createTextNode(
'window.devToolsOptions = Object.assign(window.devToolsOptions||{},' + 'window.devToolsOptions = Object.assign(window.devToolsOptions||{},' +
JSON.stringify(options) + JSON.stringify(options) +
');' ');',
) ),
); );
(document.head || document.documentElement).appendChild(s); (document.head || document.documentElement).appendChild(s);
s.parentNode!.removeChild(s); s.parentNode!.removeChild(s);

View File

@ -11,7 +11,7 @@ declare global {
export default class Monitor<S, A extends Action<unknown>> { export default class Monitor<S, A extends Action<unknown>> {
update: ( update: (
liftedState?: LiftedState<S, A, unknown> | undefined, liftedState?: LiftedState<S, A, unknown> | undefined,
libConfig?: LibConfig libConfig?: LibConfig,
) => void; ) => void;
active?: boolean; active?: boolean;
paused?: boolean; paused?: boolean;
@ -21,8 +21,8 @@ export default class Monitor<S, A extends Action<unknown>> {
constructor( constructor(
update: ( update: (
liftedState?: LiftedState<S, A, unknown> | undefined, liftedState?: LiftedState<S, A, unknown> | undefined,
libConfig?: LibConfig libConfig?: LibConfig,
) => void ) => void,
) { ) {
this.update = update; this.update = update;
} }

View File

@ -23,7 +23,7 @@ export const noFiltersApplied = (localFilter: LocalFilter | undefined) =>
export function isFiltered<A extends Action<unknown>>( export function isFiltered<A extends Action<unknown>>(
action: A | string, action: A | string,
localFilter: LocalFilter | undefined localFilter: LocalFilter | undefined,
) { ) {
if ( if (
noFiltersApplied(localFilter) || noFiltersApplied(localFilter) ||
@ -43,7 +43,7 @@ export function isFiltered<A extends Action<unknown>>(
function filterActions<A extends Action<unknown>>( function filterActions<A extends Action<unknown>>(
actionsById: { [p: number]: PerformAction<A> }, actionsById: { [p: number]: PerformAction<A> },
actionSanitizer: ((action: A, id: number) => A) | undefined actionSanitizer: ((action: A, id: number) => A) | undefined,
): { [p: number]: PerformAction<A> } { ): { [p: number]: PerformAction<A> } {
if (!actionSanitizer) return actionsById; if (!actionSanitizer) return actionsById;
return mapValues(actionsById, (action, id) => ({ return mapValues(actionsById, (action, id) => ({
@ -54,7 +54,7 @@ function filterActions<A extends Action<unknown>>(
function filterStates<S>( function filterStates<S>(
computedStates: { state: S; error?: string | undefined }[], computedStates: { state: S; error?: string | undefined }[],
stateSanitizer: ((state: S, index: number) => S) | undefined stateSanitizer: ((state: S, index: number) => S) | undefined,
) { ) {
if (!stateSanitizer) return computedStates; if (!stateSanitizer) return computedStates;
return computedStates.map((state, idx) => ({ return computedStates.map((state, idx) => ({
@ -68,7 +68,7 @@ export function filterState<S, A extends Action<unknown>>(
localFilter: LocalFilter | undefined, localFilter: LocalFilter | undefined,
stateSanitizer: ((state: S, index: number) => S) | undefined, stateSanitizer: ((state: S, index: number) => S) | undefined,
actionSanitizer: ((action: A, id: number) => A) | undefined, actionSanitizer: ((action: A, id: number) => A) | undefined,
predicate: ((state: S, action: A) => boolean) | undefined predicate: ((state: S, action: A) => boolean) | undefined,
): LiftedState<S, A, unknown> { ): LiftedState<S, A, unknown> {
if (predicate || !noFiltersApplied(localFilter)) { if (predicate || !noFiltersApplied(localFilter)) {
const filteredStagedActionIds: number[] = []; const filteredStagedActionIds: number[] = [];
@ -94,7 +94,7 @@ export function filterState<S, A extends Action<unknown>>(
filteredComputedStates.push( filteredComputedStates.push(
stateSanitizer stateSanitizer
? { ...liftedState, state: stateSanitizer(currState, idx) } ? { ...liftedState, state: stateSanitizer(currState, idx) }
: liftedState : liftedState,
); );
if (actionSanitizer) { if (actionSanitizer) {
sanitizedActionsById![id] = { sanitizedActionsById![id] = {
@ -139,7 +139,7 @@ export function startingFrom<S, A extends Action<unknown>>(
| undefined, | undefined,
predicate: predicate:
| (<S, A extends Action<unknown>>(state: S, action: A) => boolean) | (<S, A extends Action<unknown>>(state: S, action: A) => boolean)
| undefined | undefined,
): LiftedState<S, A, unknown> | PartialLiftedState<S, A> | undefined { ): LiftedState<S, A, unknown> | PartialLiftedState<S, A> | undefined {
const stagedActionIds = state.stagedActionIds; const stagedActionIds = state.stagedActionIds;
if (sendingActionId <= stagedActionIds[1]) return state; if (sendingActionId <= stagedActionIds[1]) return state;
@ -178,7 +178,7 @@ export function startingFrom<S, A extends Action<unknown>>(
newComputedStates.push( newComputedStates.push(
!stateSanitizer !stateSanitizer
? currState ? currState
: { ...currState, state: stateSanitizer(currState.state, i) } : { ...currState, state: stateSanitizer(currState.state, i) },
); );
} }

View File

@ -10,7 +10,7 @@ interface SerializeWithRequiredImmutable extends SerializeWithImmutable {
} }
function isSerializeWithImmutable( function isSerializeWithImmutable(
serialize: boolean | SerializeWithImmutable serialize: boolean | SerializeWithImmutable,
): serialize is SerializeWithRequiredImmutable { ): serialize is SerializeWithRequiredImmutable {
return !!(serialize as SerializeWithImmutable).immutable; return !!(serialize as SerializeWithImmutable).immutable;
} }
@ -20,7 +20,7 @@ interface SerializeWithRequiredReviver extends SerializeWithImmutable {
} }
function isSerializeWithReviver( function isSerializeWithReviver(
serialize: boolean | SerializeWithImmutable serialize: boolean | SerializeWithImmutable,
): serialize is SerializeWithRequiredReviver { ): serialize is SerializeWithRequiredReviver {
return !!(serialize as SerializeWithImmutable).immutable; return !!(serialize as SerializeWithImmutable).immutable;
} }
@ -32,7 +32,7 @@ interface ParsedSerializedLiftedState {
export default function importState<S, A extends Action<unknown>>( export default function importState<S, A extends Action<unknown>>(
state: string | undefined, state: string | undefined,
{ serialize }: Config { serialize }: Config,
) { ) {
if (!state) return undefined; if (!state) return undefined;
let parse = jsan.parse; let parse = jsan.parse;
@ -45,8 +45,8 @@ export default function importState<S, A extends Action<unknown>>(
serialize.immutable, serialize.immutable,
serialize.refs, serialize.refs,
serialize.replacer, serialize.replacer,
serialize.reviver serialize.reviver,
).reviver ).reviver,
); );
} else if (isSerializeWithReviver(serialize)) { } else if (isSerializeWithReviver(serialize)) {
parse = (v) => jsan.parse(v, serialize.reviver); parse = (v) => jsan.parse(v, serialize.reviver);

View File

@ -56,7 +56,7 @@ function stringify(obj: unknown, serialize?: Serialize | undefined) {
// 16 MB // 16 MB
/* eslint-disable no-console */ /* eslint-disable no-console */
console.warn( console.warn(
'Application state or actions payloads are too large making Redux DevTools serialization slow and consuming a lot of memory. See https://github.com/reduxjs/redux-devtools-extension/blob/master/docs/Troubleshooting.md#excessive-use-of-memory-and-cpu on how to configure it.' 'Application state or actions payloads are too large making Redux DevTools serialization slow and consuming a lot of memory. See https://github.com/reduxjs/redux-devtools-extension/blob/master/docs/Troubleshooting.md#excessive-use-of-memory-and-cpu on how to configure it.',
); );
/* eslint-enable no-console */ /* eslint-enable no-console */
stringifyWarned = true; stringifyWarned = true;
@ -80,7 +80,7 @@ export function getSerializeParameter(config: Config) {
serialize.immutable, serialize.immutable,
serialize.refs, serialize.refs,
serialize.replacer, serialize.replacer,
serialize.reviver serialize.reviver,
); );
return { return {
replacer: immutableSerializer.replacer, replacer: immutableSerializer.replacer,
@ -183,7 +183,7 @@ interface OpenMessage {
export type PageScriptToContentScriptMessageForwardedToMonitors< export type PageScriptToContentScriptMessageForwardedToMonitors<
S, S,
A extends Action<unknown> A extends Action<unknown>,
> = > =
| InitMessage<S, A> | InitMessage<S, A>
| LiftedMessage | LiftedMessage
@ -194,7 +194,7 @@ export type PageScriptToContentScriptMessageForwardedToMonitors<
export type PageScriptToContentScriptMessageWithoutDisconnectOrInitInstance< export type PageScriptToContentScriptMessageWithoutDisconnectOrInitInstance<
S, S,
A extends Action<unknown> A extends Action<unknown>,
> = > =
| PageScriptToContentScriptMessageForwardedToMonitors<S, A> | PageScriptToContentScriptMessageForwardedToMonitors<S, A>
| ErrorMessage | ErrorMessage
@ -204,7 +204,7 @@ export type PageScriptToContentScriptMessageWithoutDisconnectOrInitInstance<
export type PageScriptToContentScriptMessageWithoutDisconnect< export type PageScriptToContentScriptMessageWithoutDisconnect<
S, S,
A extends Action<unknown> A extends Action<unknown>,
> = > =
| PageScriptToContentScriptMessageWithoutDisconnectOrInitInstance<S, A> | PageScriptToContentScriptMessageWithoutDisconnectOrInitInstance<S, A>
| InitInstancePageScriptToContentScriptMessage | InitInstancePageScriptToContentScriptMessage
@ -215,14 +215,14 @@ export type PageScriptToContentScriptMessage<S, A extends Action<unknown>> =
| DisconnectMessage; | DisconnectMessage;
function post<S, A extends Action<unknown>>( function post<S, A extends Action<unknown>>(
message: PageScriptToContentScriptMessage<S, A> message: PageScriptToContentScriptMessage<S, A>,
) { ) {
window.postMessage(message, '*'); window.postMessage(message, '*');
} }
function getStackTrace( function getStackTrace(
config: Config, config: Config,
toExcludeFromTrace: Function | undefined toExcludeFromTrace: Function | undefined,
) { ) {
if (!config.trace) return undefined; if (!config.trace) return undefined;
if (typeof config.trace === 'function') return config.trace(); if (typeof config.trace === 'function') return config.trace();
@ -265,7 +265,7 @@ function amendActionType<A extends Action<unknown>>(
| StructuralPerformAction<A>[] | StructuralPerformAction<A>[]
| string, | string,
config: Config, config: Config,
toExcludeFromTrace: Function | undefined toExcludeFromTrace: Function | undefined,
): StructuralPerformAction<A> { ): StructuralPerformAction<A> {
let timestamp = Date.now(); let timestamp = Date.now();
let stack = getStackTrace(config, toExcludeFromTrace); let stack = getStackTrace(config, toExcludeFromTrace);
@ -383,7 +383,7 @@ type ToContentScriptMessage<S, A extends Action<unknown>> =
export function toContentScript<S, A extends Action<unknown>>( export function toContentScript<S, A extends Action<unknown>>(
message: ToContentScriptMessage<S, A>, message: ToContentScriptMessage<S, A>,
serializeState?: Serialize | undefined, serializeState?: Serialize | undefined,
serializeAction?: Serialize | undefined serializeAction?: Serialize | undefined,
) { ) {
if (message.type === 'ACTION') { if (message.type === 'ACTION') {
post({ post({
@ -430,7 +430,7 @@ export function sendMessage<S, A extends Action<unknown>>(
state: LiftedState<S, A, unknown>, state: LiftedState<S, A, unknown>,
config: Config, config: Config,
instanceId?: number, instanceId?: number,
name?: string name?: string,
) { ) {
let amendedAction = action; let amendedAction = action;
if (typeof config !== 'object') { if (typeof config !== 'object') {
@ -450,7 +450,7 @@ export function sendMessage<S, A extends Action<unknown>>(
instanceId: config.instanceId || instanceId || 1, instanceId: config.instanceId || instanceId || 1,
}, },
config.serialize as Serialize | undefined, config.serialize as Serialize | undefined,
config.serialize as Serialize | undefined config.serialize as Serialize | undefined,
); );
} else { } else {
toContentScript<S, A>( toContentScript<S, A>(
@ -464,7 +464,7 @@ export function sendMessage<S, A extends Action<unknown>>(
instanceId: config.instanceId || instanceId || 1, instanceId: config.instanceId || instanceId || 1,
}, },
config.serialize as Serialize | undefined, config.serialize as Serialize | undefined,
config.serialize as Serialize | undefined config.serialize as Serialize | undefined,
); );
} }
} }
@ -489,7 +489,7 @@ function handleMessages(event: MessageEvent<ContentScriptToPageScriptMessage>) {
export function setListener( export function setListener(
onMessage: (message: ContentScriptToPageScriptMessage) => void, onMessage: (message: ContentScriptToPageScriptMessage) => void,
instanceId: number instanceId: number,
) { ) {
listeners[instanceId] = onMessage; listeners[instanceId] = onMessage;
window.addEventListener('message', handleMessages, false); window.addEventListener('message', handleMessages, false);
@ -498,7 +498,7 @@ export function setListener(
const liftListener = const liftListener =
<S, A extends Action<unknown>>( <S, A extends Action<unknown>>(
listener: (message: ListenerMessage<S, A>) => void, listener: (message: ListenerMessage<S, A>) => void,
config: Config config: Config,
) => ) =>
(message: ContentScriptToPageScriptMessage) => { (message: ContentScriptToPageScriptMessage) => {
if (message.type === 'IMPORT') { if (message.type === 'IMPORT') {
@ -522,15 +522,15 @@ export function disconnect() {
export interface ConnectResponse { export interface ConnectResponse {
init: <S, A extends Action<unknown>>( init: <S, A extends Action<unknown>>(
state: S, state: S,
liftedData?: LiftedState<S, A, unknown> liftedData?: LiftedState<S, A, unknown>,
) => void; ) => void;
subscribe: <S, A extends Action<unknown>>( subscribe: <S, A extends Action<unknown>>(
listener: (message: ListenerMessage<S, A>) => void listener: (message: ListenerMessage<S, A>) => void,
) => (() => void) | undefined; ) => (() => void) | undefined;
unsubscribe: () => void; unsubscribe: () => void;
send: <S, A extends Action<unknown>>( send: <S, A extends Action<unknown>>(
action: A, action: A,
state: LiftedState<S, A, unknown> state: LiftedState<S, A, unknown>,
) => void; ) => void;
error: (payload: string) => void; error: (payload: string) => void;
} }
@ -575,12 +575,12 @@ export function connect(preConfig: Config): ConnectResponse {
listeners[id] = [rootListener]; listeners[id] = [rootListener];
const subscribe = <S, A extends Action<unknown>>( const subscribe = <S, A extends Action<unknown>>(
listener: (message: ListenerMessage<S, A>) => void listener: (message: ListenerMessage<S, A>) => void,
) => { ) => {
if (!listener) return undefined; if (!listener) return undefined;
const liftedListener = liftListener(listener, config); const liftedListener = liftListener(listener, config);
const listenersForId = listeners[id] as (( const listenersForId = listeners[id] as ((
message: ContentScriptToPageScriptMessage message: ContentScriptToPageScriptMessage,
) => void)[]; ) => void)[];
listenersForId.push(liftedListener); listenersForId.push(liftedListener);
@ -602,7 +602,7 @@ export function connect(preConfig: Config): ConnectResponse {
const send = <S, A extends Action<unknown>>( const send = <S, A extends Action<unknown>>(
action: A, action: A,
state: LiftedState<S, A, unknown> state: LiftedState<S, A, unknown>,
) => { ) => {
if ( if (
isPaused || isPaused ||
@ -639,13 +639,13 @@ export function connect(preConfig: Config): ConnectResponse {
sendMessage( sendMessage(
amendedAction as StructuralPerformAction<A>, amendedAction as StructuralPerformAction<A>,
amendedState, amendedState,
config config,
); );
}; };
const init = <S, A extends Action<unknown>>( const init = <S, A extends Action<unknown>>(
state: S, state: S,
liftedData?: LiftedState<S, A, unknown> liftedData?: LiftedState<S, A, unknown>,
) => { ) => {
const message: InitMessage<S, A> = { const message: InitMessage<S, A> = {
type: 'INIT', type: 'INIT',

View File

@ -26,7 +26,7 @@ function postError(message: string) {
type: 'ERROR', type: 'ERROR',
message: message, message: message,
}, },
'*' '*',
); );
} }

View File

@ -4,7 +4,7 @@ import type { PageScriptToContentScriptMessage } from './index';
export type Position = 'left' | 'right' | 'bottom' | 'panel' | 'remote'; export type Position = 'left' | 'right' | 'bottom' | 'panel' | 'remote';
function post<S, A extends Action<unknown>>( function post<S, A extends Action<unknown>>(
message: PageScriptToContentScriptMessage<S, A> message: PageScriptToContentScriptMessage<S, A>,
) { ) {
window.postMessage(message, '*'); window.postMessage(message, '*');
} }

View File

@ -5,7 +5,7 @@ import type { ConfigWithExpandedMaxAge } from './index';
export function getUrlParam(key: string) { export function getUrlParam(key: string) {
const matches = window.location.href.match( const matches = window.location.href.match(
new RegExp(`[?&]${key}=([^&#]+)\\b`) new RegExp(`[?&]${key}=([^&#]+)\\b`),
); );
return matches && matches.length > 0 ? matches[1] : null; return matches && matches.length > 0 ? matches[1] : null;
} }
@ -20,11 +20,11 @@ export default function configureStore<
S, S,
A extends Action<unknown>, A extends Action<unknown>,
MonitorState, MonitorState,
MonitorAction extends Action<unknown> MonitorAction extends Action<unknown>,
>( >(
next: StoreEnhancerStoreCreator, next: StoreEnhancerStoreCreator,
monitorReducer: Reducer<MonitorState, MonitorAction>, monitorReducer: Reducer<MonitorState, MonitorAction>,
config: ConfigWithExpandedMaxAge config: ConfigWithExpandedMaxAge,
) { ) {
return compose( return compose(
instrument(monitorReducer, { instrument(monitorReducer, {
@ -37,6 +37,6 @@ export default function configureStore<
shouldStartLocked: config.shouldStartLocked, shouldStartLocked: config.shouldStartLocked,
pauseActionType: config.pauseActionType || '@@PAUSED', pauseActionType: config.pauseActionType || '@@PAUSED',
}), }),
persistState(getUrlParam('debug_session')) persistState(getUrlParam('debug_session')),
)(next); )(next);
} }

View File

@ -57,7 +57,7 @@ import type { ContentScriptToPageScriptMessage } from '../contentScript';
type EnhancedStoreWithInitialDispatch< type EnhancedStoreWithInitialDispatch<
S, S,
A extends Action<unknown>, A extends Action<unknown>,
MonitorState MonitorState,
> = EnhancedStore<S, A, MonitorState> & { initialDispatch: Dispatch<A> }; > = EnhancedStore<S, A, MonitorState> & { initialDispatch: Dispatch<A> };
const source = '@devtools-page'; const source = '@devtools-page';
@ -73,7 +73,7 @@ let reportId: string | null | undefined;
function deprecateParam(oldParam: string, newParam: string) { function deprecateParam(oldParam: string, newParam: string) {
/* eslint-disable no-console */ /* eslint-disable no-console */
console.warn( console.warn(
`${oldParam} parameter is deprecated, use ${newParam} instead: https://github.com/reduxjs/redux-devtools/blob/main/extension/docs/API/Arguments.md` `${oldParam} parameter is deprecated, use ${newParam} instead: https://github.com/reduxjs/redux-devtools/blob/main/extension/docs/API/Arguments.md`,
); );
/* eslint-enable no-console */ /* eslint-enable no-console */
} }
@ -99,18 +99,18 @@ export interface ConfigWithExpandedMaxAge {
readonly stateSanitizer?: <S>(state: S, index?: number) => S; readonly stateSanitizer?: <S>(state: S, index?: number) => S;
readonly actionSanitizer?: <A extends Action<unknown>>( readonly actionSanitizer?: <A extends Action<unknown>>(
action: A, action: A,
id?: number id?: number,
) => A; ) => A;
readonly predicate?: <S, A extends Action<unknown>>( readonly predicate?: <S, A extends Action<unknown>>(
state: S, state: S,
action: A action: A,
) => boolean; ) => boolean;
readonly latency?: number; readonly latency?: number;
readonly maxAge?: readonly maxAge?:
| number | number
| (<S, A extends Action<unknown>>( | (<S, A extends Action<unknown>>(
currentLiftedAction: LiftedAction<S, A, unknown>, currentLiftedAction: LiftedAction<S, A, unknown>,
previousLiftedState: LiftedState<S, A, unknown> | undefined previousLiftedState: LiftedState<S, A, unknown> | undefined,
) => number); ) => number);
readonly trace?: boolean | (() => string | undefined); readonly trace?: boolean | (() => string | undefined);
readonly traceLimit?: number; readonly traceLimit?: number;
@ -142,11 +142,11 @@ interface ReduxDevtoolsExtension {
state: LiftedState<S, A, unknown>, state: LiftedState<S, A, unknown>,
config: Config, config: Config,
instanceId?: number, instanceId?: number,
name?: string name?: string,
) => void; ) => void;
listen: ( listen: (
onMessage: (message: ContentScriptToPageScriptMessage) => void, onMessage: (message: ContentScriptToPageScriptMessage) => void,
instanceId: number instanceId: number,
) => void; ) => void;
connect: (preConfig: Config) => ConnectResponse; connect: (preConfig: Config) => ConnectResponse;
disconnect: () => void; disconnect: () => void;
@ -159,7 +159,7 @@ declare global {
} }
function __REDUX_DEVTOOLS_EXTENSION__<S, A extends Action<unknown>>( function __REDUX_DEVTOOLS_EXTENSION__<S, A extends Action<unknown>>(
config?: Config config?: Config,
): StoreEnhancer { ): StoreEnhancer {
/* eslint-disable no-param-reassign */ /* eslint-disable no-param-reassign */
if (typeof config !== 'object') config = {}; if (typeof config !== 'object') config = {};
@ -188,7 +188,7 @@ function __REDUX_DEVTOOLS_EXTENSION__<S, A extends Action<unknown>>(
const relayState = throttle( const relayState = throttle(
( (
liftedState?: LiftedState<S, A, unknown> | undefined, liftedState?: LiftedState<S, A, unknown> | undefined,
libConfig?: LibConfig libConfig?: LibConfig,
) => { ) => {
relayAction.cancel(); relayAction.cancel();
const state = liftedState || store.liftedStore.getState(); const state = liftedState || store.liftedStore.getState();
@ -201,17 +201,17 @@ function __REDUX_DEVTOOLS_EXTENSION__<S, A extends Action<unknown>>(
localFilter, localFilter,
stateSanitizer, stateSanitizer,
actionSanitizer, actionSanitizer,
predicate predicate,
), ),
source, source,
instanceId, instanceId,
libConfig, libConfig,
}, },
serializeState, serializeState,
serializeAction serializeAction,
); );
}, },
latency latency,
); );
const monitor = new Monitor(relayState); const monitor = new Monitor(relayState);
@ -233,7 +233,7 @@ function __REDUX_DEVTOOLS_EXTENSION__<S, A extends Action<unknown>>(
instanceId, instanceId,
}, },
serializeState, serializeState,
serializeAction serializeAction,
); );
} }
@ -269,13 +269,13 @@ function __REDUX_DEVTOOLS_EXTENSION__<S, A extends Action<unknown>>(
? liftedState.actionsById[nextActionId - 1] ? liftedState.actionsById[nextActionId - 1]
: actionSanitizer( : actionSanitizer(
liftedState.actionsById[nextActionId - 1].action, liftedState.actionsById[nextActionId - 1].action,
nextActionId - 1 nextActionId - 1,
), ),
maxAge: getMaxAge(), maxAge: getMaxAge(),
nextActionId, nextActionId,
}, },
serializeState, serializeState,
serializeAction serializeAction,
); );
return; return;
} }
@ -287,7 +287,7 @@ function __REDUX_DEVTOOLS_EXTENSION__<S, A extends Action<unknown>>(
localFilter, localFilter,
stateSanitizer, stateSanitizer,
actionSanitizer, actionSanitizer,
predicate predicate,
); );
sendingActionId = nextActionId; sendingActionId = nextActionId;
if (typeof payload === 'undefined') return; if (typeof payload === 'undefined') return;
@ -300,13 +300,13 @@ function __REDUX_DEVTOOLS_EXTENSION__<S, A extends Action<unknown>>(
localFilter, localFilter,
stateSanitizer, stateSanitizer,
actionSanitizer, actionSanitizer,
predicate predicate,
), ),
source, source,
instanceId, instanceId,
}, },
serializeState, serializeState,
serializeAction serializeAction,
); );
return; return;
} }
@ -319,7 +319,7 @@ function __REDUX_DEVTOOLS_EXTENSION__<S, A extends Action<unknown>>(
maxAge: getMaxAge(), maxAge: getMaxAge(),
}, },
serializeState, serializeState,
serializeAction serializeAction,
); );
}, latency); }, latency);
@ -337,7 +337,7 @@ function __REDUX_DEVTOOLS_EXTENSION__<S, A extends Action<unknown>>(
instanceId, instanceId,
}, },
serializeState, serializeState,
serializeAction serializeAction,
); );
} }
} }
@ -357,7 +357,7 @@ function __REDUX_DEVTOOLS_EXTENSION__<S, A extends Action<unknown>>(
instanceId, instanceId,
}, },
serializeState, serializeState,
serializeAction serializeAction,
); );
} }
} }
@ -419,7 +419,7 @@ function __REDUX_DEVTOOLS_EXTENSION__<S, A extends Action<unknown>>(
instanceId, instanceId,
}, },
serializeState, serializeState,
serializeAction serializeAction,
); );
reportId = null; reportId = null;
} }
@ -437,7 +437,7 @@ function __REDUX_DEVTOOLS_EXTENSION__<S, A extends Action<unknown>>(
instanceId, instanceId,
}, },
serializeState, serializeState,
serializeAction serializeAction,
); );
} }
} }
@ -446,7 +446,7 @@ function __REDUX_DEVTOOLS_EXTENSION__<S, A extends Action<unknown>>(
const filteredActionIds: number[] = []; // simple circular buffer of non-excluded actions with fixed maxAge-1 length const filteredActionIds: number[] = []; // simple circular buffer of non-excluded actions with fixed maxAge-1 length
const getMaxAge = ( const getMaxAge = (
liftedAction?: LiftedAction<S, A, unknown>, liftedAction?: LiftedAction<S, A, unknown>,
liftedState?: LiftedState<S, A, unknown> | undefined liftedState?: LiftedState<S, A, unknown> | undefined,
) => { ) => {
let m = (config && config.maxAge) || window.devToolsOptions.maxAge || 50; let m = (config && config.maxAge) || window.devToolsOptions.maxAge || 50;
if ( if (
@ -497,7 +497,7 @@ function __REDUX_DEVTOOLS_EXTENSION__<S, A extends Action<unknown>>(
instanceId, instanceId,
}, },
serializeState, serializeState,
serializeAction serializeAction,
); );
store.subscribe(handleChange); store.subscribe(handleChange);
@ -529,11 +529,11 @@ function __REDUX_DEVTOOLS_EXTENSION__<S, A extends Action<unknown>>(
const enhance = const enhance =
(): StoreEnhancer => (): StoreEnhancer =>
<NextExt, NextStateExt>( <NextExt, NextStateExt>(
next: StoreEnhancerStoreCreator<NextExt, NextStateExt> next: StoreEnhancerStoreCreator<NextExt, NextStateExt>,
): any => { ): any => {
return <S2 extends S, A2 extends A>( return <S2 extends S, A2 extends A>(
reducer_: Reducer<S2, A2>, reducer_: Reducer<S2, A2>,
initialState_?: PreloadedState<S2> initialState_?: PreloadedState<S2>,
) => { ) => {
if (!isAllowed(window.devToolsOptions)) { if (!isAllowed(window.devToolsOptions)) {
return next(reducer_, initialState_); return next(reducer_, initialState_);
@ -545,7 +545,7 @@ function __REDUX_DEVTOOLS_EXTENSION__<S, A extends Action<unknown>>(
{ {
...config, ...config,
maxAge: getMaxAge as any, maxAge: getMaxAge as any,
} },
)(reducer_, initialState_) as any; )(reducer_, initialState_) as any;
if (isInIframe()) setTimeout(init, 3000); if (isInIframe()) setTimeout(init, 3000);
@ -593,7 +593,7 @@ const preEnhancer =
export type InferComposedStoreExt<StoreEnhancers> = StoreEnhancers extends [ export type InferComposedStoreExt<StoreEnhancers> = StoreEnhancers extends [
infer HeadStoreEnhancer, infer HeadStoreEnhancer,
...infer RestStoreEnhancers ...infer RestStoreEnhancers,
] ]
? HeadStoreEnhancer extends StoreEnhancer<infer StoreExt> ? HeadStoreEnhancer extends StoreEnhancer<infer StoreExt>
? StoreExt & InferComposedStoreExt<RestStoreEnhancers> ? StoreExt & InferComposedStoreExt<RestStoreEnhancers>
@ -611,13 +611,15 @@ const extensionCompose =
return [preEnhancer(instanceId), ...funcs].reduceRight( return [preEnhancer(instanceId), ...funcs].reduceRight(
// @ts-ignore FIXME // @ts-ignore FIXME
(composed, f) => f(composed), (composed, f) => f(composed),
__REDUX_DEVTOOLS_EXTENSION__({ ...config, instanceId })(...args) __REDUX_DEVTOOLS_EXTENSION__({ ...config, instanceId })(...args),
); );
}; };
}; };
interface ReduxDevtoolsExtensionCompose { interface ReduxDevtoolsExtensionCompose {
(config: Config): <StoreEnhancers extends readonly StoreEnhancer<unknown>[]>( (
config: Config,
): <StoreEnhancers extends readonly StoreEnhancer<unknown>[]>(
...funcs: StoreEnhancers ...funcs: StoreEnhancers
) => StoreEnhancer<InferComposedStoreExt<StoreEnhancers>>; ) => StoreEnhancer<InferComposedStoreExt<StoreEnhancers>>;
<StoreEnhancers extends readonly StoreEnhancer<unknown>[]>( <StoreEnhancers extends readonly StoreEnhancer<unknown>[]>(
@ -632,12 +634,12 @@ declare global {
} }
function reduxDevtoolsExtensionCompose( function reduxDevtoolsExtensionCompose(
config: Config config: Config,
): <StoreEnhancers extends readonly StoreEnhancer<unknown>[]>( ): <StoreEnhancers extends readonly StoreEnhancer<unknown>[]>(
...funcs: StoreEnhancers ...funcs: StoreEnhancers
) => StoreEnhancer<InferComposedStoreExt<StoreEnhancers>>; ) => StoreEnhancer<InferComposedStoreExt<StoreEnhancers>>;
function reduxDevtoolsExtensionCompose< function reduxDevtoolsExtensionCompose<
StoreEnhancers extends readonly StoreEnhancer<unknown>[] StoreEnhancers extends readonly StoreEnhancer<unknown>[],
>( >(
...funcs: StoreEnhancers ...funcs: StoreEnhancers
): StoreEnhancer<InferComposedStoreExt<StoreEnhancers>>; ): StoreEnhancer<InferComposedStoreExt<StoreEnhancers>>;

View File

@ -1,8 +1,10 @@
// @ts-ignore
import script from '../dist/page.bundle.js';
let s = document.createElement('script'); let s = document.createElement('script');
s.type = 'text/javascript'; s.type = 'text/javascript';
if (process.env.NODE_ENV === 'production') { if (process.env.NODE_ENV === 'production') {
const { default: script } = require('raw-loader!../dist/page.bundle.js');
s.appendChild(document.createTextNode(script)); s.appendChild(document.createTextNode(script));
(document.head || document.documentElement).appendChild(s); (document.head || document.documentElement).appendChild(s);
s.parentNode!.removeChild(s); s.parentNode!.removeChild(s);
@ -10,7 +12,7 @@ if (process.env.NODE_ENV === 'production') {
s.src = chrome.extension.getURL('page.bundle.js'); s.src = chrome.extension.getURL('page.bundle.js');
s.onload = function () { s.onload = function () {
(this as HTMLScriptElement).parentNode!.removeChild( (this as HTMLScriptElement).parentNode!.removeChild(
this as HTMLScriptElement this as HTMLScriptElement,
); );
}; };
(document.head || document.documentElement).appendChild(s); (document.head || document.documentElement).appendChild(s);

View File

@ -2,8 +2,6 @@ import React from 'react';
import { createRoot } from 'react-dom/client'; import { createRoot } from 'react-dom/client';
import { Root } from '@redux-devtools/app'; import { Root } from '@redux-devtools/app';
import './remote.pug';
chrome.storage.local.get( chrome.storage.local.get(
{ {
'select-monitor': 'InspectorMonitor', 'select-monitor': 'InspectorMonitor',
@ -31,7 +29,7 @@ chrome.storage.local.get(
} }
: undefined : undefined
} }
/> />,
); );
} },
); );

View File

@ -8,4 +8,5 @@ html
body body
#root #root
link(href='/remote.bundle.css', rel='stylesheet')
script(src='/remote.bundle.js') script(src='/remote.bundle.js')

View File

@ -7,8 +7,6 @@ import App from '../app/App';
import configureStore from './store/windowStore'; import configureStore from './store/windowStore';
import type { MonitorMessage } from '../background/store/apiMiddleware'; import type { MonitorMessage } from '../background/store/apiMiddleware';
import './window.pug';
const position = location.hash; const position = location.hash;
chrome.runtime.getBackgroundPage((window) => { chrome.runtime.getBackgroundPage((window) => {
@ -31,8 +29,9 @@ chrome.runtime.getBackgroundPage((window) => {
<PersistGate loading={null} persistor={persistor}> <PersistGate loading={null} persistor={persistor}>
<App position={position} /> <App position={position} />
</PersistGate> </PersistGate>
</Provider> </Provider>,
); );
}); });
if (position === '#popup') document.body.style.minWidth = '760px';
if (position !== '#popup') document.body.style.minHeight = '100%'; if (position !== '#popup') document.body.style.minHeight = '100%';

View File

@ -9,7 +9,7 @@ import {
function selectInstance( function selectInstance(
tabId: number, tabId: number,
store: MiddlewareAPI<Dispatch<StoreAction>, StoreState>, store: MiddlewareAPI<Dispatch<StoreAction>, StoreState>,
next: Dispatch<StoreAction> next: Dispatch<StoreAction>,
) { ) {
const instances = store.getState().instances; const instances = store.getState().instances;
if (instances.current === 'default') return; if (instances.current === 'default') return;
@ -29,12 +29,12 @@ function getCurrentTabId(next: (tabId: number) => void) {
const tab = tabs[0]; const tab = tabs[0];
if (!tab) return; if (!tab) return;
next(tab.id!); next(tab.id!);
} },
); );
} }
export default function popupSelector( export default function popupSelector(
store: MiddlewareAPI<Dispatch<StoreAction>, StoreState> store: MiddlewareAPI<Dispatch<StoreAction>, StoreState>,
) { ) {
return (next: Dispatch<StoreAction>) => (action: StoreAction) => { return (next: Dispatch<StoreAction>) => (action: StoreAction) => {
const result = next(action); const result = next(action);

View File

@ -13,7 +13,7 @@ import type {
export default function instances( export default function instances(
state = instancesInitialState, state = instancesInitialState,
action: WindowStoreAction action: WindowStoreAction,
) { ) {
switch (action.type) { switch (action.type) {
case UPDATE_STATE: case UPDATE_STATE:

View File

@ -45,12 +45,12 @@ const persistConfig = {
const persistedReducer: Reducer<StoreState, WindowStoreAction> = persistReducer( const persistedReducer: Reducer<StoreState, WindowStoreAction> = persistReducer(
persistConfig, persistConfig,
rootReducer rootReducer,
) as any; ) as any;
export default function configureStore( export default function configureStore(
baseStore: Store<BackgroundState, BackgroundAction>, baseStore: Store<BackgroundState, BackgroundAction>,
position: string position: string,
) { ) {
let enhancer: StoreEnhancer; let enhancer: StoreEnhancer;
const middlewares = [exportStateMiddleware, api, syncStores(baseStore)]; const middlewares = [exportStateMiddleware, api, syncStores(baseStore)];
@ -65,7 +65,7 @@ export default function configureStore(
applyMiddleware(...middlewares), applyMiddleware(...middlewares),
window.__REDUX_DEVTOOLS_EXTENSION__ window.__REDUX_DEVTOOLS_EXTENSION__
? window.__REDUX_DEVTOOLS_EXTENSION__() ? window.__REDUX_DEVTOOLS_EXTENSION__()
: (noop: unknown) => noop : (noop: unknown) => noop,
); );
} }
const store = createStore(persistedReducer, enhancer); const store = createStore(persistedReducer, enhancer);

View File

@ -14,4 +14,5 @@ html
height=300, width=350, height=300, width=350,
style='position: absolute; top: 50%; left: 50%; margin-top: -175px; margin-left: -175px;' style='position: absolute; top: 50%; left: 50%; margin-top: -175px; margin-left: -175px;'
) )
link(href='/window.bundle.css', rel='stylesheet')
script(src='/window.bundle.js') script(src='/window.bundle.js')

View File

@ -25,7 +25,7 @@ describe('App container', () => {
render( render(
<Provider store={store}> <Provider store={store}>
<App position="devtools-left" /> <App position="devtools-left" />
</Provider> </Provider>,
); );
expect(screen.getByTestId('inspector')).toBeDefined(); expect(screen.getByTestId('inspector')).toBeDefined();
}); });
@ -34,11 +34,9 @@ describe('App container', () => {
render( render(
<Provider store={store}> <Provider store={store}>
<App position="devtools-left" /> <App position="devtools-left" />
</Provider> </Provider>,
); );
const actionList = screen.getByTestId('actionList'); const actionList = screen.getByTestId('actionList');
expect( expect(within(actionList).queryByRole('button')).not.toBeInTheDocument();
within(actionList).getByTestId('actionListRows')
).toBeEmptyDOMElement();
}); });
}); });

View File

@ -50,7 +50,7 @@ describe('API', () => {
window.__REDUX_DEVTOOLS_EXTENSION__.send( window.__REDUX_DEVTOOLS_EXTENSION__.send(
{ type: 'hi' }, { type: 'hi' },
{ counter: 1 }, { counter: 1 },
1 1,
); );
}); });
expect(message).toMatchObject({ expect(message).toMatchObject({
@ -66,7 +66,7 @@ describe('API', () => {
window.__REDUX_DEVTOOLS_EXTENSION__.send( window.__REDUX_DEVTOOLS_EXTENSION__.send(
{ type: 'hi' }, { type: 'hi' },
{ counter: 1 }, { counter: 1 },
1 1,
); );
}); });
expect(message).toMatchObject({ expect(message).toMatchObject({

View File

@ -19,7 +19,7 @@ describe('Redux enhancer', () => {
const message = await listenMessage(() => { const message = await listenMessage(() => {
window.store = createStore( window.store = createStore(
counter, counter,
window.__REDUX_DEVTOOLS_EXTENSION__() window.__REDUX_DEVTOOLS_EXTENSION__(),
); );
expect(typeof window.store).toBe('object'); expect(typeof window.store).toBe('object');
}); });
@ -37,7 +37,7 @@ describe('Redux enhancer', () => {
message = await listenMessage(); message = await listenMessage();
expect(message.type).toBe('STATE'); expect(message.type).toBe('STATE');
expect(message.actionsById).toMatch( expect(message.actionsById).toMatch(
/{"0":{"type":"PERFORM_ACTION","action":{"type":"@@INIT"},"/ /{"0":{"type":"PERFORM_ACTION","action":{"type":"@@INIT"},"/,
); );
expect(message.computedStates).toBe('[{"state":0}]'); expect(message.computedStates).toBe('[{"state":0}]');
}); });
@ -49,7 +49,7 @@ describe('Redux enhancer', () => {
}); });
expect(message.type).toBe('ACTION'); expect(message.type).toBe('ACTION');
expect(message.action).toMatch( expect(message.action).toMatch(
/{"type":"PERFORM_ACTION","action":{"type":"INCREMENT"},/ /{"type":"PERFORM_ACTION","action":{"type":"INCREMENT"},/,
); );
expect(message.payload).toBe('1'); expect(message.payload).toBe('1');
@ -59,7 +59,7 @@ describe('Redux enhancer', () => {
}); });
expect(message.type).toBe('ACTION'); expect(message.type).toBe('ACTION');
expect(message.action).toMatch( expect(message.action).toMatch(
/{"type":"PERFORM_ACTION","action":{"type":"INCREMENT"},/ /{"type":"PERFORM_ACTION","action":{"type":"INCREMENT"},/,
); );
expect(message.payload).toBe('2'); expect(message.payload).toBe('2');
}); });
@ -72,7 +72,7 @@ describe('Redux enhancer', () => {
payload: "{ type: 'INCREMENT' }", payload: "{ type: 'INCREMENT' }",
source: '@devtools-extension', source: '@devtools-extension',
}, },
'*' '*',
); );
}); });
expect(message.type).toBe('ACTION'); expect(message.type).toBe('ACTION');
@ -80,7 +80,7 @@ describe('Redux enhancer', () => {
message = await listenMessage(); message = await listenMessage();
expect(message.type).toBe('ACTION'); expect(message.type).toBe('ACTION');
expect(message.action).toMatch( expect(message.action).toMatch(
/{"type":"PERFORM_ACTION","action":{"type":"INCREMENT"},/ /{"type":"PERFORM_ACTION","action":{"type":"INCREMENT"},/,
); );
expect(message.payload).toBe('3'); expect(message.payload).toBe('3');
}); });
@ -93,7 +93,7 @@ describe('Redux enhancer', () => {
payload: { type: 'TOGGLE_ACTION', id: 1 }, payload: { type: 'TOGGLE_ACTION', id: 1 },
source: '@devtools-extension', source: '@devtools-extension',
}, },
'*' '*',
); );
}); });
expect(message.type).toBe('DISPATCH'); expect(message.type).toBe('DISPATCH');
@ -109,7 +109,7 @@ describe('Redux enhancer', () => {
payload: { type: 'TOGGLE_ACTION', id: 1 }, payload: { type: 'TOGGLE_ACTION', id: 1 },
source: '@devtools-extension', source: '@devtools-extension',
}, },
'*' '*',
); );
}); });
expect(message.type).toBe('DISPATCH'); expect(message.type).toBe('DISPATCH');
@ -127,7 +127,7 @@ describe('Redux enhancer', () => {
payload: { type: 'JUMP_TO_STATE', index: 2, actionId: 2 }, payload: { type: 'JUMP_TO_STATE', index: 2, actionId: 2 },
source: '@devtools-extension', source: '@devtools-extension',
}, },
'*' '*',
); );
}); });
expect(message.type).toBe('DISPATCH'); expect(message.type).toBe('DISPATCH');
@ -140,7 +140,7 @@ describe('Redux enhancer', () => {
payload: { type: 'JUMP_TO_STATE', index: 3, actionId: 3 }, payload: { type: 'JUMP_TO_STATE', index: 3, actionId: 3 },
source: '@devtools-extension', source: '@devtools-extension',
}, },
'*' '*',
); );
}); });
expect(message.type).toBe('DISPATCH'); expect(message.type).toBe('DISPATCH');
@ -167,7 +167,7 @@ describe('Redux enhancer', () => {
}), }),
source: '@devtools-extension', source: '@devtools-extension',
}, },
'*' '*',
); );
}); });
expect(message.type).toBe('IMPORT'); expect(message.type).toBe('IMPORT');
@ -182,7 +182,7 @@ describe('Redux enhancer', () => {
counter, counter,
window.__REDUX_DEVTOOLS_EXTENSION__({ window.__REDUX_DEVTOOLS_EXTENSION__({
actionsDenylist: ['SOME_ACTION'], actionsDenylist: ['SOME_ACTION'],
}) }),
); );
expect(typeof window.store).toBe('object'); expect(typeof window.store).toBe('object');
}); });
@ -204,7 +204,7 @@ describe('Redux enhancer', () => {
const message = await listenMessage(() => { const message = await listenMessage(() => {
window.store = createStore( window.store = createStore(
counter, counter,
compose(testEnhancer, window.__REDUX_DEVTOOLS_EXTENSION__()) compose(testEnhancer, window.__REDUX_DEVTOOLS_EXTENSION__()),
); );
expect(typeof window.store).toBe('object'); expect(typeof window.store).toBe('object');
}); });

View File

@ -19,7 +19,7 @@ describe('Chrome extension', function () {
driver = new webdriver.Builder() driver = new webdriver.Builder()
.usingServer(`http://localhost:${port}`) .usingServer(`http://localhost:${port}`)
.setChromeOptions( .setChromeOptions(
new chrome.Options().addArguments(`load-extension=${path}`) new chrome.Options().addArguments(`load-extension=${path}`),
) )
.forBrowser('chrome') .forBrowser('chrome')
.build(); .build();
@ -52,14 +52,14 @@ describe('Chrome extension', function () {
it('should contain an empty actions list', async () => { it('should contain an empty actions list', async () => {
const val = await driver const val = await driver
.findElement( .findElement(
webdriver.By.xpath('//div[contains(@class, "actionListRows-")]') webdriver.By.xpath('//div[contains(@class, "actionListRows-")]'),
) )
.getText(); .getText();
expect(val).toBe(''); expect(val).toBe('');
}); });
Object.keys(switchMonitorTests).forEach((description) => Object.keys(switchMonitorTests).forEach((description) =>
it(description, () => switchMonitorTests[description](driver)) it(description, () => switchMonitorTests[description](driver)),
); );
it('should get actions list', async () => { it('should get actions list', async () => {
@ -77,14 +77,14 @@ describe('Chrome extension', function () {
const result = await driver.wait( const result = await driver.wait(
driver driver
.findElement( .findElement(
webdriver.By.xpath('//div[contains(@class, "actionListRows-")]') webdriver.By.xpath('//div[contains(@class, "actionListRows-")]'),
) )
.getText() .getText()
.then((val) => { .then((val) => {
return actionsPattern.test(val); return actionsPattern.test(val);
}), }),
15000, 15000,
"it doesn't match actions pattern" "it doesn't match actions pattern",
); );
expect(result).toBeTruthy(); expect(result).toBeTruthy();
}); });

View File

@ -20,7 +20,7 @@ describe('DevTools panel for Electron', function () {
.setChromeOptions( .setChromeOptions(
new chrome.Options() new chrome.Options()
.setChromeBinaryPath(electronPath) .setChromeBinaryPath(electronPath)
.addArguments(`app=${join(__dirname, 'fixture')}`) .addArguments(`app=${join(__dirname, 'fixture')}`),
) )
.forBrowser('chrome') .forBrowser('chrome')
.build(); .build();
@ -44,7 +44,7 @@ describe('DevTools panel for Electron', function () {
} }
} }
expect(await driver.getCurrentUrl()).toMatch( expect(await driver.getCurrentUrl()).toMatch(
/devtools:\/\/devtools\/bundled\/devtools_app.html/ /devtools:\/\/devtools\/bundled\/devtools_app.html/,
); );
const id = await driver.executeAsyncScript(function (callback) { const id = await driver.executeAsyncScript(function (callback) {
@ -81,8 +81,8 @@ describe('DevTools panel for Electron', function () {
.switchTo() .switchTo()
.frame( .frame(
driver.findElement( driver.findElement(
webdriver.By.xpath(`//iframe[@src='${devPanelPath}']`) webdriver.By.xpath(`//iframe[@src='${devPanelPath}']`),
) ),
); );
await delay(1000); await delay(1000);
}); });
@ -90,10 +90,10 @@ describe('DevTools panel for Electron', function () {
it('should contain INIT action', async () => { it('should contain INIT action', async () => {
const element = await driver.wait( const element = await driver.wait(
webdriver.until.elementLocated( webdriver.until.elementLocated(
webdriver.By.xpath('//div[contains(@class, "actionListRows-")]') webdriver.By.xpath('//div[contains(@class, "actionListRows-")]'),
), ),
5000, 5000,
'Element not found' 'Element not found',
); );
const val = await element.getText(); const val = await element.getText();
expect(val).toMatch(/@@INIT/); expect(val).toMatch(/@@INIT/);
@ -107,7 +107,7 @@ describe('DevTools panel for Electron', function () {
}); });
Object.keys(switchMonitorTests).forEach((description) => Object.keys(switchMonitorTests).forEach((description) =>
it(description, () => switchMonitorTests[description](driver)) it(description, () => switchMonitorTests[description](driver)),
); );
/* it('should be no logs in console of main window', async () => { /* it('should be no logs in console of main window', async () => {

View File

@ -1,4 +1,4 @@
<!DOCTYPE html> <!doctype html>
<html> <html>
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />

View File

@ -5,7 +5,7 @@ app.on('window-all-closed', app.quit);
app.whenReady().then(async () => { app.whenReady().then(async () => {
await session.defaultSession.loadExtension( await session.defaultSession.loadExtension(
path.join(__dirname, '../../../dist'), path.join(__dirname, '../../../dist'),
{ allowFileAccess: true } { allowFileAccess: true },
); );
const mainWindow = new BrowserWindow({ const mainWindow = new BrowserWindow({

View File

@ -19,7 +19,7 @@ const store = createStore(
initialState, initialState,
window.__REDUX_DEVTOOLS_EXTENSION__ window.__REDUX_DEVTOOLS_EXTENSION__
? window.__REDUX_DEVTOOLS_EXTENSION__() ? window.__REDUX_DEVTOOLS_EXTENSION__()
: (noop) => noop : (noop) => noop,
); );
const el = document.getElementById('counter'); const el = document.getElementById('counter');

View File

@ -9,7 +9,7 @@ function test(title, data, maxTime = 100) {
await listenMessage(() => { await listenMessage(() => {
window.__REDUX_DEVTOOLS_EXTENSION__.send( window.__REDUX_DEVTOOLS_EXTENSION__.send(
{ type: 'TEST_ACTION', data }, { type: 'TEST_ACTION', data },
data data,
); );
}); });
const ms = new Date() - start; const ms = new Date() - start;

View File

@ -15,8 +15,8 @@ export const switchMonitorTests = {
await delay(500); await delay(500);
await driver.findElement( await driver.findElement(
webdriver.By.xpath( webdriver.By.xpath(
'//div[div[button[text()="Reset"]] and .//div[button[text()="Revert"]]]' '//div[div[button[text()="Reset"]] and .//div[button[text()="Revert"]]]',
) ),
); );
await delay(500); await delay(500);
}, },
@ -31,7 +31,7 @@ export const switchMonitorTests = {
.click(); .click();
await delay(500); await delay(500);
await driver.findElement( await driver.findElement(
webdriver.By.xpath('//*[@class="nodeText" and text()="state"]') webdriver.By.xpath('//*[@class="nodeText" and text()="state"]'),
); );
await delay(500); // Wait till menu is closed await delay(500); // Wait till menu is closed
}, },

View File

@ -1,81 +0,0 @@
const path = require('path');
const webpack = require('webpack');
const CopyPlugin = require('copy-webpack-plugin');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
module.exports = function (env) {
return {
mode: env.production ? 'production' : 'development',
devtool: env.production ? undefined : 'eval-source-map',
entry: {
background: [
path.resolve(__dirname, 'src/chromeApiMock'),
path.resolve(__dirname, 'src/background/index'),
],
options: [
path.resolve(__dirname, 'src/chromeApiMock'),
path.resolve(__dirname, 'src/options/index'),
],
window: [path.resolve(__dirname, 'src/window/index')],
remote: [path.resolve(__dirname, 'src/remote/index')],
devpanel: [
path.resolve(__dirname, 'src/chromeApiMock'),
path.resolve(__dirname, 'src/devpanel/index'),
],
devtools: path.resolve(__dirname, 'src/devtools/index'),
content: [
path.resolve(__dirname, 'src/chromeApiMock'),
path.resolve(__dirname, 'src/contentScript/index'),
],
page: path.join(__dirname, 'src/pageScript'),
...(env.production
? {}
: { pagewrap: path.resolve(__dirname, 'src/pageScriptWrap') }),
},
output: {
filename: '[name].bundle.js',
},
plugins: [
new webpack.DefinePlugin({
'process.env.BABEL_ENV': JSON.stringify(process.env.NODE_ENV),
}),
new ForkTsCheckerWebpackPlugin({
typescript: {
configFile: 'tsconfig.json',
},
}),
new CopyPlugin({
patterns: [
{
from: path.join(__dirname, 'chrome/manifest.json'),
to: path.join(__dirname, 'dist/manifest.json'),
},
{
from: path.join(__dirname, 'src/assets'),
to: path.join(__dirname, 'dist'),
},
],
}),
],
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
module: {
rules: [
{
test: /\.(js|ts)x?$/,
use: 'babel-loader',
exclude: /node_modules/,
},
{
test: /\.css?$/,
use: ['style-loader', 'css-loader'],
},
{
test: /\.pug$/,
use: ['file-loader?name=[name].html', 'pug-html-loader'],
},
],
},
};
};

View File

@ -1,31 +0,0 @@
const path = require('path');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
module.exports = {
mode: 'production',
entry: {
pagewrap: path.resolve(__dirname, 'src/pageScriptWrap'),
},
output: {
filename: '[name].bundle.js',
},
plugins: [
new ForkTsCheckerWebpackPlugin({
typescript: {
configFile: 'tsconfig.json',
},
}),
],
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
module: {
rules: [
{
test: /\.(js|ts)x?$/,
use: 'babel-loader',
exclude: /(node_modules|dist\/page\.bundle)/,
},
],
},
};

View File

@ -1,21 +1,21 @@
{ {
"private": true, "private": true,
"devDependencies": { "devDependencies": {
"@babel/core": "^7.22.1", "@babel/core": "^7.23.0",
"@babel/eslint-parser": "^7.21.8", "@babel/eslint-parser": "^7.22.15",
"@changesets/cli": "^2.26.1", "@changesets/cli": "^2.26.2",
"@typescript-eslint/eslint-plugin": "^5.59.8", "@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^5.59.8", "@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.42.0", "eslint": "^8.50.0",
"eslint-config-prettier": "^8.8.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.1", "eslint-plugin-jest": "^27.4.0",
"eslint-plugin-react": "^7.32.2", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0", "jest": "^29.7.0",
"prettier": "2.8.8", "prettier": "3.0.3",
"typescript": "~5.0.4", "typescript": "~5.2.2",
"nx": "^16.3.2", "nx": "^16.9.1",
"@nrwl/nx-cloud": "^16.0.5" "@nrwl/nx-cloud": "^16.4.0"
}, },
"scripts": { "scripts": {
"format": "prettier --write .", "format": "prettier --write .",
@ -39,10 +39,5 @@
"packages/redux-devtools-rtk-query-monitor/demo", "packages/redux-devtools-rtk-query-monitor/demo",
"packages/redux-devtools-slider-monitor/examples/todomvc" "packages/redux-devtools-slider-monitor/examples/todomvc"
], ],
"packageManager": "pnpm@8.6.0", "packageManager": "pnpm@8.8.0"
"pnpm": {
"overrides": {
"@babel/highlight>chalk": "Methuselah96/chalk#v2-without-process"
}
}
} }

View File

@ -6,7 +6,7 @@ module.exports = {
extends: '../../eslintrc.ts.base.json', extends: '../../eslintrc.ts.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
}, },
], ],

View File

@ -2,7 +2,7 @@ module.exports = {
extends: '../../../../eslintrc.ts.base.json', extends: '../../../../eslintrc.ts.base.json',
parserOptions: { parserOptions: {
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
project: ['./tsconfig.json'], project: true,
}, },
overrides: [ overrides: [
{ {

View File

@ -29,22 +29,22 @@
"map2tree": "^3.0.0" "map2tree": "^3.0.0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.22.1", "@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.4", "@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.21.5", "@babel/preset-typescript": "^7.23.0",
"@types/node": "^18.16.16", "@types/node": "^18.18.0",
"@typescript-eslint/eslint-plugin": "^5.59.8", "@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^5.59.8", "@typescript-eslint/parser": "^6.7.3",
"babel-loader": "^9.1.2", "babel-loader": "^9.1.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"eslint": "^8.42.0", "eslint": "^8.50.0",
"eslint-config-prettier": "^8.8.0", "eslint-config-prettier": "^9.0.0",
"fork-ts-checker-webpack-plugin": "^8.0.0", "fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.1", "html-webpack-plugin": "^5.5.3",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"typescript": "~5.0.4", "typescript": "~5.2.2",
"webpack": "^5.85.0", "webpack": "^5.88.2",
"webpack-cli": "^5.1.3", "webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.0" "webpack-dev-server": "^4.15.1"
} }
} }

View File

@ -40,8 +40,8 @@
"prepublish": "pnpm run type-check && pnpm run lint" "prepublish": "pnpm run type-check && pnpm run lint"
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.22.3", "@babel/runtime": "^7.23.1",
"@types/d3": "^7.4.0", "@types/d3": "^7.4.1",
"d3": "^7.8.5", "d3": "^7.8.5",
"d3tooltip": "^3.0.0", "d3tooltip": "^3.0.0",
"deepmerge": "^4.3.1", "deepmerge": "^4.3.1",
@ -49,17 +49,17 @@
"ramda": "^0.29.0" "ramda": "^0.29.0"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.21.5", "@babel/cli": "^7.23.0",
"@babel/core": "^7.22.1", "@babel/core": "^7.23.0",
"@babel/eslint-parser": "^7.21.8", "@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.22.4", "@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.21.5", "@babel/preset-typescript": "^7.23.0",
"@types/ramda": "^0.29.2", "@types/ramda": "^0.29.5",
"@typescript-eslint/eslint-plugin": "^5.59.8", "@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^5.59.8", "@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.42.0", "eslint": "^8.50.0",
"eslint-config-prettier": "^8.8.0", "eslint-config-prettier": "^9.0.0",
"rimraf": "^5.0.1", "rimraf": "^5.0.5",
"typescript": "~5.0.4" "typescript": "~5.2.2"
} }
} }

View File

@ -189,14 +189,14 @@ export default function (DOMNode: HTMLElement, options: Partial<Options> = {}) {
zoom.on('zoom', (event) => { zoom.on('zoom', (event) => {
const { transform } = event as D3ZoomEvent<SVGSVGElement, unknown>; const { transform } = event as D3ZoomEvent<SVGSVGElement, unknown>;
vis.attr('transform', transform.toString()); vis.attr('transform', transform.toString());
}) }),
) )
.append('g') .append('g')
.attr( .attr(
'transform', 'transform',
`translate(${margin.left + nodeStyleOptions.radius}, ${ `translate(${margin.left + nodeStyleOptions.radius}, ${
margin.top margin.top
}) scale(${initialZoom})` }) scale(${initialZoom})`,
); );
// previousNodePositionsById stores node x and y // previousNodePositionsById stores node x and y
@ -217,7 +217,7 @@ export default function (DOMNode: HTMLElement, options: Partial<Options> = {}) {
function findParentNodePosition( function findParentNodePosition(
nodePositionsById: { [nodeId: string | number]: NodePosition }, nodePositionsById: { [nodeId: string | number]: NodePosition },
nodeId: string | number, nodeId: string | number,
filter: (nodePosition: NodePosition) => boolean filter: (nodePosition: NodePosition) => boolean,
) { ) {
let currentPosition = nodePositionsById[nodeId]; let currentPosition = nodePositionsById[nodeId];
while (currentPosition) { while (currentPosition) {
@ -264,7 +264,7 @@ export default function (DOMNode: HTMLElement, options: Partial<Options> = {}) {
c.id = `${node.id || ''}|${c.name}`; c.id = `${node.id || ''}|${c.name}`;
return c; return c;
}) })
: null : null,
); );
update(); update();
@ -291,7 +291,7 @@ export default function (DOMNode: HTMLElement, options: Partial<Options> = {}) {
const rootNode = d3.hierarchy(data); const rootNode = d3.hierarchy(data);
if (isSorted) { if (isSorted) {
rootNode.sort((a, b) => rootNode.sort((a, b) =>
b.data.name.toLowerCase() < a.data.name.toLowerCase() ? 1 : -1 b.data.name.toLowerCase() < a.data.name.toLowerCase() ? 1 : -1,
); );
} }
@ -300,7 +300,7 @@ export default function (DOMNode: HTMLElement, options: Partial<Options> = {}) {
rootPointNode.each( rootPointNode.each(
(node) => (node) =>
(node.y = node.depth * (maxLabelLength * 7 * widthBetweenNodesCoeff)) (node.y = node.depth * (maxLabelLength * 7 * widthBetweenNodesCoeff)),
); );
const nodes = rootPointNode.descendants(); const nodes = rootPointNode.descendants();
@ -327,7 +327,7 @@ export default function (DOMNode: HTMLElement, options: Partial<Options> = {}) {
const position = findParentNodePosition( const position = findParentNodePosition(
nodePositionsById, nodePositionsById,
d.data.id, d.data.id,
(n) => !!previousNodePositionsById[n.id] (n) => !!previousNodePositionsById[n.id],
); );
const previousPosition = const previousPosition =
(position && previousNodePositionsById[position.id]) || (position && previousNodePositionsById[position.id]) ||
@ -358,7 +358,7 @@ export default function (DOMNode: HTMLElement, options: Partial<Options> = {}) {
...tooltipOptions, ...tooltipOptions,
root, root,
text: (d) => getTooltipString(d.data, tooltipOptions), text: (d) => getTooltipString(d.data, tooltipOptions),
}) }),
); );
} }
@ -402,7 +402,7 @@ export default function (DOMNode: HTMLElement, options: Partial<Options> = {}) {
? nodeStyleOptions.colors.collapsed ? nodeStyleOptions.colors.collapsed
: d.data.children && d.data.children.length > 0 : d.data.children && d.data.children.length > 0
? nodeStyleOptions.colors.parent ? nodeStyleOptions.colors.parent
: nodeStyleOptions.colors.default : nodeStyleOptions.colors.default,
); );
// transition nodes to their new position // transition nodes to their new position
@ -433,7 +433,7 @@ export default function (DOMNode: HTMLElement, options: Partial<Options> = {}) {
this: SVGGElement & { this: SVGGElement & {
__oldData__?: HierarchyPointNode<InternalNode>; __oldData__?: HierarchyPointNode<InternalNode>;
}, },
d d,
) { ) {
// test whether the relevant properties of d match // test whether the relevant properties of d match
// the equivalent property of the oldData // the equivalent property of the oldData
@ -458,7 +458,7 @@ export default function (DOMNode: HTMLElement, options: Partial<Options> = {}) {
const position = findParentNodePosition( const position = findParentNodePosition(
previousNodePositionsById, previousNodePositionsById,
d.data.id, d.data.id,
(n) => !!nodePositionsById[n.id] (n) => !!nodePositionsById[n.id],
); );
const futurePosition = const futurePosition =
(position && nodePositionsById[position.id]) || (position && nodePositionsById[position.id]) ||
@ -474,7 +474,7 @@ export default function (DOMNode: HTMLElement, options: Partial<Options> = {}) {
// update the links // update the links
const link = vis const link = vis
.selectAll<SVGPathElement, HierarchyPointLink<InternalNode>>( .selectAll<SVGPathElement, HierarchyPointLink<InternalNode>>(
'path.link' 'path.link',
) )
.data(links, (d) => d.target.data.id); .data(links, (d) => d.target.data.id);
@ -487,7 +487,7 @@ export default function (DOMNode: HTMLElement, options: Partial<Options> = {}) {
const position = findParentNodePosition( const position = findParentNodePosition(
nodePositionsById, nodePositionsById,
d.target.data.id, d.target.data.id,
(n) => !!previousNodePositionsById[n.id] (n) => !!previousNodePositionsById[n.id],
); );
const previousPosition = const previousPosition =
(position && previousNodePositionsById[position.id]) || (position && previousNodePositionsById[position.id]) ||
@ -519,7 +519,7 @@ export default function (DOMNode: HTMLElement, options: Partial<Options> = {}) {
const position = findParentNodePosition( const position = findParentNodePosition(
previousNodePositionsById, previousNodePositionsById,
d.target.data.id, d.target.data.id,
(n) => !!nodePositionsById[n.id] (n) => !!nodePositionsById[n.id],
); );
const futurePosition = const futurePosition =
(position && nodePositionsById[position.id]) || (position && nodePositionsById[position.id]) ||

Some files were not shown because too many files have changed in this diff Show More