-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.js
71 lines (62 loc) · 1.75 KB
/
todo.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
const toDoForm = document.querySelector(".js-toDoForm"),
toDoInput = toDoForm.querySelector("input"),
toDoList = document.querySelector(".js-toDoList");
const TODOS_LS = "todo";
let toDos = [];
function deleteToDo(event){
const btn = event.target;
const selectedLi = btn.parentNode;
toDoList.removeChild(selectedLi);
const cleanToDos = toDos.filter(function(obj){
return obj.id !== parseInt(selectedLi.id);
});
toDos = cleanToDos;
saveToDos();
loadToDoList();
};
function saveToDos(){
localStorage.setItem(TODOS_LS, JSON.stringify(toDos));
};
function paintToDo(text){
const li = document.createElement("li");
const listText = document.createElement("span");
listText.innerText = text;
const dltBtn = document.createElement("button");
dltBtn.innerText = "X";
dltBtn.addEventListener("click", deleteToDo);
const newId = toDos.length + 1;
li.appendChild(listText);
li.appendChild(dltBtn);
li.id = newId;
toDoList.appendChild(li);
const toDoObj = {
text: text,
id: newId
};
toDos.push(toDoObj);
saveToDos();
};
function handleSubmit(event){
event.preventDefault();
const currentValue = toDoInput.value;
toDoInput.value = "";
paintToDo(currentValue);
};
function loadToDoList(){
const toDosLoaded = localStorage.getItem(TODOS_LS);
if(toDosLoaded !== null){
const parsedToDos = JSON.parse(toDosLoaded);
while (toDoList.firstChild) {
toDoList.removeChild(toDoList.firstChild);
}
toDos = [];
parsedToDos.forEach(function(toDo){
paintToDo(toDo.text);
});
}
};
function init(){
loadToDoList();
toDoForm.addEventListener("submit", handleSubmit);
};
init();