-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdom.js
99 lines (84 loc) · 3.49 KB
/
dom.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
// part 2 linking it all together
// The function here is called an iife,
// it keeps everything inside hidden from the rest of our application
(function() {
// This is the dom node where we will keep our todo
var container = document.getElementById('todo-container');
var addTodoForm = document.getElementById('add-todo');
var state = [
{ id: -3, description: 'first todo', done: false},
{ id: -2, description: 'second todo', done: false},
{ id: -1, description: 'third todo', done:false},
]; // this is our initial todoList
// This function takes a todo, it returns the DOM node representing that todo
var createTodoNode = function(todo) {
var todoNode = document.createElement('li');
// you will need to use addEventListener
// add span holding description
var todoText = document.createElement('span');
todoText.textContent = todo.description;
todoNode.appendChild(todoText);
// this adds the delete button
var deleteButtonNode = document.createElement('button');
deleteButtonNode.innerText = "✘";
deleteButtonNode.setAttribute("style", "color:white;");
deleteButtonNode.setAttribute("aria-label", "delete button");
deleteButtonNode.addEventListener('click', function(event) {
var newState = todoFunctions.deleteTodo(state, todo.id);
update(newState);
});
todoNode.appendChild(deleteButtonNode);
// add markTodo button
var markTodoButtonNode = document.createElement("button");
markTodoButtonNode.setAttribute("class", "mark-button");
markTodoButtonNode.setAttribute("aria-label", "complete button");
if (todo.done == false) {
markTodoButtonNode.innerText = "✔";
markTodoButtonNode.setAttribute("style", "background-color: grey; color:white;");
todoNode.setAttribute('style', 'opacity: 1;');
}
if (todo.done === true) {
markTodoButtonNode.innerText = "✔";
markTodoButtonNode.setAttribute("style", "background-color: #3CB371;");
todoNode.setAttribute('style', 'opacity: 0.5;');
todoText.setAttribute("style", "text-decoration: line-through;")
}
markTodoButtonNode.addEventListener("click", function(event) {
var newState = todoFunctions.markTodo(state, todo.id);
update(newState);
});
todoNode.appendChild(markTodoButtonNode);
// add classes for css
return todoNode;
};
// bind create todo form
if (addTodoForm) {
addTodoForm.addEventListener('submit', function(event) {
// https://developer.mozilla.org/en-US/docs/Web/Events/submit
// what does event.preventDefault do?
// what is inside event.target?
event.preventDefault();
var description = event.target.querySelector("input").value;
//var description = '?' // event.target ....
// hint: todoFunctions.addTodo
var newState = todoFunctions.addTodo(state, description); // ?? change this!
update(newState);
document.getElementById("itemToAdd").value = "";
});
}
// you should not need to change this function
var update = function(newState) {
state = newState;
renderState(state);
};
// you do not need to change this function
var renderState = function(state) {
var todoListNode = document.createElement('ul');
state.forEach(function(todo) {
todoListNode.appendChild(createTodoNode(todo));
});
// you may want to add a class for css
container.replaceChild(todoListNode, container.firstChild);
};
if (container) renderState(state);
})();