-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathTodoItem.js
160 lines (134 loc) · 3.4 KB
/
TodoItem.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
import { AppDraggable } from './AppDraggable.js';
import { AppIcon } from './AppIcon.js';
/**
* @param {HTMLElement} el
*/
export function TodoItem(el) {
let item;
let editing = false;
let startEditing = false;
let saveOnBlur = true;
el.innerHTML = /* html */ `
<div class="checkbox">
<input type="checkbox" aria-label="Done">
</div>
<p class="label"></p>
<p class="form">
<input type="text" class="input use-focus-other" aria-label="Label">
<button class="app-button save" title="Save">
<i class="app-icon" data-id="check-16"></i>
</button>
</p>
`;
const checkboxEl = el.querySelector('.checkbox');
const labelEl = el.querySelector('.label');
const inputEl = el.querySelector('.input');
const saveEl = el.querySelector('.save');
AppDraggable(el, {
dropSelector: '.todo-list > .items',
});
el.querySelectorAll('.app-icon').forEach(AppIcon);
checkboxEl.addEventListener(
'touchstart',
() => {
saveOnBlur = false;
},
{ passive: true },
);
checkboxEl.addEventListener('mousedown', () => {
saveOnBlur = false;
});
checkboxEl.addEventListener('click', () => {
if (editing) save();
el.dispatchEvent(
new CustomEvent('checkTodoItem', {
detail: {
...item,
done: !item.done,
},
bubbles: true,
}),
);
});
labelEl.addEventListener('click', () => {
startEditing = true;
editing = true;
update();
});
inputEl.addEventListener('keyup', (e) => {
switch (e.keyCode) {
case 13: // Enter
save();
break;
case 27: // Escape
cancelEdit();
break;
}
});
inputEl.addEventListener('blur', () => {
if (saveOnBlur) save();
saveOnBlur = true;
});
inputEl.addEventListener('focusOther', () => {
if (editing) save();
});
saveEl.addEventListener('mousedown', () => {
saveOnBlur = false;
});
saveEl.addEventListener('click', save);
el.addEventListener('draggableStart', (e) => {
e.detail.data.item = item;
e.detail.data.key = item.id;
});
el.addEventListener('todoItem', (e) => {
item = e.detail;
update();
});
function save() {
const label = inputEl.value.trim();
if (label === '') {
// Deferred deletion prevents a bug at reconciliation in TodoList:
// Failed to execute 'removeChild' on 'Node': The node to be removed is
// no longer a child of this node. Perhaps it was moved in a 'blur'
// event handler?
requestAnimationFrame(() => {
el.dispatchEvent(
new CustomEvent('deleteTodoItem', {
detail: item,
bubbles: true,
}),
);
});
return;
}
el.dispatchEvent(
new CustomEvent('editTodoItem', {
detail: {
...item,
label,
},
bubbles: true,
}),
);
editing = false;
update();
}
function cancelEdit() {
saveOnBlur = false;
editing = false;
update();
}
function update() {
el.classList.toggle('-done', item.done);
checkboxEl.querySelector('input').checked = item.done;
labelEl.innerText = item.label;
el.classList.toggle('-editing', editing);
el.classList.toggle('_nodrag', editing);
if (editing && startEditing) {
inputEl.value = item.label;
inputEl.focus();
inputEl.select();
startEditing = false;
}
}
}