Skip to content

Commit 61ec00f

Browse files
authored
Remove unnecessary lodash usage from bundles (#1718)
* Use lodash-es instead of lodash in extension Produces (slightly) smaller bundles * Use lodash-es instead of lodash in instrument * Use lodash-es instead of lodash in utils * Use lodash-es instead of lodash in redux-devtools * Remove lodash from instrument * Remove lodash from redux-devtools * Remove lodash from utils * Remove unnecessary mapValues from extension
1 parent 7f41fcf commit 61ec00f

File tree

12 files changed

+64
-80
lines changed

12 files changed

+64
-80
lines changed

extension/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"@types/jsan": "^3.1.5",
3636
"jsan": "^3.1.14",
3737
"localforage": "^1.10.0",
38-
"lodash": "^4.17.21",
38+
"lodash-es": "^4.17.21",
3939
"react": "^18.3.1",
4040
"react-dom": "^18.3.1",
4141
"react-icons": "^5.2.1",
@@ -56,7 +56,7 @@
5656
"@testing-library/jest-dom": "^6.4.8",
5757
"@testing-library/react": "^16.0.0",
5858
"@types/chrome": "^0.0.269",
59-
"@types/lodash": "^4.17.7",
59+
"@types/lodash-es": "^4.17.12",
6060
"@types/react": "^18.3.3",
6161
"@types/react-dom": "^18.3.0",
6262
"@types/styled-components": "^5.1.34",

extension/src/pageScript/api/filters.ts

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import mapValues from 'lodash/mapValues';
21
import { Action } from 'redux';
32
import { LiftedState, PerformAction } from '@redux-devtools/instrument';
43
import { LocalFilter } from '@redux-devtools/utils';
@@ -46,10 +45,15 @@ function filterActions<A extends Action<string>>(
4645
actionSanitizer: ((action: A, id: number) => A) | undefined,
4746
): { [p: number]: PerformAction<A> } {
4847
if (!actionSanitizer) return actionsById;
49-
return mapValues(actionsById, (action, id) => ({
50-
...action,
51-
action: actionSanitizer(action.action, id as unknown as number),
52-
}));
48+
return Object.fromEntries(
49+
Object.entries(actionsById).map(([actionId, action]) => [
50+
actionId,
51+
{
52+
...action,
53+
action: actionSanitizer(action.action, actionId as unknown as number),
54+
},
55+
]),
56+
);
5357
}
5458

5559
function filterStates<S>(

extension/src/pageScript/api/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import jsan, { Options } from 'jsan';
2-
import throttle from 'lodash/throttle';
2+
import { throttle } from 'lodash-es';
33
import { immutableSerialize } from '@redux-devtools/serialize';
44
import { getActionsArray, getLocalFilter } from '@redux-devtools/utils';
55
import { isFiltered, PartialLiftedState } from './filters';

extension/src/pageScript/index.ts

+2-9
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,8 @@ import {
44
getActionsArray,
55
getLocalFilter,
66
} from '@redux-devtools/utils';
7-
import throttle from 'lodash/throttle';
8-
import {
9-
Action,
10-
ActionCreator,
11-
Dispatch,
12-
Reducer,
13-
StoreEnhancer,
14-
StoreEnhancerStoreCreator,
15-
} from 'redux';
7+
import { throttle } from 'lodash-es';
8+
import { Action, ActionCreator, Dispatch, Reducer, StoreEnhancer } from 'redux';
169
import Immutable from 'immutable';
1710
import {
1811
EnhancedStore,

packages/redux-devtools-instrument/package.json

-5
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,6 @@
4040
"prepack": "pnpm run clean && pnpm run build",
4141
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
4242
},
43-
"dependencies": {
44-
"@babel/runtime": "^7.25.0",
45-
"lodash": "^4.17.21"
46-
},
4743
"devDependencies": {
4844
"@babel/cli": "^7.24.8",
4945
"@babel/core": "^7.25.2",
@@ -52,7 +48,6 @@
5248
"@babel/preset-env": "^7.25.3",
5349
"@babel/preset-typescript": "^7.24.7",
5450
"@types/jest": "^29.5.12",
55-
"@types/lodash": "^4.17.7",
5651
"@types/node": "^20.14.14",
5752
"jest": "^29.7.0",
5853
"redux": "^5.0.1",

packages/redux-devtools-instrument/src/instrument.ts

+16-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
import difference from 'lodash/difference';
2-
import union from 'lodash/union';
3-
import isPlainObject from 'lodash/isPlainObject';
41
import {
52
Action,
3+
isPlainObject,
64
Observer,
75
Reducer,
86
Store,
@@ -669,9 +667,18 @@ function liftReducerWith<
669667
const actionIds = [];
670668
for (let i = start; i < end; i++) actionIds.push(i);
671669
if (active) {
672-
skippedActionIds = difference(skippedActionIds, actionIds);
670+
const actionIdsSet = new Set(actionIds);
671+
skippedActionIds = skippedActionIds.filter(
672+
(actionId) => !actionIdsSet.has(actionId),
673+
);
673674
} else {
674-
skippedActionIds = union(skippedActionIds, actionIds);
675+
const skippedActionIdsSet = new Set(skippedActionIds);
676+
skippedActionIds = [
677+
...skippedActionIds,
678+
...actionIds.filter(
679+
(actionId) => !skippedActionIdsSet.has(actionId),
680+
),
681+
];
675682
}
676683

677684
// Optimization: we know history before this action hasn't changed
@@ -696,7 +703,10 @@ function liftReducerWith<
696703
}
697704
case ActionTypes.SWEEP: {
698705
// Forget any actions that are currently being skipped.
699-
stagedActionIds = difference(stagedActionIds, skippedActionIds);
706+
const skippedActionIdsSet = new Set(skippedActionIds);
707+
stagedActionIds = stagedActionIds.filter(
708+
(actionId) => !skippedActionIdsSet.has(actionId),
709+
);
700710
skippedActionIds = [];
701711
currentStateIndex = Math.min(
702712
currentStateIndex,

packages/redux-devtools-instrument/test/instrument.spec.ts

+9-8
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import {
1515
LiftedState,
1616
} from '../src/instrument';
1717
import { from, Observable } from 'rxjs';
18-
import _ from 'lodash';
1918

2019
type CounterAction = { type: 'INCREMENT' } | { type: 'DECREMENT' };
2120
function counter(state = 0, action: CounterAction) {
@@ -1171,13 +1170,15 @@ describe('instrument', () => {
11711170
function filterStackAndTimestamps<S, A extends Action<string>>(
11721171
state: LiftedState<S, A, null>,
11731172
) {
1174-
state.actionsById = _.mapValues(state.actionsById, (action) => {
1175-
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
1176-
// @ts-ignore
1177-
delete action.timestamp;
1178-
delete action.stack;
1179-
return action;
1180-
});
1173+
state.actionsById = Object.fromEntries(
1174+
Object.entries(state.actionsById).map(([actionId, action]) => {
1175+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
1176+
// @ts-ignore
1177+
delete action.timestamp;
1178+
delete action.stack;
1179+
return [actionId, action];
1180+
}),
1181+
);
11811182
return state;
11821183
}
11831184

packages/redux-devtools-utils/package.json

-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
"get-params": "^0.1.2",
4040
"immutable": "^4.3.7",
4141
"jsan": "^3.1.14",
42-
"lodash": "^4.17.21",
4342
"nanoid": "^5.0.7",
4443
"redux": "^5.0.1"
4544
},
@@ -51,7 +50,6 @@
5150
"@babel/preset-env": "^7.25.3",
5251
"@babel/preset-typescript": "^7.24.7",
5352
"@types/jsan": "^3.1.5",
54-
"@types/lodash": "^4.17.7",
5553
"@types/node": "^20.14.14",
5654
"rimraf": "^6.0.1",
5755
"typescript": "~5.5.4"

packages/redux-devtools-utils/src/filters.ts

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import mapValues from 'lodash/mapValues';
21
import { PerformAction } from '@redux-devtools/core';
32
import { Action } from 'redux';
43

@@ -23,10 +22,15 @@ function filterActions(
2322
actionSanitizer: ((action: Action<string>, id: number) => Action) | undefined,
2423
) {
2524
if (!actionSanitizer) return actionsById;
26-
return mapValues(actionsById, (action, id: number) => ({
27-
...action,
28-
action: actionSanitizer(action.action, id),
29-
}));
25+
return Object.fromEntries(
26+
Object.entries(actionsById).map(([actionId, action]) => [
27+
actionId,
28+
{
29+
...action,
30+
action: actionSanitizer(action.action, actionId as unknown as number),
31+
},
32+
]),
33+
);
3034
}
3135

3236
function filterStates(

packages/redux-devtools/package.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@
4242
},
4343
"dependencies": {
4444
"@babel/runtime": "^7.25.0",
45-
"@redux-devtools/instrument": "^2.2.0",
46-
"lodash": "^4.17.21"
45+
"@redux-devtools/instrument": "^2.2.0"
4746
},
4847
"devDependencies": {
4948
"@babel/cli": "^7.24.8",
@@ -54,7 +53,6 @@
5453
"@babel/preset-react": "^7.24.7",
5554
"@babel/preset-typescript": "^7.24.7",
5655
"@types/jest": "^29.5.12",
57-
"@types/lodash": "^4.17.7",
5856
"@types/node": "^20.14.14",
5957
"@types/react": "^18.3.3",
6058
"jest": "^29.7.0",

packages/redux-devtools/src/persistState.ts

+11-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
import mapValues from 'lodash/mapValues';
2-
import identity from 'lodash/identity';
31
import { Action, Reducer, StoreEnhancer } from 'redux';
42
import { LiftedState } from '@redux-devtools/instrument';
53

64
export default function persistState<S, A extends Action<string>, MonitorState>(
75
sessionId?: string | null,
8-
deserializeState: (state: S) => S = identity,
9-
deserializeAction: (action: A) => A = identity,
6+
deserializeState: (state: S) => S = (state) => state,
7+
deserializeAction: (action: A) => A = (state) => state,
108
): StoreEnhancer {
119
if (!sessionId) {
1210
return (next) =>
@@ -19,10 +17,15 @@ export default function persistState<S, A extends Action<string>, MonitorState>(
1917
): LiftedState<S, A, MonitorState> {
2018
return {
2119
...state,
22-
actionsById: mapValues(state.actionsById, (liftedAction) => ({
23-
...liftedAction,
24-
action: deserializeAction(liftedAction.action),
25-
})),
20+
actionsById: Object.fromEntries(
21+
Object.entries(state.actionsById).map(([actionId, liftedAction]) => [
22+
actionId,
23+
{
24+
...liftedAction,
25+
action: deserializeAction(liftedAction.action),
26+
},
27+
]),
28+
),
2629
committedState: deserializeState(state.committedState),
2730
computedStates: state.computedStates.map((computedState) => ({
2831
...computedState,

pnpm-lock.yaml

+4-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)