@@ -3,7 +3,7 @@ import $$observable from 'symbol-observable'
3
3
import ActionTypes from './utils/actionTypes'
4
4
import isPlainObject from './utils/isPlainObject'
5
5
6
- let defaultOptions = { rules : { } }
6
+ let defaultOptions = { rules : { } }
7
7
8
8
/**
9
9
* Creates a Redux store that holds the state tree.
@@ -46,37 +46,28 @@ export default function createStore(reducer, preloadedState, enhancer, options)
46
46
) {
47
47
throw new Error (
48
48
'It looks like you are passing several store enhancers to ' +
49
- 'createStore(). This is not supported. Instead, compose them ' +
50
- 'together to a single function.'
49
+ 'createStore(). This is not supported. Instead, compose them ' +
50
+ 'together to a single function.'
51
51
)
52
52
}
53
53
54
54
if ( typeof preloadedState === 'function' ) {
55
- if (
56
- ( typeof enhancer === 'object' ) ||
57
- ( typeof enhancer === 'undefined' )
58
- ) {
59
- options = enhancer
60
- enhancer = preloadedState
61
- preloadedState = undefined
62
- }
55
+ return createStore ( reducer , undefined , preloadedState , enhancer )
63
56
}
64
57
65
58
if ( typeof enhancer !== 'undefined' ) {
66
59
if ( typeof enhancer !== 'function' ) {
67
60
throw new Error ( 'Expected the enhancer to be a function.' )
68
61
}
69
62
70
- return enhancer ( createStore ) ( reducer , preloadedState )
63
+ return enhancer ( createStore ) ( reducer , preloadedState , undefined , options )
71
64
}
72
65
73
66
if ( typeof reducer !== 'function' ) {
74
67
throw new Error ( 'Expected the reducer to be a function.' )
75
68
}
76
-
77
- options = options || { } ;
78
-
79
- options = { ...defaultOptions , ...options } // @todo find good supported option
69
+
70
+ options = { ...defaultOptions , ...options } // @todo find good supported option
80
71
81
72
let banDispatch = ! options . rules . allowDispatch
82
73
let banGetState = ! options . rules . allowGetState
@@ -110,8 +101,8 @@ export default function createStore(reducer, preloadedState, enhancer, options)
110
101
if ( banGetState && isDispatching ) {
111
102
throw new Error (
112
103
'You may not call store.getState() while the reducer is executing. ' +
113
- 'The reducer has already received the state as an argument. ' +
114
- 'Pass it down from the top reducer instead of reading it from the store.'
104
+ 'The reducer has already received the state as an argument. ' +
105
+ 'Pass it down from the top reducer instead of reading it from the store.'
115
106
)
116
107
}
117
108
@@ -149,9 +140,9 @@ export default function createStore(reducer, preloadedState, enhancer, options)
149
140
if ( banSubscriptionHandling && isDispatching ) {
150
141
throw new Error (
151
142
'You may not call store.subscribe() while the reducer is executing. ' +
152
- 'If you would like to be notified after the store has been updated, subscribe from a ' +
153
- 'component and invoke store.getState() in the callback to access the latest state. ' +
154
- 'See https://redux.js.org/api-reference/store#subscribe(listener) for more details.'
143
+ 'If you would like to be notified after the store has been updated, subscribe from a ' +
144
+ 'component and invoke store.getState() in the callback to access the latest state. ' +
145
+ 'See https://redux.js.org/api-reference/store#subscribe(listener) for more details.'
155
146
)
156
147
}
157
148
@@ -168,7 +159,7 @@ export default function createStore(reducer, preloadedState, enhancer, options)
168
159
if ( banSubscriptionHandling && isDispatching ) {
169
160
throw new Error (
170
161
'You may not unsubscribe from a store listener while the reducer is executing. ' +
171
- 'See https://redux.js.org/api-reference/store#subscribe(listener) for more details.'
162
+ 'See https://redux.js.org/api-reference/store#subscribe(listener) for more details.'
172
163
)
173
164
}
174
165
@@ -209,14 +200,14 @@ export default function createStore(reducer, preloadedState, enhancer, options)
209
200
if ( ! isPlainObject ( action ) ) {
210
201
throw new Error (
211
202
'Actions must be plain objects. ' +
212
- 'Use custom middleware for async actions.'
203
+ 'Use custom middleware for async actions.'
213
204
)
214
205
}
215
206
216
207
if ( typeof action . type === 'undefined' ) {
217
208
throw new Error (
218
209
'Actions may not have an undefined "type" property. ' +
219
- 'Have you misspelled a constant?'
210
+ 'Have you misspelled a constant?'
220
211
)
221
212
}
222
213
0 commit comments