-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodos.js
212 lines (176 loc) · 6.39 KB
/
todos.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
container = document.querySelector("#app");
todos = JSON.parse(localStorage.getItem("list-todos")) || [{ todo: "Fazer a Lista", finished: false }, { todo: "Compras", finished: true }];
// Filtra vazios
todos = todos.filter(function (el) {
return el != null;
});
saveToStorage();
// Adicionando título
title = document.createElement("h1");
titleText = document.createTextNode("TO-DO APP");
title.appendChild(titleText);
container.appendChild(title);
// Criando form para todo
form = document.createElement("form");
form.setAttribute("name", "todo-form");
form.setAttribute("id", "todo-form");
form.setAttribute("method", "POST");
form.setAttribute("action", "#");
container.appendChild(form);
// Criando input para formulário
input = document.createElement("input");
input.setAttribute("type", "text");
input.setAttribute("name", "todo");
input.setAttribute("id", "todo");
input.setAttribute("placeholder", "Digite o todo");
input.setAttribute("required", "");
form = container.querySelector("#todo-form");
form.appendChild(input);
// Criando Lista
ul = document.createElement("ul");
ul.setAttribute("id", "todo-list");
container.appendChild(ul);
// Definindo submit pelo botão enter
form = container.querySelector("#todo-form");
// Guarda input e a lista de itens
input = container.querySelector("#todo");
todosContainer = container.querySelector("#todo-list");
function renderTodos() {
todos.forEach(function (todo, index) {
// Cria item
todoElement = document.createElement("li");
// Cria ckeckbox para concluir todo
todoCheck = document.createElement("input");
todoCheck.setAttribute("type", "checkbox");
todoCheck.setAttribute("class", "checkTodo");
todoCheck.setAttribute("name", "checkTodo");
todoCheck.setAttribute("rel", index);
todoElement.appendChild(todoCheck);
// Insere texto digitado
todoSpan = document.createElement("span");
todoText = document.createTextNode(todo.todo);
// Verifica se está concluído
if (todo.finished == true) {
todoSpan.style.textDecoration = "line-through";
todoCheck.checked = true;
}
todoSpan.appendChild(todoText);
todoElement.appendChild(todoSpan);
// Insere link para remover todo
todoRemove = document.createElement("a");
todoRemove.setAttribute("class", "removeTodo");
todoRemove.setAttribute("rel", index);
todoRemoveText = document.createTextNode("Remove");
todoRemove.appendChild(todoRemoveText);
todoElement.appendChild(todoRemove);
// Adiciona o item em tela
todosContainer.appendChild(todoElement);
// Ações para conclusão de item
todoCheck.onclick = function () {
rel = this.getAttribute("rel");
if (this.checked == false) {
todos[rel].finished = false;
this.nextSibling.style.textDecoration = "none";
} else {
todos[rel].finished = true;
this.nextSibling.style.textDecoration = "line-through";
}
saveToStorage()
}
todoSpan.onclick = function () {
inputCheck = this.previousSibling;
rel = inputCheck.getAttribute("rel");
console.log(rel);
if (inputCheck.checked == false) {
inputCheck.checked = true;
todos[rel].finished = true;
this.style.textDecoration = "line-through";
} else {
inputCheck.checked = false;
todos[rel].finished = false;
this.style.textDecoration = "none";
}
saveToStorage()
}
// Ações para remover
todoRemove.onclick = function () {
rel = this.getAttribute("rel");
this.parentElement.remove()
delete todos[rel];
saveToStorage()
}
});
}
// Renderiza todos
renderTodos();
// Criando Itens da Lista
form.addEventListener("submit", function (event) {
// Previne o redirecionamento
event.preventDefault();
// Adiciona Novo Item no Array
todos.push({
todo: input.value,
finished: false
})
saveToStorage()
// Cria item
todoElement = document.createElement("li");
// Cria ckeckbox para concluir todo
todoCheck = document.createElement("input");
todoCheck.setAttribute("type", "checkbox");
todoCheck.setAttribute("class", "checkTodo");
todoCheck.setAttribute("name", "checkTodo");
todoCheck.setAttribute("rel", todos.length - 1);
todoElement.appendChild(todoCheck);
// Insere texto digitado
todoSpan = document.createElement("span");
todoText = document.createTextNode(input.value);
todoSpan.appendChild(todoText);
todoElement.appendChild(todoSpan);
// Insere link para remover todo
todoRemove = document.createElement("a");
todoRemove.setAttribute("class", "removeTodo");
todoRemove.setAttribute("rel", todos.length - 1);
todoRemoveText = document.createTextNode("Remove");
todoRemove.appendChild(todoRemoveText);
todoElement.appendChild(todoRemove);
todosContainer.appendChild(todoElement);
input.value = "";
// Ações para conclusão de item
todoCheck.onclick = function () {
rel = this.getAttribute("rel");
if (this.checked == false) {
todos[rel].finished = false;
this.nextSibling.style.textDecoration = "none";
} else {
todos[rel].finished = true;
this.nextSibling.style.textDecoration = "line-through";
}
saveToStorage()
}
todoSpan.onclick = function () {
inputCheck = this.previousSibling;
rel = inputCheck.getAttribute("rel");
if (inputCheck.checked == false) {
inputCheck.checked = true;
todos[rel].finished = true;
this.style.textDecoration = "line-through";
} else {
inputCheck.checked = false;
todos[rel].finished = false;
this.style.textDecoration = "none";
}
saveToStorage()
}
// Ações para remover
todoRemove.onclick = function () {
rel = this.getAttribute("rel");
this.parentElement.remove()
delete todos[rel];
saveToStorage()
}
});
// Salvar no localStorage
function saveToStorage() {
localStorage.setItem("list-todos", JSON.stringify(todos));
}