-
Notifications
You must be signed in to change notification settings - Fork 0
/
indexdb.html
193 lines (180 loc) · 5.51 KB
/
indexdb.html
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Lista de tarefas</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style id="estiloOculto">
.oculto {
display: none;
}
</style>
</head>
<body onload="withDB(carregaTarefas)">
<h1>Lista de tarefas</h1>
<button id="mostraEscondeConcluidos">mostra todas</button>
<form action="">
<input type="text" id="barraDigitar" name="novatarefa" placeholder="Nova tarefa">
<input type="submit" value="Inserir">
</form>
<div id="lista"></div>
<script>
let con = 0
const formulario = document.querySelector("form")
formulario.addEventListener("submit", insereTarefa)
document.querySelector("#mostraEscondeConcluidos").addEventListener( "click", evento => {
const estilo = document.querySelector("#estiloOculto")
estilo.disabled = !estilo.disabled
})
function pegaTextoInput(formulario) {
const input = formulario.querySelector("input[type=text]")
const texto = input.value
input.value = ""
input.focus()
return texto
}
function insereTarefa(evento) {
evento.preventDefault()
const texto = pegaTextoInput(evento.target)
if (texto == "") return
const tarefa = novaTarefa(texto)
document.querySelector("#lista").append(tarefa)
withDB(db => {
let req = db.add({"texto": texto, "feito": false})
req.onsuccess = evento => {
tarefa.setAttribute('id', `task-${evento.target.result}`)
}
})
}
function novaTarefa(texto) {
const tarefa = document.createElement("p")
tarefa.append(criaCheckbox())
tarefa.append(texto + " ")
tarefa.append(criaLixeira())
tarefa.append(criaAtualiza())
return tarefa
}
function criaCheckbox() {
const checkbox = document.createElement("input")
checkbox.setAttribute("type", "checkbox")
checkbox.addEventListener("click", salvaChecagem)
checkbox.addEventListener("click", atribuiEstiloOculto)
return checkbox
}
function atribuiEstiloOculto(evento) {
if (evento.target.checked) {
evento.target.parentNode.classList.add("oculto")
} else {
evento.target.parentNode.classList.remove("oculto")
}
}
function salvaChecagem(eventoCheckbox) {
withDB(db => {
let id = eventoCheckbox.target.parentNode.id
let key = parseInt(id.slice(5))
let req = db.get(key)
req.onsuccess = eventoReq => {
let registro = eventoReq.target.result
registro["feito"] = eventoCheckbox.target.checked
db.put(registro, key)
}
})
}
function criaLixeira() {
const lixeira = document.createElement("span")
lixeira.classList.add("fa")
lixeira.classList.add("fa-trash-o")
lixeira.addEventListener("click", removeTarefa)
return lixeira
}
function criaAtualiza() {
const atualiza = document.createElement("span")
atualiza.classList.add('fa')
atualiza.classList.add('fa-refresh')
atualiza.addEventListener('click', atualizaTarefa)
return atualiza
}
function removeTarefa(evento) {
const lixeira = evento.target
const tarefa = lixeira.parentNode
tarefa.remove()
withDB(db => {
let id = tarefa.id
let key = parseInt(id.slice(5))
db.delete(parseInt(key))
});
}
function atualizaTarefa(evento) {
const atualiza = evento.target
const tarefa = atualiza.parentNode
const elemento = tarefa.firstElementChild
const texto = elemento.nextSibling.textContent
const barra = document.getElementById('barraDigitar')
const form = document.querySelector('form')
barra.value = texto
if (con == 0) {
const botao = document.createElement('button')
botao.innerHTML = 'Atualizar'
botao.setAttribute('id','atualizar')
botao.addEventListener('click',function () {
btnAtualiza(tarefa)
})
form.after(botao)
con = 1
}
}
function btnAtualiza (eventoAtualiza) {
const barra = document.getElementById('barraDigitar')
let tt = barra.value
let id = eventoAtualiza.id
texto = document.getElementById(id)
a = texto.childNodes[1]
a.textContent = tt + ' '
barra.value = ''
barra.focus()
withDB(db => {
let key = parseInt(id.slice(5))
let req = db.get(key)
req.onsuccess = eventoReq => {
let registro = eventoReq.target.result
registro["texto"] = tt
db.put(registro, key)
}
})
g = document.getElementById('atualizar')
g.remove()
con = 0
}
function withDB(callback) {
let request = indexedDB.open("listaTarefas", 1);
request.onerror = console.error
request.onsuccess = () => {
let db = request.result;
callback(getStore(db))
}
request.onupgradeneeded = () => {
let db = request.result
db.createObjectStore("tarefas", {autoIncrement: true});
}
function getStore(db) {
return db.transaction(["tarefas"], "readwrite").objectStore("tarefas")
}
}
function carregaTarefas(db) {
db.openCursor().onsuccess = evento => {
let cursor = evento.target.result
if (cursor) {
const tarefa = novaTarefa(cursor.value.texto)
document.querySelector("#lista").append(tarefa)
const id = cursor.key
tarefa.setAttribute("id", `task-${id}`)
if (cursor.value.feito) {
tarefa.firstElementChild.click()
}
cursor.continue()
}
}
}
</script>
</body>
</html>