-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscripts.js
More file actions
192 lines (178 loc) · 4.68 KB
/
scripts.js
File metadata and controls
192 lines (178 loc) · 4.68 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
const utils = {
formatCurrency(value) {
const signal = Number(value) < 0 ? '-' : ''
value = String(value).replace(/\D/g, '')
value = Number(value) / 100
value = value.toLocaleString("pt-BR", {
style: "currency",
currency: "BRL"
})
return signal + value
},
formatAmount(value) {
value = value * 100
return Math.round(value)
},
formatDate(value) {
const splittedDate = value.split("-")
return `${splittedDate[2]}/${splittedDate[1]}/${splittedDate[0]}`
}
}
const modal = {
open() {
document.querySelector('.modal-overlay').classList.add('active')
},
close() {
document.querySelector('.modal-overlay').classList.remove('active')
}
}
let COLOR_THEME = window.matchMedia("(prefers-color-scheme: light)").matches ? 'light' : 'dark'
const invertTheme = (mediaText) => mediaText.indexOf('dark') > -1
? ['dark', 'light']
: ['light', 'dark']
function switchTheme() {
const cssRules = window.document.styleSheets[1].cssRules
for (const rule of cssRules) {
let media = rule.media
if (media) {
const [currentTheme, nextTheme] = invertTheme(media.mediaText)
media.mediaText = media
.mediaText
.replace(
"(prefers-color-scheme: " + currentTheme + ")",
"(prefers-color-scheme: " + nextTheme + ")",
)
}
}
}
const storage = {
get() {
return JSON.parse(localStorage.getItem("dev.finances:transaction")) || []
},
set(transactions) {
localStorage.setItem("dev.finances:transaction", JSON.stringify(transactions))
}
}
storage.get()
const transaction = {
all: storage.get(),
add(trans) {
this.all.push(trans)
app.reload()
},
remove(index) {
this.all.splice(index, 1)
app.reload()
},
incomes() {
let income = 0
this.all.forEach((el) => {
if(el.amount > 0) {
income += el.amount
}
})
return income
},
expenses() {
let expense = 0
this.all.forEach((el) => {
if(el.amount < 0) {
expense += el.amount
}
})
return expense
},
total() {
let total = 0
return this.incomes() + this.expenses()
}
}
const DOM = {
transactionContainer: document.querySelector('#data-table tbody'),
innerHTMLTransaction(transaction, index) {
const cssClass = transaction.amount > 0 ? 'income' : 'expense'
const amount = utils.formatCurrency(transaction.amount)
const html =
`
<td class="description">${transaction.description}</td>
<td class="${cssClass}">${amount}</td>
<td class="date">${transaction.date}</td>
<td>
<img src="assets/minus.svg" alt="Remover transação" onclick="transaction.remove(${index})">
</td>
`
return html
},
addTransaction(transaction, index) {
const tr = document.createElement('tr')
tr.innerHTML = DOM.innerHTMLTransaction(transaction, index)
tr.dataset.index = index
this.transactionContainer.appendChild(tr)
},
updateBalance() {
document.getElementById('incomeDisplay').innerHTML = utils.formatCurrency(transaction.incomes())
document.getElementById('expenseDisplay').innerHTML = utils.formatCurrency(transaction.expenses())
document.getElementById('totalDisplay').innerHTML = utils.formatCurrency(transaction.total())
},
clearTransactions() {
this.transactionContainer.innerHTML = ''
}
}
const form = {
description: document.querySelector('input#description'),
amount: document.querySelector('input#amount'),
date: document.querySelector('input#date'),
getValues() {
return {
description: this.description.value,
amount: this.amount.value,
date: this.date.value
}
},
validateFields() {
const {description, amount, date} = this.getValues()
if(description.trim() == '' || amount.trim() == '' || date.trim() == '') {
throw new Error("Todos os campos devem ser preenchidos!")
}
},
formatValues() {
let {description, amount, date} = this.getValues()
amount = utils.formatAmount(amount)
date = utils.formatDate(date)
return {description, amount, date}
},
saveTransaction(trans) {
transaction.add(trans)
},
clearFields() {
this.description.value = ""
this.amount.value = ""
this.date.value = ""
},
submit(event) {
event.preventDefault()
try {
this.validateFields()
const transaction = this.formatValues()
this.saveTransaction(transaction)
this.clearFields()
modal.close()
} catch (error) {
alert(error.message)
}
},
}
const app = {
init() {
transaction.all.forEach((el, index) => {
DOM.addTransaction(el, index)
})
DOM.updateBalance()
storage.set(transaction.all)
},
reload() {
DOM.clearTransactions()
this.init()
}
}
app.init()