Skip to content

Commit 6f9591e

Browse files
committed
Use thunk and Immer named imports
1 parent 9b1f185 commit 6f9591e

5 files changed

+46
-26
lines changed

packages/toolkit/src/configureStore.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const IS_PRODUCTION = process.env.NODE_ENV === 'production'
3434
* @public
3535
*/
3636
export type ConfigureEnhancersCallback<E extends Enhancers = Enhancers> = (
37-
defaultEnhancers: readonly StoreEnhancer[]
37+
defaultEnhancers: readonly StoreEnhancer[]
3838
) => [...E]
3939

4040
/**
@@ -107,7 +107,7 @@ type Enhancers = ReadonlyArray<StoreEnhancer>
107107
export interface ToolkitStore<
108108
S = any,
109109
A extends Action = AnyAction,
110-
M extends Middlewares<S> = Middlewares<S>,
110+
M extends Middlewares<S> = Middlewares<S>
111111
> extends Store<S, A> {
112112
/**
113113
* The `dispatch` method of your store, enhanced by all its middlewares.

packages/toolkit/src/createReducer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Draft } from 'immer'
2-
import createNextState, { isDraft, isDraftable } from 'immer'
2+
import { produce as createNextState, isDraft, isDraftable } from 'immer'
33
import type { AnyAction, Action, Reducer } from 'redux'
44
import type { ActionReducerMapBuilder } from './mapBuilders'
55
import { executeReducerBuilderCallback } from './mapBuilders'

packages/toolkit/src/getDefaultMiddleware.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { Middleware, AnyAction } from 'redux'
22
import type { ThunkMiddleware } from 'redux-thunk'
3-
import thunkMiddleware from 'redux-thunk'
3+
import { thunk as thunkMiddleware, withExtraArgument } from 'redux-thunk'
44
import type { ImmutableStateInvariantMiddlewareOptions } from './immutableStateInvariantMiddleware'
55
/* PROD_START_REMOVE_UMD */
66
import { createImmutableStateInvariantMiddleware } from './immutableStateInvariantMiddleware'
@@ -88,9 +88,7 @@ export function getDefaultMiddleware<
8888
if (isBoolean(thunk)) {
8989
middlewareArray.push(thunkMiddleware)
9090
} else {
91-
middlewareArray.push(
92-
thunkMiddleware.withExtraArgument(thunk.extraArgument)
93-
)
91+
middlewareArray.push(withExtraArgument(thunk.extraArgument))
9492
}
9593
}
9694

packages/toolkit/src/tests/configureStore.typetest.ts

+27-15
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type {
66
Reducer,
77
Store,
88
Action,
9-
StoreEnhancer
9+
StoreEnhancer,
1010
} from 'redux'
1111
import { applyMiddleware } from 'redux'
1212
import type { PayloadAction } from '@reduxjs/toolkit'
@@ -17,7 +17,7 @@ import {
1717
ConfigureStoreOptions,
1818
} from '@reduxjs/toolkit'
1919
import type { ThunkMiddleware, ThunkAction, ThunkDispatch } from 'redux-thunk'
20-
import thunk from 'redux-thunk'
20+
import { thunk } from 'redux-thunk'
2121
import { expectNotAny, expectType } from './helpers'
2222

2323
const _anyMiddleware: any = () => () => () => {}
@@ -144,10 +144,12 @@ const _anyMiddleware: any = () => () => () => {}
144144
{
145145
const store = configureStore({
146146
reducer: () => 0,
147-
enhancers: [applyMiddleware(() => next => next)]
147+
enhancers: [applyMiddleware(() => (next) => next)],
148148
})
149149

150-
expectType<Dispatch & ThunkDispatch<number, undefined, AnyAction>>(store.dispatch)
150+
expectType<Dispatch & ThunkDispatch<number, undefined, AnyAction>>(
151+
store.dispatch
152+
)
151153
}
152154

