-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
148 lines (137 loc) · 4.59 KB
/
app.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
//Selectors
const todoInput = document.querySelector(".todo__input");
const todoBtn = document.querySelector(".todo__btn");
const todoList = document.querySelector(".todo__list");
const filterOptions = document.querySelector(".filter")
//Event Listeners
document.addEventListener("DOMContentLoaded", getTodos)
todoBtn.addEventListener("click", addTodo);
todoList.addEventListener("click", deleteCheck);
filterOptions.addEventListener("click", filterTodo);
//functions
function addTodo(event){
//Prevent Form Submit
event.preventDefault();
//ToDo Wrapper
const todoDiv = document.createElement("div");
todoDiv.classList.add("todo__wrapper");
//create li
const newToDo = document.createElement("li");
newToDo.innerText = todoInput.value;
newToDo.classList.add("todo__wrapper--item");
todoDiv.appendChild(newToDo);
//add todo to local stroage
saveLocalTodos(todoInput.value);
//create checked button
const checkedBtn = document.createElement("button");
checkedBtn.innerHTML = '<i class="fas fa-check"></i>';
checkedBtn.classList.add("todo__wrapper--check");
todoDiv.appendChild(checkedBtn);
//create delete button
const deleteBtn = document.createElement("button");
deleteBtn.innerHTML = '<i class="fas fa-trash"></i>';
deleteBtn.classList.add("todo__wrapper--del");
todoDiv.appendChild(deleteBtn);
//Append to the list
todoList.appendChild(todoDiv);
//clear input value
todoInput.value = "";
}
function deleteCheck(event){
const item = event.target;
//Delete
if(item.classList[0] === "todo__wrapper--del"){
const todo = item.parentElement;
//Animation
todo.classList.add("fall");
removeLocalTodos(todo);
todo.addEventListener("transitionend", function(){
todo.remove();
})
}
//Check
if(item.classList[0]=== "todo__wrapper--check"){
const todo = item.parentElement;
todo.classList.toggle("completed")
}
}
function filterTodo(e){
const todos = todoList.childNodes;
todos.forEach(function(todo){
console.log(todo);
switch(e.target.value){
case "all":
todo.style.display = "flex";
break;
case "completed":
if(todo.classList.contains("completed")){
todo.style.display = "flex";
} else {
todo.style.display = "none";
}
break;
case "uncompleted":
if(todo.classList.contains("completed")){
todo.style.display = "none";
} else {
todo.style.display = "flex";
}
break;
}
});
}
function saveLocalTodos(todo){
console.log(todo)
//Check whether we have anything in Storage
let todos;
if(localStorage.getItem("todos") === null) {
todos = [];
} else {
todos = JSON.parse(localStorage.getItem("todos"))
}
todos.push(todo);
localStorage.setItem("todos", JSON.stringify(todos));
}
function getTodos(){
let todos;
if(localStorage.getItem("todos") === null) {
todos = [];
} else {
todos = JSON.parse(localStorage.getItem("todos"))
}
todos.forEach(function(todo){
//ToDo Wrapper
const todoDiv = document.createElement("div");
todoDiv.classList.add("todo__wrapper");
//create li
const newToDo = document.createElement("li");
newToDo.innerText = todo;
newToDo.classList.add("todo__wrapper--item");
todoDiv.appendChild(newToDo);
//create checked button
const checkedBtn = document.createElement("button");
checkedBtn.innerHTML = '<i class="fas fa-check"></i>';
checkedBtn.classList.add("todo__wrapper--check");
todoDiv.appendChild(checkedBtn);
//create delete button
const deleteBtn = document.createElement("button");
deleteBtn.innerHTML = '<i class="fas fa-trash"></i>';
deleteBtn.classList.add("todo__wrapper--del");
todoDiv.appendChild(deleteBtn);
//Append to the list
todoList.appendChild(todoDiv);
})
}
function removeLocalTodos(todo){
let todos;
if(localStorage.getItem("todos") === null) {
todos = [];
} else {
todos = JSON.parse(localStorage.getItem("todos"))
}
const todoIndex = todo.children[0].innerText;
todos.splice(todos.indexOf(todoIndex), 1);
localStorage.setItem("todos", JSON.stringify(todos));
// console.log(todo.children[0].innerText)
// console.log(todos.indexOf("adadad"))
}