-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexercise-04-function_refactoring.js
202 lines (171 loc) · 5.07 KB
/
exercise-04-function_refactoring.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
main();
function main() {
const transactions = [
{
id: "t1",
type: "PAYMENT",
status: "OPEN",
method: "CREDIT_CARD",
amount: "23.99",
},
{
id: "t2",
type: "PAYMENT",
status: "OPEN",
method: "PAYPAL",
amount: "100.43",
},
{
id: "t3",
type: "REFUND",
status: "OPEN",
method: "CREDIT_CARD",
amount: "10.99",
},
{
id: "t4",
type: "PAYMENT",
status: "CLOSED",
method: "PLAN",
amount: "15.99",
},
];
processTransactions(transactions);
}
function processTransactions(transactions) {
if (transactions && transactions.length > 0) {
for (const transaction of transactions) {
if (transaction.type === "PAYMENT") {
if (transaction.status === "OPEN") {
if (transaction.method === "CREDIT_CARD") {
processCreditCardPayment(transaction);
} else if (transaction.method === "PAYPAL") {
processPayPalPayment(transaction);
} else if (transaction.method === "PLAN") {
processPlanPayment(transaction);
}
} else {
console.log("Invalid transaction type!");
}
} else if (transaction.type === "REFUND") {
if (transaction.status === "OPEN") {
if (transaction.method === "CREDIT_CARD") {
processCreditCardRefund(transaction);
} else if (transaction.method === "PAYPAL") {
processPayPalRefund(transaction);
} else if (transaction.method === "PLAN") {
processPlanRefund(transaction);
}
} else {
console.log("Invalid transaction type!", transaction);
}
} else {
console.log("Invalid transaction type!", transaction);
}
}
} else {
console.log("No transactions provided!");
}
}
function processCreditCardPayment(transaction) {
console.log(
"Processing credit card payment for amount: " + transaction.amount
);
}
function processCreditCardRefund(transaction) {
console.log(
"Processing credit card refund for amount: " + transaction.amount
);
}
function processPayPalPayment(transaction) {
console.log("Processing PayPal payment for amount: " + transaction.amount);
}
function processPayPalRefund(transaction) {
console.log("Processing PayPal refund for amount: " + transaction.amount);
}
function processPlanPayment(transaction) {
console.log("Processing plan payment for amount: " + transaction.amount);
}
function processPlanRefund(transaction) {
console.log("Processing plan refund for amount: " + transaction.amount);
}
/* Refactor */
function processTransactions(transactions) {
if (isEmpty(transactions)) {
showErrorMessage("No transactions provided!");
return;
}
for (const transaction of transactions) {
processTransaction(transaction)
}
}
function showErrorMessage(message) {
console.log(message);
}
function isEmpty(transactions) {
return !transactions || transactions.length === 0;
}
function processTransaction(transaction) {
if (!isOpen(transaction)) {
showErrorMessage("Invalid transaction type!");
return;
}
if (!validTransaction(transaction)) {
showErrorMessage("Invalid transaction type!")
return
}
processTransactionType(transaction)
}
function processTransactionType(transaction) {
const processors = getTransactionProcess(transaction)
if (transaction.type === "PAYMENT") {
processors.processPayment(transaction)
} else {
processors.processRefund
}
}
function getTransactionProcess(transaction) {
let processors = {
processPayment: null,
processRefund: null
}
if (transaction.method === "CREDIT_CARD"){
processors.processPayment = processCreditCardPayment
processors.processRefund = processCreditCardRefund
} else if (transaction.method === "PAYPAL") {
processors.processPayment = processPayPalPayment
processors.processRefund = processPayPalRefund
} else if (transaction.method === "PLAN") {
processors.processPayment = processPlanPayment
processors.processRefund = processPlanRefund
}
return processors
}
function isOpen(transaction) {
return transaction.status === "OPEN"
}
function validTransaction(transaction) {
if (['PAYMENT', 'REFUND'].includes(transaction.type))
}
function processCreditCardPayment(transaction) {
console.log(
"Processing credit card payment for amount: " + transaction.amount
);
}
function processCreditCardRefund(transaction) {
console.log(
"Processing credit card refund for amount: " + transaction.amount
);
}
function processPayPalPayment(transaction) {
console.log("Processing PayPal payment for amount: " + transaction.amount);
}
function processPayPalRefund(transaction) {
console.log("Processing PayPal refund for amount: " + transaction.amount);
}
function processPlanPayment(transaction) {
console.log("Processing plan payment for amount: " + transaction.amount);
}
function processPlanRefund(transaction) {
console.log("Processing plan refund for amount: " + transaction.amount);
}