-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathToDoListApp.js
More file actions
86 lines (77 loc) · 2.57 KB
/
ToDoListApp.js
File metadata and controls
86 lines (77 loc) · 2.57 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
//Selectors
const toDoInput = document.querySelector('.todo-input');
const toDoButton = document.querySelector('.todo-button');
const toDoList = document.querySelector('.todo-list');
const filterOption = document.querySelector('.filter-todo');
//Event Listeners
toDoButton.addEventListener('click', addTodo);
toDoList.addEventListener('click', deleteCheck);
filterOption.addEventListener('click', filterToDo);
//Functions
function addTodo(event) {
//Prevent form from submitting
event.preventDefault();
//Todo DIV
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');
todoDiv.appendChild(newTodo);
//check mark button
const completedButton = document.createElement('button');
completedButton.innerHTML = '<i class="fas fa-check"></i>';
completedButton.classList.add('complete-button');
todoDiv.appendChild(completedButton);
//check trash button
const trashButton = document.createElement('button');
trashButton.innerHTML = '<i class="fas fa-trash"></i>';
trashButton.classList.add('trash-button');
todoDiv.appendChild(trashButton);
//Append to list
toDoList.appendChild(todoDiv);
//clear todoinput value
toDoInput.value = '';
}
function deleteCheck(e) {
const item = e.target;
//delete
if (item.classList[0] === 'trash-button') {
const todo = item.parentElement;
//Animation for deleting
todo.classList.add('fall');
todo.addEventListener('transitionend', function () {
todo.remove();
});
};
//checkmark
if (item.classList[0] === 'complete-button') {
const todo = item.parentElement;
todo.classList.toggle('completed');
}
}
function filterToDo(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;
}
});
}