-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdummy.js
65 lines (55 loc) · 1.65 KB
/
dummy.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
const band = {
tariff: {
contracts: [
{
plans: [],
},
],
},
};
const bandServer = {patch: ""};
const selectedBand = {}; //get your selected band to update the plan
const selectedContract = {}; //get selected contract the band is in
const selectedPlan = {}; //get the plan you want to update
const handleUpdatePlan = data => {
//Get your previous contracts from the band
const prevContracts = selectedBand.tariff.contracts;
//get your previous plans from the contract the plan you want to update is in
const prevPlans = selectedContract.plans || [];
//update the plan with your new data and parse previous data before new data
const updatedPlan = {
...selectedPlan,
...data,
};
//put the updated plan in the previous plans array by mapping through
const newPlans = prevPlans.map(item => {
if (item._id === selectedPlan._id) {
return updatedPlan;
} else {
return item;
}
});
//put the new plans in the contract that you selected from start that has the plan you want to updated
const updatedContract = {
...selectedContract,
plans: newPlans,
};
//put the new contract that you updated into the list of contracts
const newContracts = prevContracts.map(item => {
if (item._id === updatedContract._id) {
return updatedContract;
} else {
return item;
}
});
//put the list of contracts into the tariff of the band that you selected to update the plan in the first place
const newBand = {
...selectedBand,
tariff: {
serviceName: "",
contracts: newContracts,
},
};
//update the band
bandServer.patch(selectedBand._id, newBand);
};