-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.js
80 lines (68 loc) · 1.97 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
72
73
74
75
76
77
78
79
80
const toDoForm = document.querySelector(".js-toDoForm"),
toDoInput = toDoForm.querySelector("input"),
toDoList = document.querySelector(".js-toDoList")
const TODOS_LS = 'toDos';
let toDos = [];
let finished = [];
function deleteToDo(event) {
const li = event.target.parentNode;
toDoList.removeChild(li);
const cleanTodos = toDos.filter(function(toDo){
// li.id가 string이라 바로 처리하면 안됨
return toDo.id !== parseInt(li.id);
});
toDos = cleanTodos;
saveToDos();
}
function paintToDo(text) {
const li = document.createElement("li");
const deleteBtn = document.createElement("button");
const span = document.createElement("span");
const newId = toDos.length + 1;
deleteBtn.innerText = "❌";
deleteBtn.addEventListener("click", deleteToDo);
span.innerText = text;
li.appendChild(span);
li.appendChild(deleteBtn);
toDoList.appendChild(li);
li.id = newId;
const toDoObj = {
text: text,
id: newId
}
toDos.push(toDoObj);
saveToDos();
}
function saveToDos() {
//localStorage엔 string만 저장할 수 있다...
//때문에 자바스크립트 object를 stringjson형태로 바꿔서 저장해줘야 한다.
localStorage.setItem(TODOS_LS, JSON.stringify(toDos));
//paintBorder();
}
function handleSubmit(event){
event.preventDefault();
const currentValue = toDoInput.value;
paintToDo(currentValue);
toDoInput.value="";
}
function localToDos(){
const loadedToDos = localStorage.getItem(TODOS_LS);
if(loadedToDos !== null){
const parsedToDos = JSON.parse(loadedToDos);
parsedToDos.forEach(function(toDo) {
paintToDo(toDo.text);
});
}
}
function paintBorder() {
if(toDos.length > 0){
toDoList.style.border = '1px solid white';
} else {
toDoList.style.border = '';
}
}
function init() {
localToDos();
toDoForm.addEventListener("submit", handleSubmit);
}
init();