-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdom.js
97 lines (85 loc) · 2.95 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
// 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 no
//de where we will keep our todo
var container = document.getElementById('todo-container');
var addTodoForm = document.getElementById('add-todo');
var state = [ ];
// This function takes a todo, it returns the DOM node representing that todo
var createTodoNode = function(todo) {
var todoNode = document.createElement('li');
// this adds a mark checkbox
var markButtonNode = document.createElement('input');
markButtonNode.type = "checkbox";
todoNode.append(markButtonNode);
markButtonNode.checked = todo.done;
if (markButtonNode.checked) {
todoNode.style.backgroundColor = "#006400";
} else {
todoNode.style.backgroundColor = "#FC913A";
}
markButtonNode.addEventListener('click', function(event) {
var newState = todoFunctions.markTodo(state, todo.id);
update(newState);
});
// add span holding description
var span = document.createElement('span');
span.classList.add("list__description");
span.textContent = todo.description;
if (markButtonNode.checked) {
span.style.textDecoration = "line-through";
span.style.fontStyle = "italic";
span.style.color = "white";
} else {
span.style.textDecoration = "none";
span.style.fontStyle = "normal";
span.style.color = "black";
}
todoNode.appendChild(span);
// this adds the delete button
var deleteButtonNode = document.createElement('button');
deleteButtonNode.textContent = "Delete";
deleteButtonNode.addEventListener('click', function(event) {
var newState = todoFunctions.deleteTodo(state, todo.id);
var audio = new Audio('./sounds/trash.wav');
audio.play();
update(newState);
});
todoNode.appendChild(deleteButtonNode);
return todoNode;
};
// bind create todo form
if (addTodoForm) {
addTodoForm.addEventListener('submit', function(event) {
event.preventDefault();
var toDoName = document.getElementsByName('description')[0].value;
var newTodoItem = {
description: toDoName,
done: false
}
// event.target ....
var newState = todoFunctions.addTodo(state, newTodoItem);
update(newState);
colorCounter++;
var audio = new Audio('./sounds/ding.wav');
audio.play();
});
}
// 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);
})();