-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
244 lines (225 loc) · 6.83 KB
/
Copy pathscript.js
File metadata and controls
244 lines (225 loc) · 6.83 KB
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
//Modal buttons, close and open
const Modal = {
open() {
//Open modal
//Add class active to the modal
document.querySelector('.modal-overlay').classList.add('active')
},
close() {
//Close modal
//Remove class active to the modal
document.querySelector('.modal-overlay').classList.remove('active')
}
}
//random datas for the table
const transactions = [{
//id: 1,
description: "Rent",
amount: -80000,
//date: "2022-01-05"
date: "05/01/2022"
},
{
//id: 2,
description: "Internet",
amount: -20000,
//date: "2022-01-10"
date: "10/01/2022"
},
{
//id: 3,
description: "Web page (job)",
amount: 500000,
//date: "2022-01-23"
date: "23/01/2022"
},
{
//id: 4,
description: "Stocks",
amount: 20000,
//date: "2022-01-30"
date: "30/01/2022"
}]
//Working with local storage
const Storage = {
get() {
//console.log(localStorage)
//here it works the opposite, string -> JSON/Array
return JSON.parse(localStorage.getItem("dev.finances:transactions")) || []
},
set(transactions) {
//Attention to the way localStorage operates
//it's all about property/name/key and value
//to set it needs to be a string, so therefor Array/JSON-> String
localStorage.setItem("dev.finances:transactions", JSON.stringify(transactions))
}
}
const Transaction = {
// all: transactions,
all: Storage.get(),
add(transaction) {
Transaction.all.push(transaction);
App.reload();
},
remove(index) {
Transaction.all.splice(index, 1)
App.reload()
},
incomes() {
let income = 0;
//get all transactions
//for each trasanction
Transaction.all.forEach(transaction => {
//if it's greater than zero
if (transaction.amount > 0) {
//sum it all up
income += transaction.amount
}
})
return income;
},
outcomes() {
let outcome = 0;
//get all transactions
//for each trasanction
Transaction.all.forEach(transaction => {
//if it's less than zero
if (transaction.amount < 0) {
//sum it all up
outcome += transaction.amount
}
})
return outcome;
},
total() {
return Transaction.incomes() + Transaction.outcomes()
}
}
//selecting tag table and filling in data
const DOM = {
transactionsContainer: document.querySelector('#data-table tbody'),
addTransaction(transaction, index) {
const tr = document.createElement('tr')
tr.innerHTML = DOM.innerHTMLTransaction(transaction, index)
//Adding index to the data fields
tr.dataset.index = index
DOM.transactionsContainer.appendChild(tr)
},
innerHTMLTransaction(transaction, index) {
const CCSClasses = transaction.amount < 0 ? "expense" : "income"
const amount = Utils.formatCurrency(transaction.amount);
const html = `
<td class="description">${transaction.description}</td>
<td class="${CCSClasses}">${amount}</td>
<td class="date">${transaction.date}</td>
<td>
<img onclick="Transaction.remove(${index})" src="./assets/minus.svg" alt="Delete transaction">
</td>
`
return html
},
updateBalance() {
document.getElementById('incomeDisplay').innerHTML = Utils.formatCurrency(Transaction.incomes());
document.getElementById('expenseDisplay').innerHTML = Utils.formatCurrency(Transaction.outcomes());
document.getElementById('totalDisplay').innerHTML = Utils.formatCurrency(Transaction.total());
},
clearTransactions() {
DOM.transactionsContainer.innerHTML = ""
}
}
//converting numbers to currency BRL
const Utils = {
formatCurrency(value) {
const sign = Number(value) < 0 ? "−" : ""
value = String(value).replace(/\D/g, "")
value = Number(value) / 100
value = value.toLocaleString("pt-BR", {
style: "currency",
currency: "BRL"
})
return `${sign}${value}`;
},
formatAmount(amount) {
//amount = Number(amount) * 100
//amount = Number(amount.replace(/\,\./g, "")) * 100
//Fixing the thought of it
//amount = amount.replace(/\,?\.?/g, "") * 100
//although the correct way is the one below
//because <input type="number"> already removed the signs
// value = value * 100
amount = amount * 100
return Math.round(amount);
},
formatDate(date) {
const splittedDate = date.split("-")
return `${splittedDate[2]}/${splittedDate[1]}/${splittedDate[0]}`
},
};
const Form = {
description: document.querySelector('input#description'),
amount: document.querySelector('input#amount'),
date: document.querySelector('input#date'),
getValues() {
return {
description: Form.description.value,
amount: Form.amount.value,
date: Form.date.value
}
},
verifyFields() {
//const description = Form.getValues().description
const { description, amount, date } = Form.getValues()
if (description.trim() === "" | amount.trim() === "" | date.trim() === "") {
throw new Error("Please, fulfill all the fields")
}
},
formatData() {
let { description, amount, date } = Form.getValues()
amount = Utils.formatAmount(amount);
date = Utils.formatDate(date)
//return {description:description,amount:amount,date:date}
return { description, amount, date }
},
saveTransaction(transaction) {
Transaction.add(transaction)
},
clearFields() {
Form.description.value = ""
Form.amount.value = ""
Form.date.value = ""
},
submit(event) {
//disabling default behavior of the form
event.preventDefault()
try {
//Verifying all information
Form.verifyFields()
//Format the data to save it
const transaction = Form.formatData()
//Save it
Form.saveTransaction(transaction)
//Erase data from the form
Form.clearFields()
//close modal window
Modal.close()
} catch (error) {
alert(error.message)
}
}
}
const App = {
init() {
//autofill data table
// Transaction.all.forEach(function (transaction,index) {
// DOM.addTransaction(transaction,index);
// });
Transaction.all.forEach(DOM.addTransaction)
DOM.updateBalance();
Storage.set(Transaction.all)
},
reload() {
DOM.clearTransactions()
App.init();
},
}
App.init()