-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.ts
559 lines (510 loc) · 15.6 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
/**
* relite
*
* A redux-like library for managing state with simpler api.
*/
/**
* Get the Object.keys() as keyof inputed object.
*
* @template T The typeof inputed object.
*
* @param o A value extends object.
*
* @returns Object.keys(o) with type keyof T.
*/
export const getKeys = <T extends {}>(o: T) => Object.keys(o) as Array<keyof T>
/** Action */
/**
* A function looks like a reducer of redux, but more simple and powerful.
*
* An `Action` consist of `Action` type, `Action` payload, `Action` handler
* and `Action` result. `Action` type is the identifier of this function.
* `Action` handler is the body of this function. `Action` result is the
* result of function.
*
* In each `Action`, change the attribute needed and retain another attribute.
* Suggest to use `...state` accomplish it.
*
* @template S The type of state to be held by the store.
* @template P The type of `Payload` that used to change the state as a assist.
* @template RS The type of state that the action returns.
*
* @param state A snapshoot of current state. Will create new state based
* on it.
* @param [payload] Some useful data help to create new state. So we can
* set it optionally.
*
* @returns A new state created just now.
*/
export interface AnyAction<S extends object = {}, P = any, RS = any> {
(state: S, payload: P): RS
}
/**
* The standard `Action`
*
* Pass in `object` type state and payload, return `object` type state.
*
* @template S Store state type.
* @template P Payload type.
*/
export type Action<S extends object, P = any> = AnyAction<S, P, S>
/**
* Curring Action
*
* There are three type Action after curring.
*/
/**
* `CurringAction` only return new store state.
*
* @template S Store state type.
*/
export interface CurringAction<S extends object> {
(): S
}
/**
* Transiform *Union* type to *Intersection* type
*
* string | number => string & number
*
* @template U The input *Union* type
*/
export type UnionToIntersection<U> = (U extends any
? (k: U) => void
: never) extends ((k: infer I) => void)
? I
: never
/**
* Get return type of `Action`
*
* Filter {`any`, `unknown`} => Filter Exclude{`object`} => `object`
*
* @template A The input `Action` type
*/
export type StateFromAction<A> = A extends AnyAction
? unknown extends ReturnType<A>
? {}
: ReturnType<A> extends object
? ReturnType<A>
: {}
: {}
/**
* Get *Union* type of states from `Actions`
*
* Action[] => [*Union* ReturnType<Action>]
*
* @template AS The input `Actions` type
*/
export type UnionStateFromAS<AS> = {
[K in keyof AS]: StateFromAction<AS[K]>
}[keyof AS]
/**
* Get *Intersection* type of states from `Actions`
*
* @template AS The input `Actions` type
*/
export type StateFromAS<AS> = UnionToIntersection<UnionStateFromAS<AS>>
/**
* The collection of `Action`.
*
* @template S The type of state to be held by the store.
*/
export type Actions<S extends object> = {
[propName: string]: AnyAction<S, any, S | any>
}
/**
* Get the rest arguments of action.
*
* @template S The type of state to be held by the store.
* @template AS The type of actions consist of `Action`. It will be map to the actions
* that store will export.
* @template A The type of action which need to infer arguments.
*/
export type Args<
S extends object,
A extends AnyAction<S>
> = A extends ((state: S, ...args: infer Args) => any)
? Args
: never
/**
* In Relite, before actions exported by `store` them must be currying from some
* `Action` those looks like `(s: State, p?: Payload) => State` to a `CurryingAction`
* that looks like `(p?: Payload) => State` firstly.
*
* The actions consist of `Action` need map to the actions consist of `CurringAction`.
*
* The code hint of actions and the `Payload` type hint will work after doing this.
*
* @template S The type of state to be held by the store.
* @template AS The type of actions consist of `Action`. It will be map to the actions
* that store will export.
*/
export type Curring<
S extends object,
A extends AnyAction<S>
> = A extends ((state: S, ...args: infer Args) => S)
? ((...args: Args) => S)
: never
/**
* The cyrring `Actions`. Each `Action` in this will be optional.
*
* @template S The type of state to be held by the store.
* @template AS The type of actions consist of `Action`. It will be map to the actions
* that store will export.
*/
export type Currings<
S extends object,
AS extends Actions<S>
> = {
[k in keyof AS]: Curring<S, AS[k]>
}
/**
* Infer the `Payload` data shape from an `Action`.
*
* @template A The type of `Action` which we want to infer from.
*/
export type PayloadFromAction<A> = A extends Action<object, infer P> ? P : A
/** Data */
/**
* A object that record all information of once change of state.
*
* It will be used when state will change while `dispatch()` or
* `replaceState()` been called.
*
* @template S The type of state to be held by the store.
*/
export interface Data<
S extends object,
AS extends Actions<S>
> {
/**
* The identifier `actionType` of `Action` of this change.
*/
actionType: keyof AS
/**
* The additional `Payload` data of a change from the `Action` of this
* change.
*/
actionPayload: PayloadFromAction<Action<Partial<S & StateFromAS<AS>>>>
/**
* The snapshoot of state before this change. The state that passed into
* `Action`.
*/
previousState: Partial<S & StateFromAS<AS>>
/**
* The state will be after this change. The state that returned from
* `Action`.
*/
currentState: Partial<S & StateFromAS<AS>>
/**
* The start time of this change occur.
*/
start: Date
/**
* The finished time of this change occur.
*/
end: Date
}
/** Store */
/**
* An addit of store to add listener which listen the state change.
*
* @template S The type of state to be held by the store.
*/
export interface Subscribe<
S extends object,
AS extends Actions<S>
> {
(listener: Listener<S, AS>): () => void
}
/**
* An callback will been called when state has changed which has been add by
* `subscribe()`. The state change information, `Data`, will been passed in
* when call it.
*
* @template S The type of state to be held by the store.
*
* @param [data] The data object that record the change of once `Action` has
* been called by `dispatch()`.
*/
export interface Listener<
S extends object,
AS extends Actions<S>
> {
(data: Data<S, AS>): any
}
/**
* An broadcast function which will call all listener added before. The
* parameter `Data` passed into listener is it's parameter `Data`. So we
* do not know if this `Data` really occur.
*
* @template S The type of state to be held by the store.
*/
export interface Publish<
S extends object,
AS extends Actions<S>
> {
(data: Data<S, AS>): void
}
/**
* A setter of state which recover previous state forcedly. It may make
* the state change uncertainly.
*
* @template S The type of state to be held by the store.
*/
export interface ReplaceState<
S extends object,
AS extends Actions<S>
> {
(nextState: S, data: Data<S, AS>, silent?: boolean): void
}
/**
* A dispatcher that construct a new `Data` which record information of
* new change of state by calling `Action` and call `updateState()` to
* change state predictably.
*
* @template S The type of state to be held by the store.
*/
export type Dispatch<
S extends object,
AS extends Actions<S>,
> = <K extends keyof AS>(actionType: K, ...args: Args<S, AS[K]>) => S
/**
* An state updator which get the final next state and call `replaceState()`
* to change state.
*
* @template S The type of state to be held by the store.
*
* @param nextState all type which `Action` may return a state.
*
* @returns The next state object.
*/
export interface StateUpdator<S extends object> {
(nextState: S): S
}
/**
* An object which export all API for change `state` and attach listener.
*
* @template S The type of state to be held by the store.
* @template AS The type of actions consist of `Action`.
*/
export interface Store<
S extends object,
AS extends Actions<S>
> {
/**
* Contain all caller curring from `Action` passed in `createStore` and
* `dispatch`. Could call dispatch whith mapped `Action` type.
*
* CurryingAction
*/
actions: Currings<S, AS>
/**
* Reads the state tree managed by the store.
*
* @returns The current state tree of your application that just can read.
*/
getState(): Partial<S & StateFromAS<AS>>
/**
* Cover the state with the new state and the data passed in. It will
* change the state unpredictably called by user directly.
*
* @param nextState It could be a state `object` will be the next state.
* @param [data] The object that record al information of current change.
* @param [silent] The signature indicate if we need to `publish()`. `true`
* indicate not. `false` indicate yes. Default value is `false`.
*/
replaceState: ReplaceState<S, AS>
/**
* Dispatches an Action. It is the only way to trigger a state change.
*
*
* The base implementation only supports plain object actions. If you want
* to dispatch a Promise, you need pass in a Promise `Action`.
*
* @param actionType A plain string that is the identifier of an `Action`
* which representing “what changed”. It is a good idea to keep actions
* serializable so you can record and replay user sessions, or use the time
* travelling `redux-devtools`. It is a requirement to use string constants
* for Action types.
* @param [actionPayload] Some useful data help to create new `state`. So
* we can set it optionally.
*
* @returns For convenience, the next state object you changed to.
*/
dispatch: Dispatch<S, AS>
/**
* Adds a change listener. It will be called any time an Action is
* dispatched, and some part of the state tree may potentially have changed.
* You may then call `getState()` to read the current state tree inside the
* callback.
*
* You may call `dispatch()` from a change listener, with the following
* caveats:
*
* 1. The subscriptions are snapshotted just before every `dispatch()` call.
* If you subscribe or unsubscribe while the listeners are being invoked,
* this will not have any effect on the `dispatch()` that is currently in
* progress. However, the next `dispatch()` call, whether nested or not,
* will use a more recent snapshot of the subscription list.
*
* 2. The listener should not expect to see all states changes, as the state
* might have been updated multiple times during a nested `dispatch()` before
* the listener is called. It is, however, guaranteed that all subscribers
* registered before the `dispatch()` started will be called with the latest
* state by the time it exits.
*
* @param listener A callback to be invoked on every dispatch.
*
* @returns `unsubscribe` A function to remove this listener.
*/
subscribe: Subscribe<S, AS>
/**
* Broadcast all the listener attached before.
*
* @param data The state change information.The data object that need to
* pass in all `Listener`.
*/
publish: Publish<S, AS>
}
/**
* A *StoreCreator* can create a global Relite store that hold the state tree,
* state, and also create getter and setter, `dispatch` and currying `actions`,
* of it with `actions` and initialState. It support subscribe changes of state
* implements with Observer design pattern.
*
* `createStore(reducer, preloadedState)` exported from the Relite package,
* from store creators.
*
* @template S The type of state to be held by the store.
* @template AS The type of actions those may be call by dispatch.
*/
export interface StoreCreator {
<S extends object, AS extends Actions<Partial<S & StateFromAS<AS>>>>(
actions: AS,
initialState?: S
): Store<Partial<S & StateFromAS<AS>>, AS>
}
/** CreateStore */
/**
* Create a global Relite store that hold the state tree, state, and also export
* getter and setter, `dispatch` and `actions`,of it with `actions` and
* initialState. It support subscribe changes of state implements with Observer
* design pattern.
*
* @param actions An object who contains all the actions those can create state
* and return it through passed previous state and `Payload` data.
* @param [initialState] The initial state. You may optionally specify it.
*
* @returns A Relite store that lets you read the state, dispatch actions and
* subscribe to changes. It contains the setter of state, `replaceState`,
* `dispatch` and all the `actions` whose have been encapsulated with function
* currying, the getter of state, `getState`, and the subscribe API,
* `subscribe` and `publish`.
*/
export const createStore: StoreCreator = <
S extends object,
AS extends Actions<Partial<S & StateFromAS<AS>>>
>(
actions: AS,
initialState?: Partial<S & StateFromAS<AS>>
) => {
if (Object.prototype.toString.call(actions) !== "[object Object]") {
throw new Error(`Expected first argument to be an object`)
}
let listeners: Listener<Partial<S & StateFromAS<AS>>, AS>[] = []
let subscribe: Subscribe<Partial<S & StateFromAS<AS>>, AS> = (
listener: Listener<Partial<S & StateFromAS<AS>>, AS>
) => {
listeners.push(listener)
return () => {
let index = listeners.indexOf(listener)
if (index !== -1) {
listeners.splice(index, 1)
} else {
console.warn(
"You want to unsubscribe a nonexistent listener. Maybe you had unsubscribed it"
)
}
}
}
let publish: Publish<Partial<S & StateFromAS<AS>>, AS> = data => {
listeners.forEach(listener => listener(data))
}
let currentState: Partial<S & StateFromAS<AS>> = initialState || {}
let getState = () => currentState
let replaceState: ReplaceState<Partial<S & StateFromAS<AS>>, AS> = (
nextState,
data,
silent
) => {
currentState = nextState
if (!silent) {
publish(data)
}
}
let isDispatching: boolean = false
let dispatch: Dispatch<Partial<S & StateFromAS<AS>>, AS> = (
actionType,
actionPayload
) => {
if (isDispatching) {
throw new Error(
`store.dispatch(actionType, actionPayload): handler may not dispatch`
)
}
let start: Date = new Date()
let nextState: Partial<S & StateFromAS<AS>> = currentState
try {
isDispatching = true
nextState = actions[actionType](currentState, actionPayload)
} catch (error) {
throw error
} finally {
isDispatching = false
}
let updateState: StateUpdator<Partial<S & StateFromAS<AS>>> = nextState => {
if (nextState === currentState) {
return currentState
}
let data: Data<Partial<S & StateFromAS<AS>>, AS> = {
start,
end: new Date(),
actionType,
actionPayload,
previousState: currentState,
currentState: nextState
}
replaceState(nextState, data)
return nextState
}
return updateState(nextState)
}
let curryActions: Currings<Partial<S & StateFromAS<AS>>, AS> = getKeys(
actions
).reduce(
(obj, actionType) => {
if (typeof actions[actionType] === "function") {
obj[actionType] = ((...args: Args<Partial<S & StateFromAS<AS>>, AS[typeof actionType]>) =>
dispatch(actionType, ...args)) as Curring<
Partial<S & StateFromAS<AS>>,
AS[keyof AS]
>
} else {
throw new Error(
`Action must be a function. accept ${actions[actionType]}`
)
}
return obj
},
{} as Currings<Partial<S & StateFromAS<AS>>, AS>
)
let store: Store<Partial<S & StateFromAS<AS>>, AS> = {
actions: curryActions,
getState,
replaceState,
dispatch,
subscribe,
publish
}
return store
}