-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.js
193 lines (163 loc) · 5.61 KB
/
demo.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
//some selectors goes here
const todoInput = document.querySelector('.todo-input');
const todoButton = document.querySelector('.todo-button');
const todoList = document.querySelector('.todo-list');
const filterOpt = document.querySelector('.filter-todo');
//mouseover action UPPERCASE
todoList.addEventListener('mouseover', (event) => {
if(event.target.tagName == 'LI'){
event.target.textContent = event.target.textContent.toUpperCase();
}
});
//mouseout action to lowercase
todoList.addEventListener('mouseout', (event) => {
if(event.target.tagName == 'LI'){
event.target.textContent = event.target.textContent.toLowerCase();
}
});
//isEmpty function in the input field
// todoInput.forEach(input =>{
// input.addEventListener('blur', (et) => {
// if (et.target.value === ""){
// et.target.setAttribute('placeholder', "This field is required")
// }
// else con
// })
// })
// //EVent Listeners----------
// document.addEventListener("DOMContentLoaded", gettoDos);
//Add todo list function
todoButton.addEventListener('click', (event) => {
event.preventDefault();
//div creating
const todoDiv = document.createElement('div');
todoDiv.classList.add('todo');
//li creating
const newTodo = document.createElement('li');
newTodo.innerText = todoInput.value;
newTodo.classList.add('todo-item');
todoDiv.appendChild(newTodo);
//Add todos into my local Storage
saveAlreadyTodos(todoInput.value);
//1st button
const completedButton = document.createElement('button');
completedButton.innerHTML = '<i class="fas fa-check-square"></i>';
completedButton.classList.add('complete-btn');
todoDiv.appendChild(completedButton);
//2nd button
const trashButton = document.createElement('button');
trashButton.innerHTML = '<i class="fas fa-trash"></i>';
trashButton.classList.add('trash-btn');
todoDiv.appendChild(trashButton);
// append to List
todoList.appendChild(todoDiv);
//input values
todoInput.value ="";
});
//Delete function of button from todo list
todoList.addEventListener('click', (e) =>{
e.preventDefault();
item = e.target;
//Delete from list
if(item.classList[0] === 'trash-btn'){
const todo = item.parentElement;
//Animating the process
todo.classList.add('drop');
todo.addEventListener('transitioned', function(){
todo.remove();
});
}
//Checked elemetns function in the list
if(item.classList[0] === 'complete-btn') {
const todo = item.parentElement;
console.log("working");
todo.classList.toggle('completed');
}
});
//Filter option to check if the todo is "completed" or "uncompleted"
filterOpt.addEventListener('click', function (e) {
const todos = todoList.childNodes;
todos.forEach(function (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 ="flex";
} else {
todo.style.display = "none";
}
break;
}
});
});
// filterOpt.addEventListener('click', filterOptions);
// function filterOptions(et) {
// const todos = todoList.childNodes;
// todos.forEach(function(todo){
// switch(et.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";
// }
// }
// });
// }
// Todos in my list
function saveAlreadyTodos(todo){
//Check if i have already in my list
let todos;
if(localStorage.getItem("todos") === null){
todos = [];
} else {
todos =JSON.parse(localStorage.getItem("todos"));
}
todos.push(todo);
localStorage.setItem("todos", JSON.stringify(todos));
}
// //DOMCOntent is Loaded using this funtion
// function gettoDos(){
// console.log("hello");
// let todos;
// if(localStorage.getItem("todos") === null){
// todos = [];
// } else {
// todos =JSON.parse(localStorage.getItem("todos"));
// }
// todos.forEach(function(todo){
// //Div todo
// const todoDiv =document.createElement("div");
// todoDiv.classList.add("todo");
// //creating list items
// const newTodo = document.createElement("li");
// newTodo.classList.add("todo-item");
// todoDiv.appendChild(newTodo);
// //1st button
// const completedButton = document.createElement('button');
// completedButton.innerHTML = '<i class="fas fa-check-square"></i>';
// completedButton.classList.add('complete-btn');
// todoDiv.appendChild(completedButton);
// //2nd button
// const trashButton = document.createElement('button');
// trashButton.innerHTML = '<i class="fas fa-trash"></i>';
// trashButton.classList.add('trash-btn');
// todoDiv.appendChild(trashButton);
// // append to List
// todoList.appendChild(todoDiv);
// //input values
// todoInput.value ="";
// });
// }