-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
165 lines (140 loc) · 5.5 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
//Selectors
const todoInput=document.querySelector('.todo-input');
const todoButton=document.querySelector('.todo-button');
const todoContainer=document.querySelector('.todo-container');
const todoList=document.querySelector('.todo-list');
const filterOption=document.querySelector('.filter-todo');
//Event Listeners
document.addEventListener('DOMContentLoaded',getToDO);
todoButton.addEventListener("click",addToDo);
todoList.addEventListener("click",deleteCheck);
filterOption.addEventListener("click",filterToDo);
//Functions:
//Function:Add To List
function addToDo(event){
event.preventDefault(); //prevents default submission behaviour of submission
//Creating <div> element to conain the <li>,<button>,<button>
//Button 1-> Check. Button 2->Delete
const todoDiv=document.createElement('div');
todoDiv.classList.add('todo');
//Create <li>
const newtodo=document.createElement('li');
newtodo.innerText=todoInput.value;
newtodo.classList.add('todo-item');
//Create <button>
const checkButton=document.createElement('button');
const deleteButton=document.createElement('button');
checkButton.innerHTML='<i class="fas fa-check"></i>';
checkButton.classList.add('check-btn');
deleteButton.innerHTML='<i class="fas fa-trash"></i>';
deleteButton.classList.add('delete-btn');
//Append the childs to <div>
todoDiv.appendChild(newtodo);
todoDiv.appendChild(checkButton);
todoDiv.appendChild(deleteButton);
//Append the <div> to <ul>
todoList.appendChild(todoDiv);
//Add todos to local storage
saveToDoLocal(todoInput.value);
//Clearing the <input> field
todoInput.value="";
}
//Function:Check/Delete the <li>
function deleteCheck(event){
const item=event.target;
if(item.classList[0]==='delete-btn'){
item.parentElement.classList.add('fall');
deleteLocalToDos(item.parentElement);
item.parentElement.addEventListener('transitionend',function(target){
item.parentElement.remove();
});
}
else if(item.classList[0]==='check-btn'){
item.parentElement.classList.toggle('completed');
}
}
//Function:Filter ToDoList
function filterToDo(event){
const todos=todoList.childNodes;
todos.forEach(function(todo){
switch(event.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:Saving in local storage
function saveToDoLocal(todo){
var todos;
if(localStorage.getItem('todos')===null){
todos=[];
}
else{
todos=JSON.parse(localStorage.getItem('todos'));
}
todos.push(todo);
localStorage.setItem('todos',JSON.stringify(todos));
}
//Function:Get Todo
function getToDO(){
var todos;
if(localStorage.getItem('todos')===null){
todos=[];
}
else{
todos=JSON.parse(localStorage.getItem('todos'));
}
todos.forEach(function(todo){
//Creating <div> element to conain the <li>,<button>,<button>
//Button 1-> Check. Button 2->Delete
const todoDiv=document.createElement('div');
todoDiv.classList.add('todo');
//Create <li>
const newtodo=document.createElement('li');
newtodo.innerText=todo;
newtodo.classList.add('todo-item');
//Create <button>
const checkButton=document.createElement('button');
const deleteButton=document.createElement('button');
checkButton.innerHTML='<i class="fas fa-check"></i>';
checkButton.classList.add('check-btn');
deleteButton.innerHTML='<i class="fas fa-trash"></i>';
deleteButton.classList.add('delete-btn');
//Append the childs to <div>
todoDiv.appendChild(newtodo);
todoDiv.appendChild(checkButton);
todoDiv.appendChild(deleteButton);
//Append the <div> to <ul>
todoList.appendChild(todoDiv);
});
}
//Function:Remove Local Stored ToDo's
function deleteLocalToDos(todo){
var 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));
}