-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathentity_slice_enhancer.test.ts
111 lines (100 loc) · 3.21 KB
/
entity_slice_enhancer.test.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
import { buildCreateSlice, createEntityAdapter, createSlice } from '../..'
import type {
PayloadAction,
SliceCaseReducers,
UnknownAction,
ValidateSliceCaseReducers,
} from '../..'
import type { EntityId, EntityState, IdSelector } from '../models'
import { entityMethodsCreator } from '../slice_creator'
import { AClockworkOrange, type BookModel } from './fixtures/book'
describe('Entity Slice Enhancer', () => {
let slice: ReturnType<typeof entitySliceEnhancer<BookModel, string>>
beforeEach(() => {
slice = entitySliceEnhancer({
name: 'book',
selectId: (book: BookModel) => book.id,
})
})
it('exposes oneAdded', () => {
const action = slice.actions.oneAdded(AClockworkOrange)
const oneAdded = slice.reducer(undefined, action)
expect(oneAdded.entities['0']).toBe(AClockworkOrange)
})
})
interface EntitySliceArgs<
T,
Id extends EntityId,
CaseReducers extends SliceCaseReducers<EntityState<T, Id>>,
> {
name: string
selectId: IdSelector<T, Id>
modelReducer?: ValidateSliceCaseReducers<EntityState<T, Id>, CaseReducers>
}
function entitySliceEnhancer<
T,
Id extends EntityId,
CaseReducers extends SliceCaseReducers<EntityState<T, Id>> = {},
>({ name, selectId, modelReducer }: EntitySliceArgs<T, Id, CaseReducers>) {
const modelAdapter = createEntityAdapter({
selectId,
})
return createSlice({
name,
initialState: modelAdapter.getInitialState(),
reducers: {
oneAdded(state, action: PayloadAction<T>) {
modelAdapter.addOne(state, action.payload)
},
...modelReducer,
},
})
}
describe('entity slice creator', () => {
const createAppSlice = buildCreateSlice({
creators: { entityMethods: entityMethodsCreator },
})
const bookAdapter = createEntityAdapter<BookModel>()
const bookSlice = createAppSlice({
name: 'book',
initialState: bookAdapter.getInitialState({
nested: bookAdapter.getInitialState(),
}),
reducers: (create) => ({
...create.entityMethods(bookAdapter, {
name: 'book',
}),
...create.entityMethods(bookAdapter, {
selectEntityState: (state) => state.nested,
name: 'nestedBook',
pluralName: 'nestedBookies',
}),
}),
})
it('should generate correct actions', () => {
expect(bookSlice.actions.addOneBook).toBeTypeOf('function')
expect(bookSlice.actions.addOneNestedBook).toBeTypeOf('function')
expect(bookSlice.actions.addManyBooks).toBeTypeOf('function')
expect(bookSlice.actions.addManyNestedBookies).toBeTypeOf('function')
})
it('should handle actions', () => {
const withBook = bookSlice.reducer(
undefined,
bookSlice.actions.addOneBook(AClockworkOrange),
)
expect(bookAdapter.getSelectors().selectById(withBook, '0')).toBe(
AClockworkOrange,
)
const withNestedBook = bookSlice.reducer(
withBook,
bookSlice.actions.addOneNestedBook(AClockworkOrange),
)
expect(
bookAdapter
.getSelectors(
(state: ReturnType<typeof bookSlice.reducer>) => state.nested,
)
.selectById(withNestedBook, '0'),
).toBe(AClockworkOrange)
})
})