-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
196 lines (169 loc) · 7.04 KB
/
app.js
File metadata and controls
196 lines (169 loc) · 7.04 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
// SELECTORS
const todoInput = document.querySelector('.todo-input'); // this has the input todo
const todoButton = document.querySelector('.todo-button');
const todoList = document.querySelector('.todo-list');
const filterOption = document.querySelector('.filter-todo'); /* the div with the <select>'s class name */
// EVENT LISTENERS
// on a click, do the function called "addTodo"
todoButton.addEventListener('click', addTodo);
todoList.addEventListener('click', deleteCheck);
filterOption.addEventListener('click', filterTodo);
// attach event listener to document/window, execute function if content loaded
document.addEventListener('DOMContentLoaded', getTodos);
// FUNCTIONS
function addTodo(event){
event.preventDefault(); // prevent form from submitting
/*
below code will make multiple of:
<div class="todo">
<li></li>
<button>delete</button>
<button>completed </button>
</div>
*/
//ToDo div
const todoDiv = document.createElement('div');
todoDiv.classList.add('todo');
// create LI <li></li>
const newTodo = document.createElement('li');
newTodo.innerText=todoInput.value; // uses the input value as the text
newTodo.classList.add('todo-item');
todoDiv.appendChild(newTodo);
// Add todo to local storage
saveLocalTodos(todoInput.value);
// Check mark button <button>completed</button>
const completedButton = document.createElement('button');
completedButton.innerHTML = '<i class="fas fa-check"></i>'; // when you want to use html instead of text
completedButton.classList.add("completed-btn");
todoDiv.appendChild(completedButton);
// Check trash button <button>deleted</button>
const trashButton = document.createElement('button');
trashButton.innerHTML = '<i class="fas fa-trash"></i>'; // when you want to use html instead of text
trashButton.classList.add("trash-btn");
todoDiv.appendChild(trashButton);
// want to append these to the ul in the div with class="todo-contained"
// Append to list
todoList.appendChild(todoDiv); //todoDiv appended eac of the buttons and the LI above, so it has everything
// clear the form after inputting
todoInput.value = "";
}
function deleteCheck(event){
const item = event.target; /* whatever is being clicked on */
// delete the todo item
if(item.classList[0] === "trash-btn"){
/*
parentElement of trash-btn is the whole row:
<div class="todo">
<li class="todo-item"></li>
<button class="completed-btn">
<i class="fas fa-check"></i>
</button>
<button class="trash-btn">
<i class="fas fa-trash"></i>
</button>
</div>
*/
const todo = item.parentElement;
// Animation happens when item's trash button clicked, then item is really removed
todo.classList.add("fall");
removeLocalTodos(todo);
todo.addEventListener('transitionend', function(){
todo.remove();
})
}
// check mark
if (item.classList[0] === 'completed-btn'){
const todo = item.parentElement;
todo.classList.toggle('completed');
}
}
function filterTodo(e){
const todos = todoList.childNodes;
todos.forEach(function(todo){
switch (e.target.value) { // e.target.value is the menu option selected
case "all":
// show all todos
todo.style.display = "flex"; // display must match what the item has in css
break;
case "completed":
// only the todos with class="completed"
if (todo.classList.contains("completed")) {
todo.style.display = "flex";
} else{
todo.style.display = "none";
}
break;
case "uncompleted":
// only the todos that dont have class="completed"
if (!(todo.classList.contains("completed"))){
todo.style.display = "flex";
}
else{
todo.style.display = "none";
}
break;
}
});
}
function saveLocalTodos(todo){
// CHECK IF THERE ARE ALREADY TODOS
let todos;
// if no todos, make empty array, else get the array from local storage
if (localStorage.getItem('todos') === null){
todos=[];
}
else{
todos = JSON.parse(localStorage.getItem('todos'));
}
// push the new todo into the todos array in local storage
todos.push(todo);
localStorage.setItem('todos', JSON.stringify(todos));
}
function getTodos(){
console.log('hello');
// if no todos, make empty array, else get the array from local storage
if (localStorage.getItem('todos') === null){
todos=[];
}
else{
todos = JSON.parse(localStorage.getItem('todos'));
}
todos.forEach(function(todo){
//ToDo div
const todoDiv = document.createElement('div');
todoDiv.classList.add('todo');
// create LI <li></li>
const newTodo = document.createElement('li');
newTodo.innerText=todo; // uses the current todo as text
newTodo.classList.add('todo-item');
todoDiv.appendChild(newTodo);
// Check mark button <button>completed</button>
const completedButton = document.createElement('button');
completedButton.innerHTML = '<i class="fas fa-check"></i>'; // when you want to use html instead of text
completedButton.classList.add("completed-btn");
todoDiv.appendChild(completedButton);
// Check trash button <button>deleted</button>
const trashButton = document.createElement('button');
trashButton.innerHTML = '<i class="fas fa-trash"></i>'; // when you want to use html instead of text
trashButton.classList.add("trash-btn");
todoDiv.appendChild(trashButton);
// want to append these to the ul in the div with class="todo-contained"
// Append to list
todoList.appendChild(todoDiv); //todoDiv appended eac of the buttons and the LI above, so it has everything
})
}
function removeLocalTodos(todo){
// if no todos, make empty array, else get the array from local storage
if (localStorage.getItem('todos') === null){
todos=[];
}
else{
todos = JSON.parse(localStorage.getItem('todos'));
}
// todo.children is the todo's [item, complete-btn, trash-btn], so want todo.children[0] (the item)
const todoIndex = todo.children[0].innerText;
// splice(<position of elem to be removed>, <how many elems to remove starting from index>)
todos.splice(todos.indexOf(todoIndex), 1);
// rewrite the todos array with the new one with the todo removed
localStorage.setItem("todos", JSON.stringify(todos));
}