-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreducer.js
305 lines (288 loc) · 7.06 KB
/
reducer.js
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
// 2. Design the state shape
// [
// {
// text: "..",
// bold: false,
// italic: false,
// underline: true,
// size: 20
// },
// ...
// ]
// 3. Declare INITIAL_STATE
const INITIAL_STATE = [];
// 4. Write reducer!
const rootReducer = (state, action) => {
if(state == undefined) {
return INITIAL_STATE;
}
switch(action.type){
case 'ADD_ITEM':
return [
...state,
action.payload
];
case 'DELETE_ITEM':
return [
...state.slice(0, action.payload.index),
...state.slice(action.payload.index + 1),
];
case 'SET_ITEM_TEXT':
return [
...state.slice(0, action.payload.index),
Object.assign({}, state[action.payload.index], { text: action.payload.text }),
...state.slice(action.payload.index + 1),
];
case 'SET_ITEM_BOLD':
return [
...state.slice(0, action.payload.index),
Object.assign({}, state[action.payload.index], { bold: action.payload.bold }),
...state.slice(action.payload.index + 1),
];
case 'SET_ITEM_ITALIC':
return [
...state.slice(0, action.payload.index),
Object.assign({}, state[action.payload.index], { italic: action.payload.italic }),
...state.slice(action.payload.index + 1),
];
case 'SET_ITEM_UNDERLINE':
return [
...state.slice(0, action.payload.index),
Object.assign({}, state[action.payload.index], { underline: action.payload.underline }),
...state.slice(action.payload.index + 1),
];
case 'INCREASE_ITEM_SIZE':
return [
...state.slice(0, action.payload.index),
Object.assign({}, state[action.payload.index], { size: state[action.payload.index].size + 10 }),
...state.slice(action.payload.index + 1),
];
case 'DECREASE_ITEM_SIZE':
return [
...state.slice(0, action.payload.index),
Object.assign({}, state[action.payload.index], { size: state[action.payload.index].size - 10 }),
...state.slice(action.payload.index + 1),
];
default:
return state;
}
}
const testAddItemReducer = () => {
const state = [];
const action = {
type: 'ADD_ITEM',
payload: {
text: '',
bold: false,
italic: false,
underline: false,
size: 30
}
};
const newState = [
{
text: '',
bold: false,
italic: false,
underline: false,
size: 30
}
]
expect(rootReducer(state, action)).toEqual(newState);
}
testAddItemReducer();
const testDeleteItemReducer = () => {
const state = [
{
text: '',
bold: false,
italic: false,
underline: false,
size: 30
}
];
const action = {
type: 'DELETE_ITEM',
payload: {
index: 0
}
};
const newState = [];
expect(rootReducer(state, action)).toEqual(newState);
}
testDeleteItemReducer();
const testSetItemTextReducer = () => {
const state = [
{
text: '',
bold: false,
italic: false,
underline: false,
size: 30
}
];
const action = {
type: 'SET_ITEM_TEXT',
payload: {
index: 0,
text: 'Other text'
}
};
const newState = [
{
text: 'Other text',
bold: false,
italic: false,
underline: false,
size: 30
}
];
expect(rootReducer(state, action)).toEqual(newState);
}
testSetItemTextReducer();
const testSetItemBoldReducer = () => {
const state = [
{
text: '',
bold: false,
italic: false,
underline: false,
size: 30
}
];
const action = {
type: 'SET_ITEM_BOLD',
payload: {
index: 0,
bold: true
}
};
const newState = [
{
text: '',
bold: true,
italic: false,
underline: false,
size: 30
}
];
expect(rootReducer(state, action)).toEqual(newState);
}
testSetItemBoldReducer();
const testSetItemItalicReducer = () => {
const state = [
{
text: '',
bold: false,
italic: false,
underline: false,
size: 30
}
];
const action = {
type: 'SET_ITEM_ITALIC',
payload: {
index: 0,
italic: true
}
};
const newState = [
{
text: '',
bold: false,
italic: true,
underline: false,
size: 30
}
];
expect(rootReducer(state, action)).toEqual(newState);
}
testSetItemItalicReducer();
const testSetItemUnderlineReducer = () => {
const state = [
{
text: '',
bold: false,
italic: false,
underline: false,
size: 30
}
];
const action = {
type: 'SET_ITEM_UNDERLINE',
payload: {
index: 0,
underline: true
}
};
const newState = [
{
text: '',
bold: false,
italic: false,
underline: true,
size: 30
}
];
expect(rootReducer(state, action)).toEqual(newState);
}
testSetItemUnderlineReducer();
const testIncreaseItemSizeReducer = () => {
const state = [
{
text: '',
bold: false,
italic: false,
underline: false,
size: 30
}
];
const action = {
type: 'INCREASE_ITEM_SIZE',
payload: {
index: 0
}
};
const newState = [
{
text: '',
bold: false,
italic: false,
underline: false,
size: 40
}
];
expect(rootReducer(state, action)).toEqual(newState);
}
testIncreaseItemSizeReducer();
const testDecreaseItemSizeReducer = () => {
const state = [
{
text: '',
bold: false,
italic: false,
underline: false,
size: 30
}
];
const action = {
type: 'DECREASE_ITEM_SIZE',
payload: {
index: 0
}
};
const newState = [
{
text: '',
bold: false,
italic: false,
underline: false,
size: 20
}
];
expect(rootReducer(state, action)).toEqual(newState);
}
testDecreaseItemSizeReducer();
console.log("Reducer tests passsed")
// Expose the reducer globally so we can access it from the console/other files
window.reducer = rootReducer;