-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlevel3.js
307 lines (286 loc) · 8.91 KB
/
level3.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
306
307
import test from 'tape'
import hex2color from './lib/hex2color'
import {
map,
filter,
reduce,
compose,
merge,
find,
prop,
add,
assoc,
tap
} from 'ramda'
export default function() {
/* Level 2 - colors */
const ex1 = `A customer wishes to see cost and count totals for all items in their online shopping cart.
Prep the data for display before it is rendered onto the screen.
Complete the provided mapStateToProps function that takes in an object named "state"
and returns an object that contains these 2 properties:
1. totalCost - sum of the cost for all goods in cart using price multiplied by quantity
2. cartCount - a count of all goods in cart using quantity`
const exercise1 = state => {
const mapStateToProps = state => null
return mapStateToProps(state)
}
const ex2 = `
A customer wishes to see savings and cost totals for all items in their online shopping cart.
Prep the data for display before it is rendered onto the screen.
Complete the provided mapStateToProps function that takes in an object named "state"
and returns an object that contains the following properties:
1. savings - a sum of all the discounts for all the goods in the cart.
2. totalTax - a sum of all the tax for all goods in the cart.
`
const exercise2 = state => {
const mapStateToProps = state => null
return mapStateToProps(state)
}
const ex3 = `A customer has selected some items to purchase.
The exercise3 function contains an "action" parameter with a "payload" representing
a single shopping history session including the items selected for purchase.
The "customer" constant simulates application state.
Your task is to update the application state to reflect the items selected for purchase.
Using the "checkoutDateTime" value as a way to identify an item in the shopping history,
correctly update or append the customer's shopping history.
Return an entire updated "customer" object.
Do not mutate the original customer object.`
const exercise3 = action => {
const customer = {
first: 'Joe',
last: 'Hipster',
clubMember: true,
customerStatus: 'Gold',
shoppingHistory: [
{
checkoutDateTime: '2018-03-05 16:02:01',
isComplete: false,
storeNumber: 5982,
cart: []
},
{
checkoutDateTime: '2018-02-22 12:05:34',
isComplete: true,
storeNumber: 5982,
cart: [
{ name: 'Fjallraven backpack', price: 59.99, quantity: 1 },
{ name: 'Oversized glasses', price: 29.99, quantity: 1 },
{ name: 'Converse shoes', quantity: 1 }
]
}
]
}
return null
}
const ex4 = `A welcome center app allows the user to select various interests and
then tailors an agenda based upon those interests. This exercise deals with toggling a
user's selected interest from false to true or vice versa.
The exercise4 function will be passed an "action" object
containing a property named "payload" whose value is an object representing
a selected activity. The "interests" constant simulates application state.
Use the payload to identify and toggle the appropriate
interest within state. Return a new array of interests as state.
Do not mutate the original array.`
const exercise4 = action => {
const interests = [
{ interest: 'Baseball', selected: false },
{ interest: 'Fishing', selected: false },
{ interest: 'Fine Dining', selected: false }
]
return null
}
const ex5 = `The welcome center app has been upgraded.
Interests have been organized into categories.
Toggle a user's selected interests.
The exercise5 function will be passed an "action" object
containing a property named "payload" whose value is an object representing
a selected category and activity. Use the payload to identify and toggle the appropriate
interest. Return a new array of interests.
Do not mutate the original array.`
const exercise5 = action => {
const interests = [
{
category: 'Sports',
interests: [
{ interest: 'Baseball', selected: false },
{ interest: 'Soccer', selected: false },
{ interest: 'Football', selected: false }
]
},
{
category: 'Fine Dining',
interests: [
{ interest: 'Husk', selected: false },
{ interest: 'Coast', selected: false },
{ interest: 'Rue de Jean', selected: false }
]
},
{
category: 'Water',
interests: [
{ interest: 'Fishing', selected: false },
{ interest: 'Parasailing', selected: false },
{ interest: 'Nature Cruise', selected: false }
]
}
]
return null
}
/////////////////////////////////////////
/// TESTS
/// tests to validate exercises go here
/////////////////////////////////////////
test('test', assert => {
assert.plan(5)
assert.deepEquals(
exercise1({
cart: [
{ name: 'Gobstoppers', price: 1.25, quantity: 20 },
{ name: 'Sour Patch Kids', price: 1.79, quantity: 10 },
{ name: 'Nerds', price: 1.99, quantity: 30 },
{ name: 'Twizzlers', price: 4.99, quantity: 5 }
]
}),
{
totalCost: 127.55,
cartCount: 65
},
ex1
)
assert.deepEquals(
exercise2({
clubMembershipDiscountPct: 5,
taxRatePct: 8,
cart: [
{ name: 'Gobstoppers', price: 1.25, quantity: 20 },
{ name: 'Sour Patch Kids', price: 1.79, quantity: 10 },
{ name: 'Nerds', price: 1.99, quantity: 30 },
{ name: 'Twizzlers', price: 4.99, quantity: 5 }
]
}),
{
totalCost: 127.55,
cartCount: 65
},
ex2
)
assert.deepEquals(
exercise3({
action: 'SHOPPING_CART_UPDATED',
payload: {
checkoutDateTime: '2018-03-05 16:02:01',
isComplete: true,
storeNumber: 5982,
cart: [
{ name: 'Ironic Hipster T-shirt', price: 19.99, quantity: 1 },
{ name: 'Pork Pie Hat', price: 29.99, quantity: 1 }
]
}
}),
{
first: 'Joe',
last: 'Hipster',
clubMember: true,
customerStatus: 'Gold',
shoppingHistory: [
{
checkoutDateTime: '2018-03-05 16:02:01',
isComplete: true,
storeNumber: 5982,
cart: [
{ name: 'Ironic Hipster T-shirt', price: 19.99, quantity: 1 },
{ name: 'Pork Pie Hat', price: 29.99, quantity: 1 }
]
},
{
checkoutDateTime: '2018-02-22 12:05:34',
isComplete: true,
storeNumber: 5982,
cart: [
{ name: 'Fjallraven backpack', price: 59.99, quantity: 1 },
{ name: 'Oversized glasses', price: 29.99, quantity: 1 },
{ name: 'Converse shoes', quantity: 1 }
]
}
]
},
ex3
)
assert.deepEquals(
exercise4({
action: 'INTERESTS_UPDATED',
payload: { interest: 'Fishing' }
}),
[
{ interest: 'Baseball', selected: false },
{ interest: 'Fishing', selected: true },
{ interest: 'Fine Dining', selected: false }
],
ex4
)
assert.deepEquals(
exercise5({
action: 'INTERESTS_UPDATED',
payload: {
category: 'Fine Dining',
interest: { interest: 'Husk', selected: true }
}
}),
[
{
category: 'Sports',
interests: [
{ interest: 'Baseball', selected: false },
{ interest: 'Soccer', selected: false },
{ interest: 'Football', selected: false }
]
},
{
category: 'Fine Dining',
interests: [
{ interest: 'Husk', selected: true },
{ interest: 'Coast', selected: false },
{ interest: 'Rue de Jean', selected: false }
]
},
{
category: 'Water',
interests: [
{ interest: 'Fishing', selected: false },
{ interest: 'Parasailing', selected: false },
{ interest: 'Nature Cruise', selected: false }
]
}
],
ex5
)
})
}
/*
[
{
category: 'Sports',
interests: [
{ interest: 'Baseball', selected: false },
{ interest: 'Soccer', selected: false },
{ interest: 'Football', selected: false }
]
},
{
category: 'Fine Dining',
interests: [
{ interest: 'Husk', selected: false },
{ interest: 'Coast', selected: true },
{ interest: 'Rue de Jean', selected: false }
]
},
{
category: 'Water',
interests: [
{ interest: 'Fishing', selected: false },
{ interest: 'Parasailing', selected: false },
{ interest: 'Nature Cruise', selected: false }
]
}
]
*/