-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
386 lines (298 loc) · 10.8 KB
/
script.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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
'use strict'
// BANKIST APP
// Data
const account1 = {
movements: [200, 450, -400, 3000, -650, -130, 70, 1300],
owner: 'David Ouma',
interestRate: 1.2, // %
pin: 1111,
movementsDates: [
'2021-11-18T21:31:17.178Z',
'2021-12-23T07:42:02.383Z',
'2022-01-01T10:17:24.185Z',
'2022-01-08T14:11:59.604Z',
'2022-01-28T09:15:04.904Z',
'2022-02-01T17:01:17.194Z',
'2022-02-01T23:36:17.929Z',
'2022-02-02T10:51:36.790Z',
],
currency: 'EUR',
locale: 'de-DE',
};
const account2 = {
owner: 'Jessica Odhis',
movements: [5000, 3400, -150, -790, -3210, -1000, 8500, -30],
interestRate: 1.5,
pin: 2222,
movementsDates: [
'2019-11-01T13:15:33.035Z',
'2019-11-30T09:48:16.867Z',
'2019-12-25T06:04:23.907Z',
'2020-01-25T14:18:46.235Z',
'2020-02-05T16:33:06.386Z',
'2020-04-10T14:43:26.374Z',
'2020-06-25T18:49:59.371Z',
'2020-07-26T12:01:20.894Z',
],
currency: 'USD',
locale: 'en-US',
};
const account3 = {
owner: 'Steven Ndegwa',
movements: [200, -200, 340, -300, -20, 50, 400, -460],
interestRate: 0.7,
pin: 3333,
};
const account4 = {
owner: 'Sarah Mutisya',
movements: [430, 1000, 700, 50, 90],
interestRate: 1,
pin: 4444,
};
const accounts = [account1, account2, account3, account4];
console.log(account1)
// Elements
const labelWelcome = document.querySelector('.welcome');
const labelDate = document.querySelector('.balance__date');
const labelBalance = document.querySelector('.balance__value');
const labelSumIn = document.querySelector('.summary__value--in');
const labelSumOut = document.querySelector('.summary__value--out');
const labelSumInterest = document.querySelector('.summary__value--interest');
const labelTimer = document.querySelector('.timer');
const containerApp = document.querySelector('.app');
const containerMovements = document.querySelector('.movements');
const btnLogin = document.querySelector('.login__btn');
const btnTransfer = document.querySelector('.form__btn--transfer');
const btnLoan = document.querySelector('.form__btn--loan');
const btnClose = document.querySelector('.form__btn--close');
const btnSort = document.querySelector('.btn--sort');
const inputLoginUsername = document.querySelector('.login__input--user');
const inputLoginPin = document.querySelector('.login__input--pin');
const inputTransferTo = document.querySelector('.form__input--to');
const inputTransferAmount = document.querySelector('.form__input--amount');
const inputLoanAmount = document.querySelector('.form__input--loan-amount');
const inputCloseUsername = document.querySelector('.form__input--user');
const inputClosePin = document.querySelector('.form__input--pin');
const dateformatter = function(anyDate, locale) {
const calcDaysPassed = (date1, date2) => Math.round(Math.abs(date1 - date2) / (1000 * 60 * 60 * 24));
const pastDays = calcDaysPassed(new Date(), anyDate);
if (pastDays === 0) return `Today`;
if (pastDays === 1) return 'Yesterday';
if (pastDays <= 7) return `${pastDays} days ago`;
else {
return new Intl.DateTimeFormat(locale).format(anyDate);
}
}
function formartMovements(value, locale, currency) {
return new Intl.NumberFormat(locale, {
style: 'currency',
currency: currency,
}).format(value);
}
const displayMovements = function (acc, sort = false) {
containerMovements.innerHTML = ' ';
const movs = sort ? acc.movements.slice().sort((a, b) => a - b) : acc.movements
movs.forEach((movement, i) => {
const movementType = movement > 0 ? 'deposit' : 'withdrawal ';
const date = new Date(acc.movementsDates[i]);
const displayDate = dateformatter(date, acc.locale);
const htmlTemplate = `
<div class="movements__row">
<div class="movements__type movements__type--${movementType}">${
i + 1
} ${movementType}</div>
<div class="movements__date">${displayDate}</div>
<div class="movements__value">${formartMovements(movement, acc.locale, acc.currency)}</div>
</div>`;
containerMovements.insertAdjacentHTML('afterbegin', htmlTemplate)
})
}
//create eurUSD rate
const eurUSD = 1.14
//USING THE MAP METHODS
const userName = 'Samuel Mbure';
const createUserName = function (accs) {
accs.forEach(acc => {
acc.username = acc.owner.toUpperCase().split(' ').map(name => name[0]).join('');
})
// const initializeName = accs.toLowerCase().split(' ').map(name => name[0]).join('')
// return initializeName.toUpperCase();
}
createUserName(accounts)
//USING THE FILTER METHOD
// creating the deposit arrays
const createDeposits = function (accs) {
accs.forEach(acc => {
acc.deposits = acc.movements.filter(deps => deps > 0)
})
}
const movements = [200, 450, -400, 3000, -650, -130, 70, 1300]
const deposits = movements.filter(mov => {
return mov > 0
})
//creating the withdrawal arrays
const createWithdrawals = function(accs) {
accs.forEach(acc => acc.withdrawals = acc.movements.filter( movs => movs < 0))
}
//USING THE REDUCE METHOD(snowball)
//addition
const calcPrintBalance = function (acc) {
acc.balance = acc.movements.reduce((acc, cur) => acc + cur, 0);
labelBalance.textContent = `${formartMovements(acc.balance, acc.locale, acc.currency)}`
}
//display the incomes
const calcdisplaySummary = function (acc) {
//income display
const incomes = acc.movements.filter(mov => mov > 0).reduce((acc, val) => acc + val, 0);
labelSumIn.textContent = `${formartMovements(incomes, acc.locale, acc.currency)}`;
//outcome display
const outcomes = Math.abs(acc.movements.filter(mov => mov < 0).reduce((acc, val) => acc + val, 0));
labelSumOut.textContent = `${formartMovements(outcomes, acc.locale, acc.currency)}`;
//interest
const interest = acc.movements.filter(mov => mov > 0).map(mov => mov * acc.interest/100).filter(interest => interest >= 1).reduce((acc, val) => acc + val, 0);
labelSumInterest.textContent = `${formartMovements(
interest,
acc.locale,
acc.currency
)}`;
}
const firstWithdrawl = movements.find(mov => mov < 0) // unlike the filter method that retuns a new array the find method will only return the first element that fulfills the condition
// update the UI
const updateUI = function (acc) {
displayMovements(acc);
calcPrintBalance(acc);
calcdisplaySummary(acc);
}
const startTimer = function () {
// in each call, print the remaining time to ui
const tick = function () {
let min = `${Math.trunc(startTime / 60)}`.padStart(2, 0);
let seconds = `${startTime % 60}`.padStart(2, 0);
// in each call, print the remaining time to UI
labelTimer.textContent = `${min} : ${seconds}`;
//
// when 0 seconds, stop timer and log out user
if (startTime === 0) {
clearInterval(tick)
labelWelcome.textContent = `Log in to get started`
containerApp.style.opacity = 0;
}
startTime--;
}
let startTime = 100;
tick();
const timer = setInterval(tick, 1000)
return timer;
}
//Even Handlers
let currentAccount, timer;
btnLogin.addEventListener('click', (e) => {
//Prevents form from submitting
e.preventDefault()
currentAccount = accounts.find(acc => acc.username === inputLoginUsername.value);
console.log(currentAccount);
if (currentAccount?.pin === +(inputLoginPin.value)) {
console.log(`Hello Mr.${currentAccount.owner.split(' ')[1]}, welcome to SUbsidian Bank`);
// DISPLAY UI AND WELCOME MESSAGE
labelWelcome.textContent = `Welcome back ${
currentAccount.owner.split(' ')[0]
}`;
// CLEAR INPUT FIELDS
inputLoginUsername.value = inputLoginPin.value = '';
inputLoginPin.blur();
if (timer) clearInterval(timer);
timer = startTimer();
containerApp.style.opacity = 100;
updateUI(currentAccount);
const now = new Date();
const dateOptions = {
hour: 'numeric',
minute: '2-digit',
day: 'numeric',
month: 'long',
year: 'numeric',
weekday: 'short'
}
const locale = navigator.language;
labelDate.textContent = new Intl.DateTimeFormat(currentAccount.locale, dateOptions).format(now);
}
})
btnTransfer.addEventListener('click', function (e) {
e.preventDefault();
const amount = +(inputTransferAmount.value);
const receiverAcc = accounts.find(acc => acc.username === inputTransferTo.value);
inputTransferTo.value = inputTransferAmount.value = '';
if (amount > 0 && receiverAcc && amount <= currentAccount.balance && receiverAcc?.username !== currentAccount.username) {
// Doing the transfer
currentAccount.movements.push(-amount);
currentAccount.movementsDates.push(new Date().toISOString())
receiverAcc.movements.push(amount);
receiverAcc.movementsDates.push(new Date().toISOString());
containerApp.style.opacity = 100;
updateUI(currentAccount);
clearInterval(timer);
timer = startTimer();
}
});
// requesting for a loan
//bank rule: the bank only grants a loan if there is a deposit with at least 10% of the requested loan amount.
btnLoan.addEventListener('click', function (e) {
e.preventDefault()
const amount = Math.floor(inputLoanAmount.value);
console.log(amount);
if (amount > 0 && currentAccount.movements.some(mov => mov >= amount * 0.1)) {
const loanAccepted = function() {
currentAccount.movements.push(amount);
//update the date section
currentAccount.movementsDates.push(new Date().toISOString())
updateUI(currentAccount);
clearInterval(timer);
timer = startTimer();
}
setTimeout(loanAccepted, 3000)
}
inputLoanAmount.value = '';
});
btnClose.addEventListener('click', function (e) {
e.preventDefault();
if (
inputCloseUsername.value === currentAccount.username &&
+(inputClosePin.value) === currentAccount.pin
) {
const index = accounts.findIndex(
acc => acc.username === currentAccount.username
);
console.log(index);
// delete the account
accounts.splice(index, 1);
console.log(accounts);
//hide the ui
containerApp.style.opacity = 0;
// hide the welcome message
labelWelcome.textContent = 'login to get started';
}
});
//sorting
let sorted = false;
btnSort.addEventListener('click',(e) => {
e.preventDefault();
displayMovements(currentAccount.movements, !sorted);
sorted = !sorted;
})
const movementsUi = Array.from(document.querySelectorAll('.movements__value'));
console.log(movementsUi);
labelBalance.addEventListener('click', () => {
const movementsUI = Array.from(document.querySelectorAll('.movements__value'), (el) => el.textContent.replace('$', ''));
const total = movementsUI.map(el => +(el)).reduce((cur, i) => cur + i);
console.log(total)
})
const newOwner = 'david 0uma';
console.log(newOwner.split(' ').map(name => name.split('')));
labelBalance.addEventListener('click', () => {
const xArr = Array.from(document.querySelectorAll('.movements__row'), (row, i) => {
if (i % 2 === 0) row.style.backgroundColor = 'blue';
})
})
console.log(new Date(account1.movementsDates[0]));
const myName = 'David Ouma';
console.log(myName.split(' ').map(name => name[0]).join(''))