153155
configureStore({
@@ -159,7 +161,7 @@ const _anyMiddleware: any = () => () => () => {}
159161
{
160162
type SomePropertyStoreEnhancer = StoreEnhancer<{ someProperty: string }>
161163

162-
const somePropertyStoreEnhancer: SomePropertyStoreEnhancer = next => {
164+
const somePropertyStoreEnhancer: SomePropertyStoreEnhancer = (next) => {
163165
return (reducer, preloadedState) => {
164166
return {
165167
...next(reducer, preloadedState),
@@ -168,9 +170,13 @@ const _anyMiddleware: any = () => () => () => {}
168170
}
169171
}
170172

171-
type AnotherPropertyStoreEnhancer = StoreEnhancer<{ anotherProperty: number }>
173+
type AnotherPropertyStoreEnhancer = StoreEnhancer<{
174+
anotherProperty: number
175+
}>
172176

173-
const anotherPropertyStoreEnhancer: AnotherPropertyStoreEnhancer = next => {
177+
const anotherPropertyStoreEnhancer: AnotherPropertyStoreEnhancer = (
178+
next
179+
) => {
174180
return (reducer, preloadedState) => {
175181
return {
176182
...next(reducer, preloadedState),
@@ -184,7 +190,9 @@ const _anyMiddleware: any = () => () => () => {}
184190
enhancers: [somePropertyStoreEnhancer, anotherPropertyStoreEnhancer],
185191
})
186192

187-
expectType<Dispatch & ThunkDispatch<number, undefined, AnyAction>>(store.dispatch)
193+
expectType<Dispatch & ThunkDispatch<number, undefined, AnyAction>>(
194+
store.dispatch
195+
)
188196
expectType<string>(store.someProperty)
189197
expectType<number>(store.anotherProperty)
190198
}
@@ -348,7 +356,9 @@ const _anyMiddleware: any = () => () => () => {}
348356
{
349357
const store = configureStore({
350358
reducer: reducerA,
351-
middleware: [] as any as readonly [Middleware<(a: StateA) => boolean, StateA>],
359+
middleware: [] as any as readonly [
360+
Middleware<(a: StateA) => boolean, StateA>
361+
],
352362
})
353363
const result: boolean = store.dispatch(5)
354364
// @ts-expect-error
@@ -532,21 +542,23 @@ const _anyMiddleware: any = () => () => () => {}
532542
initialState: null as any,
533543
reducers: {
534544
set(state) {
535-
return state;
545+
return state
536546
},
537547
},
538-
});
548+
})
539549

540-
function configureMyStore<S>(options: Omit<ConfigureStoreOptions<S>, 'reducer'>) {
550+
function configureMyStore<S>(
551+
options: Omit<ConfigureStoreOptions<S>, 'reducer'>
552+
) {
541553
return configureStore({
542554
...options,
543555
reducer: someSlice.reducer,
544-
});
556+
})
545557
}
546558

547-
const store = configureMyStore({});
559+
const store = configureMyStore({})
548560

549-
expectType<Function>(store.dispatch);
561+
expectType<Function>(store.dispatch)
550562
}
551563

552564
{

packages/toolkit/src/tests/getDefaultMiddleware.test.ts

+14-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
MiddlewareArray,
1212
configureStore,
1313
} from '@reduxjs/toolkit'
14-
import thunk from 'redux-thunk'
14+
import { thunk } from 'redux-thunk'
1515
import type { ThunkMiddleware } from 'redux-thunk'
1616

1717
import { expectType } from './helpers'
@@ -23,10 +23,20 @@ describe('getDefaultMiddleware', () => {
2323
process.env.NODE_ENV = ORIGINAL_NODE_ENV
2424
})
2525

26-
it('returns an array with only redux-thunk in production', () => {
27-
process.env.NODE_ENV = 'production'
26+
describe('Production behavior', () => {
27+
beforeEach(() => {
28+
jest.resetModules()
29+
})
30+
31+
it('returns an array with only redux-thunk in production', () => {
32+
process.env.NODE_ENV = 'production'
33+
const { thunk } = require('redux-thunk')
34+
const { getDefaultMiddleware } = require('@reduxjs/toolkit')
2835

29-
expect(getDefaultMiddleware()).toEqual([thunk]) // @remap-prod-remove-line
36+
const middleware = getDefaultMiddleware()
37+
expect(middleware).toContain(thunk)
38+
expect(middleware.length).toBe(1)
39+
})
3040
})
3141

3242
it('returns an array with additional middleware in development', () => {

0 commit comments

Comments
 (0)