-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnippet.js
245 lines (176 loc) · 7.96 KB
/
snippet.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
module.exports = () => {
// Breakpoint iniciando aqui
const { clear, document } = require('./mock-components')
// Inicio do snippet
var ELEMENT_NODE_CODE = 1
var LISTA_MESES = {
JAN: '01',
FEV: '02',
MAR: '03',
ABR: '04',
MAI: '05',
JUN: '06',
JUL: '07',
AGO: '08',
SET: '09',
OUT: '10',
NOV: '11',
DEZ: '12'
}
var REGEX_PAGO = /(#PGO)/i
var LISTA_REGEX_CATEGORIA = {
HOME: [/.*(#Home).*/i],
SAUDE: [/.*(#Saúde).*/i],
SERVICO: [/.*(#Serviço).*/i],
TRANSPORTE: [/.*(#Transporte).*/i],
CONTAS: [/.*(Spotify).*/i, /.*(TIM).*/],
OUTROS: [/.*/]
}
var objSaida = {}
init()
function init() {
clear()
let listaItem = obterlistaItem()
let listaItemNaoPago = obterListaItemNaoPago(listaItem)
let mapCategoriaListaItem = obterMapCategoriaListaItem(listaItemNaoPago)
objSaida = obterObjSaida(mapCategoriaListaItem)
let textoSaidaConsole = gerarTextoSaidaConsole(objSaida)
console.log(textoSaidaConsole)
}
function obterObjSaida(mapCategoriaListaItem) {
return {
total: obterValorTotal(mapCategoriaListaItem),
mapCategoriaListaItem: mapCategoriaListaItem
}
}
function gerarTextoSaidaConsole(saida) {
// foi usado a spread syntax para converter o Map.values() numa lista
let textoSaida = [...saida.mapCategoriaListaItem.values()].reduce((textoSaidaReduce, listaCategoria) => {
if (listaCategoria.length)
textoSaidaReduce = textoSaidaReduce.concat('\n\n' + listaCategoria.map(item => {
const descricao = item.descricao.trim().replace(/\s\s+/g, ' ')
const data = obterData(item.data)
const valor = item.valor.toString().replace('.', ',')
return `#Nu ${descricao} ${data}\t\t${valor}`
}).join('\n'))
return textoSaidaReduce
}, '')
textoSaida = textoSaida.concat('\n\n' + '#Nu Total' + '\t\t' +
saida.total.toFixed(2).replace('.', ','))
return textoSaida
}
function obterMapCategoriaListaItem(listaItemNaoPago) {
let mapListaCategoria = new Map()
Object.keys(LISTA_REGEX_CATEGORIA).reduce((listaAccum, chaveCategoria) => {
const listaCategoriaRegex = LISTA_REGEX_CATEGORIA[chaveCategoria]
const listaItemCategoria = obterListaItemCategoria(listaAccum, listaCategoriaRegex)
if (listaItemCategoria.length)
mapListaCategoria.set(chaveCategoria, listaItemCategoria)
// Removendo os itens da categoria atual do restante da lista de itens nao pagos
listaAccum = listaAccum.filter(itemFilter =>
listaItemCategoria.every(itemEvery => !isItensIguais(itemFilter, itemEvery)))
return listaAccum
}, listaItemNaoPago)
return mapListaCategoria
}
function obterlistaItem() {
const div = document.getElementsByClassName('charges-list')[0]
const listDivChild = div.childNodes
return Array.prototype.filter.call(listDivChild, divChild =>
divChild.nodeType === ELEMENT_NODE_CODE
).map(divChild => {
const data = divChild.getElementsByClassName('date')[0].textContent
const descricao = divChild.getElementsByClassName('description')[0].textContent
const valorSeparadorDecimalVirgula = divChild.getElementsByClassName('amount')[0].textContent
const valor = obterValorSeparadorDecimalPonto(valorSeparadorDecimalVirgula)
return { data, descricao, valor }
}).sort(compararDatas)
}
function obterValorTotal(mapCategoriaListaItem) {
return [...mapCategoriaListaItem.values()].reduce((totalListas, listaCategoria) =>
totalListas = totalListas + listaCategoria.reduce(
(totalLista, dado) => totalLista = totalLista + dado.valor, 0), 0)
}
function obterListaItemNaoPago(listaItem) {
const listaItemPago = listaItem.filter(item => item.descricao.match(REGEX_PAGO) && item.valor > 0)
const listaPagamentoRecebido = listaItem.filter(pagamento => pagamento.valor < 0)
listaItemPagoComCorrespondentePagRecebido =
obterListaItemPagoComCorrespondentePagRecebido(listaPagamentoRecebido, listaItemPago)
listaPagRecebidoComCorrespondenteItemPago =
obterListaPagRecebidoComCorrespondenteItemPago(listaPagamentoRecebido, listaItemPago)
listaItem = removerItemPagoComCorrespondentePagRecebido(listaItem,
listaItemPagoComCorrespondentePagRecebido)
listaItem = removerPagRecebidoComCorrepondenteItemPago(listaItem,
listaPagRecebidoComCorrespondenteItemPago)
return listaItem
}
function obterListaItemPagoComCorrespondentePagRecebido(listaPagamentoRecebido, listaItemPago) {
const listaPagamentoRecebidoCopia = listaPagamentoRecebido.slice()
return listaItemPago.reduce((listaRetorno, itemPago) => {
const indexItemPagoCorrespondentePagRecebido = listaPagamentoRecebidoCopia.findIndex(pagRecebido =>
Math.abs(pagRecebido.valor) === itemPago.valor
)
if (indexItemPagoCorrespondentePagRecebido > -1) {
listaPagamentoRecebidoCopia.splice(indexItemPagoCorrespondentePagRecebido, 1)
listaRetorno.push(itemPago)
}
return listaRetorno
}, [])
}
function obterListaPagRecebidoComCorrespondenteItemPago(listaPagamentoRecebido, listaItemPago) {
const listaItemPagoCopia = listaItemPago.slice()
return listaPagamentoRecebido.reduce((listaRetorno, pagRecebido) => {
const indexPagRecebidoComCorrespondenteItemPago = listaItemPagoCopia.findIndex(itemPago =>
itemPago.valor === Math.abs(pagRecebido.valor)
)
if (indexPagRecebidoComCorrespondenteItemPago > -1) {
listaItemPagoCopia.splice(indexPagRecebidoComCorrespondenteItemPago, 1)
listaRetorno.push(pagRecebido)
}
return listaRetorno
}, [])
}
// Remover itens #PGO
function removerItemPagoComCorrespondentePagRecebido(listaItem,
listaItemPagoComCorrespondentePagRecebido) {
return listaItem.filter(item =>
listaItemPagoComCorrespondentePagRecebido.every(
itemPago => !isItensIguais(itemPago, item)))
}
// Remover os pagamentos recebidos com correspondentes #PGO
function removerPagRecebidoComCorrepondenteItemPago(listaItem,
listaPagRecebidoComCorrespondenteItemPago) {
return listaItem.filter(item =>
listaPagRecebidoComCorrespondenteItemPago.every(
pagRecebido => !isItensIguais(pagRecebido, item)))
}
function isItensIguais(itemA, itemB) {
return itemA.data === itemB.data &&
itemA.descricao === itemB.descricao &&
itemA.valor === itemB.valor
}
function compararDatas(itemA, itemB) {
return itemA.data > itemB.data ? -1 : itemA.data < itemB.data ? 1 : 0
}
function obterListaItemCategoria(listaItemPago, listaCategoriaRegex) {
return listaItemPago.filter(item =>
listaCategoriaRegex.some(regex => item.descricao.match(regex))
)
}
function obterData(data) {
if (data) {
const re = new RegExp(Object.keys(LISTA_MESES).join('|'), 'gi')
return data.replace(re, matched =>
LISTA_MESES[matched.toUpperCase()]
).replace(/\s+/gi, '/')
} else
return ''
}
function obterValorSeparadorDecimalPonto(valorSeparadorDecimalVirgula) {
return parseFloat(valorSeparadorDecimalVirgula.replace(/[,.]/g, function (x) {
return x == ',' ? '.' : ''
}))
}
// Fim do snippet
return objSaida
}