-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodoList.js
85 lines (66 loc) · 2.3 KB
/
todoList.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
//selectors
const todoInput = document.querySelector(".todo-input");
const todoButton = document.querySelector(".todo-button");
const todoList = document.querySelector(".todo-list");
// const todos = []
//event listner
todoButton.addEventListener("click", addTodo);
todoList.addEventListener("click", deleteCheck);
//functions
function addTodo(event){
//prevents form from submitting
event.preventDefault();
//creating a Div and a class inside it
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');
//putting li inside the Div we just created
todoDiv.appendChild(newTodo);
//checkmark button
const completedButton = document.createElement('button');
completedButton.innerHTML = '<i class="fas fa-check"></i>';
completedButton.type='button'
completedButton.classList.add("complete-btn");
todoDiv.appendChild(completedButton);
//trash button
const trashButton = document.createElement('button');
trashButton.innerHTML = '<i class="fas fa-trash"></i>';
trashButton.classList.add("trash-btn");
trashButton.type = 'button'
todoDiv.appendChild(trashButton);
//now appending the whole todoDiv to the todo-list in the html
todoList.appendChild(todoDiv);
// todos.appendChild(todoList);
//clearing todo input after adding a todo
todoInput.value = "";
}
// const checkmarkButton = document.getElementsByClassName('.complete-btn')
// const trashButton = document.getElementsByClassName('.trash-btn')
// checkmarkButton.addEventListener('click', checkmarkTodo)
// trashButton.addEventListener('click', deleteTodo)
//to delete the todo when clicked on the delete button
function deleteCheck(e) {
const item = e.target
//deleting the todo
if (item.classList[0] === 'trash-btn') {
const todo = item.parentElement
todo.classList.add('fall')
todo.addEventListener('transitionend', function () {
todo.remove()
})
console.log('delete')
}
//checkmark
if (item.classList[0] === 'complete-btn') {
const todo = item.parentElement
todo.classList.toggle('completed')
console.log('check')
}
}
// function createElementsForList() {
// let ul = document.getElementById('todo-list')
// ul
// }