-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscripts.js
More file actions
226 lines (183 loc) · 5.88 KB
/
scripts.js
File metadata and controls
226 lines (183 loc) · 5.88 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
const Modal = {
open() {
document.querySelector('.modal-overlay').classList.add('active')
document.querySelector('.modal').classList.add('modalAnimation')
},
close() {
document.querySelector('.modal-overlay').classList.remove('active')
document.querySelector('.modal').classList.remove('modalAnimation')
Form.showError(" ")
}
}
const Storage = {
get() {
return JSON.parse(localStorage.getItem("dev.finances:transactions")) || []
},
set(transactions) {
localStorage.setItem("dev.finances:transactions", JSON.stringify(transactions))
}
}
const Transaction = {
all: Storage.get(),
add(transaction) {
Transaction.all.push(transaction)
App.reload()
},
remove(index) {
Transaction.all.splice(index, 1) //splice -> (índice do array, quantidade)
App.reload()
},
incomes() {
let income = 0
Transaction.all.forEach(transaction => {
if(transaction.amount > 0) {
income += transaction.amount
}
})
return income;
},
expenses() {
let expense = 0;
Transaction.all.forEach(transaction => {
if(transaction.amount < 0) {
expense += transaction.amount
}
})
return expense;
},
total() {
return Transaction.incomes() + Transaction.expenses()
}
}
const DOM = {
transactionsContainer: document.querySelector('#data-table tbody'),
addTransaction(transaction, index) {
const tr = document.createElement('tr')
tr.innerHTML = DOM.innerHTMLTransaction(transaction, index)
tr.dataset.index = index
DOM.transactionsContainer.appendChild(tr)
},
innerHTMLTransaction(transaction, index) {
const CSSclass = transaction.amount > 0 ? "income" : "expense"
const amount = Utils.formatCurrency(transaction.amount)
const html = `
<tr>
<td class="description">${transaction.description}</td>
<td class="${CSSclass}">${amount}</td>
<td class="date">${transaction.date}</td>
<td><img onclick="Transaction.remove(${index})" src="./assets/minus.svg" alt="Remover transação"></td>
</tr>
`
return html
},
updateBalance() {
document
.querySelector('#incomeDisplay')
.innerHTML = Utils.formatCurrency(Transaction.incomes())
document
.querySelector('#expenseDisplay')
.innerHTML = Utils.formatCurrency(Transaction.expenses())
document
.querySelector('#totalDisplay')
.innerHTML = Utils.formatCurrency(Transaction.total())
},
clearTransactions() {
DOM.transactionsContainer.innerHTML = ""
}
}
const Utils = {
//Formatar valor
formatAmount(value) {
value = Number(value) * 100
return value
},
//Formatar data
formatDate(date) {
const splittedDate = date.split("-") //split -> separa a string por um separador
return `${splittedDate[2]}/${splittedDate[1]}/${splittedDate[0]}`
},
//Formatar moeda
formatCurrency(value) {
const signal = Number(value) < 0 ? "-" : ""
value = String(value).replace(/\D/g, "") //Tudo que não for um número
value = Number(value) / 100 //Truque para trabalhar com dinheiro: Deixar o valor multiplicado por 100 depois divide por 100
value = value.toLocaleString("pt-BR", {
style: "currency",
currency: "BRL"
})
return signal + value
}
}
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
}
},
// Formatar dados
formatValues() {
let { description, amount, date } = Form.getValues()
amount = Utils.formatAmount(amount)
date = Utils.formatDate(date)
return {
description,
amount,
date
}
},
showError(message) {
document.querySelector(".message").innerHTML = `${message}`
console.log(message)
},
// Validar campos
validateField() {
const { description, amount, date } = Form.getValues()
if(description.trim() === "" || amount.trim() === "" || date.trim() === "") { //trim -> limpar os espaços vazios
Form.showError("Por favor, preencha todos os campos!")
throw new Error("Por favor, preencha todos os campos!")// Criar novo objeto de erro utilizando o construtor Error
}
console.log(description, amount, date)
},
// Limpar
clearFields() {
Form.description.value = ""
Form.amount.value = ""
Form.date.value = ""
},
submit(event) {
event.preventDefault() //Tirar comportamento padrão do formulário(não mostrar informações na url no browser)
try {
//Verificar se os campos são válidos
Form.validateField()
//Pegar transação formatada
const transaction = Form.formatValues()
//Adicionar transação
Transaction.add(transaction)
//Limpar os campos
Form.clearFields()
//Fechar modal
Modal.close()
} catch (error) {
console.log(error.message)
}
}
}
const App = {
init() {
Transaction.all.forEach((transaction, index) => {
DOM.addTransaction(transaction, index)
})
DOM.updateBalance()
Storage.set(Transaction.all)
},
reload() {
DOM.clearTransactions()
App.init()
}
}
App.init()