-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathslice_creator.ts
187 lines (178 loc) · 5.97 KB
/
slice_creator.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
import type {
CaseReducer,
CreatorCaseReducers,
ReducerCreator,
ReducerCreatorEntry,
} from '@reduxjs/toolkit'
import type { PayloadAction } from '../createAction'
import { reducerCreator, type CaseReducerDefinition } from '../createSlice'
import type { WithRequiredProp } from '../tsHelpers'
import type {
Update,
EntityAdapter,
EntityId,
EntityState,
EntityStateAdapter,
} from './models'
import { capitalize } from './utils'
export const entityMethodsCreatorType = /*#__PURE__*/ Symbol()
type DefaultPlural<Single extends string> = Single extends ''
? ''
: `${Single}s`
type EntityReducers<
T,
Id extends EntityId,
State = EntityState<T, Id>,
Single extends string = '',
Plural extends string = DefaultPlural<Single>,
> = {
[K in keyof EntityStateAdapter<
T,
Id
> as `${K}${Capitalize<K extends `${string}One` ? Single : Plural>}`]: EntityStateAdapter<
T,
Id
>[K] extends (state: any) => any
? CaseReducerDefinition<State, PayloadAction>
: EntityStateAdapter<T, Id>[K] extends CaseReducer<any, infer A>
? CaseReducerDefinition<State, A>
: never
}
export interface EntityMethodsCreatorConfig<
T,
Id extends EntityId,
State,
Single extends string,
Plural extends string,
> {
selectEntityState?: (state: State) => EntityState<T, Id>
name?: Single
pluralName?: Plural
}
type EntityMethodsCreator<State> =
State extends EntityState<infer T, infer Id>
? {
<
T,
Id extends EntityId,
Single extends string = '',
Plural extends string = DefaultPlural<Single>,
>(
adapter: EntityAdapter<T, Id>,
config: WithRequiredProp<
EntityMethodsCreatorConfig<T, Id, State, Single, Plural>,
'selectEntityState'
>,
): EntityReducers<T, Id, State, Single, Plural>
<
Single extends string = '',
Plural extends string = DefaultPlural<Single>,
>(
adapter: EntityAdapter<T, Id>,
config?: Omit<
EntityMethodsCreatorConfig<T, Id, State, Single, Plural>,
'selectEntityState'
>,
): EntityReducers<T, Id, State, Single, Plural>
}
: <
T,
Id extends EntityId,
Single extends string = '',
Plural extends string = DefaultPlural<Single>,
>(
adapter: EntityAdapter<T, Id>,
config: WithRequiredProp<
EntityMethodsCreatorConfig<T, Id, State, Single, Plural>,
'selectEntityState'
>,
) => EntityReducers<T, Id, State, Single, Plural>
declare module '@reduxjs/toolkit' {
export interface SliceReducerCreators<
State = any,
CaseReducers extends
CreatorCaseReducers<State> = CreatorCaseReducers<State>,
Name extends string = string,
> {
[entityMethodsCreatorType]: ReducerCreatorEntry<EntityMethodsCreator<State>>
}
}
/*#__PURE__*/ export function createEntityMethods<
T,
Id extends EntityId,
State = EntityState<T, Id>,
Single extends string = '',
Plural extends string = DefaultPlural<Single>,
>(
adapter: EntityAdapter<T, Id>,
{
selectEntityState = (state) => state as unknown as EntityState<T, Id>,
name: nameParam = '' as Single,
pluralName: pluralParam = (nameParam && `${nameParam}s`) as Plural,
}: EntityMethodsCreatorConfig<T, Id, State, Single, Plural> = {},
): EntityReducers<T, Id, State, Single, Plural> {
// template literal computed keys don't keep their type if there's an unresolved generic
// so we cast to some intermediate type to at least check we're using the right variables in the right places
const name = nameParam as 's'
const pluralName = pluralParam as 'p'
const reducer = reducerCreator.create
const reducers: EntityReducers<T, Id, State, 's', 'p'> = {
[`addOne${capitalize(name)}` as const]: reducer<T>((state, action) => {
adapter.addOne(selectEntityState(state), action.payload)
}),
[`addMany${capitalize(pluralName)}` as const]: reducer<
readonly T[] | Record<Id, T>
>((state, action) => {
adapter.addMany(selectEntityState(state), action.payload)
}),
[`setOne${capitalize(name)}` as const]: reducer<T>((state, action) => {
adapter.setOne(selectEntityState(state), action.payload)
}),
[`setMany${capitalize(pluralName)}` as const]: reducer<
readonly T[] | Record<Id, T>
>((state, action) => {
adapter.setMany(selectEntityState(state), action.payload)
}),
[`setAll${capitalize(pluralName)}` as const]: reducer<
readonly T[] | Record<Id, T>
>((state, action) => {
adapter.setAll(selectEntityState(state), action.payload)
}),
[`removeOne${capitalize(name)}` as const]: reducer<Id>((state, action) => {
adapter.removeOne(selectEntityState(state), action.payload)
}),
[`removeMany${capitalize(pluralName)}` as const]: reducer<readonly Id[]>(
(state, action) => {
adapter.removeMany(selectEntityState(state), action.payload)
},
),
[`removeAll${capitalize(pluralName)}` as const]: reducer((state) => {
adapter.removeAll(selectEntityState(state))
}),
[`upsertOne${capitalize(name)}` as const]: reducer<T>((state, action) => {
adapter.upsertOne(selectEntityState(state), action.payload)
}),
[`upsertMany${capitalize(pluralName)}` as const]: reducer<
readonly T[] | Record<Id, T>
>((state, action) => {
adapter.upsertMany(selectEntityState(state), action.payload)
}),
[`updateOne${capitalize(name)}` as const]: reducer<Update<T, Id>>(
(state, action) => {
adapter.updateOne(selectEntityState(state), action.payload)
},
),
[`updateMany${capitalize(pluralName)}` as const]: reducer<
readonly Update<T, Id>[]
>((state, action) => {
adapter.updateMany(selectEntityState(state), action.payload)
}),
}
return reducers as any
}
export const entityMethodsCreator: ReducerCreator<
typeof entityMethodsCreatorType
> = /*#__PURE__*/ {
type: entityMethodsCreatorType,
create: createEntityMethods,
}