-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathTodoController.js
93 lines (81 loc) · 2 KB
/
TodoController.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
import { TodoLogic } from './TodoLogic.js';
import { toDataURL } from './util.js';
/**
* @param {HTMLElement} el
*/
export function TodoController(el) {
let todoData = TodoLogic.initTodoData();
let saveTimeout;
el.addEventListener('loadTodoData', load);
el.addEventListener('importTodoData', (e) => importTodoData(e.detail));
el.addEventListener('exportTodoData', exportTodoData);
for (const action of [
'addTodoItem',
'checkTodoItem',
'editTodoItem',
'moveTodoItem',
'deleteTodoItem',
'addCustomTodoList',
'editCustomTodoList',
'moveCustomTodoList',
'deleteCustomTodoList',
'seekDays',
'seekToToday',
'seekToDate',
'seekCustomTodoLists',
]) {
el.addEventListener(action, (e) => {
todoData = TodoLogic[action](todoData, e.detail);
update();
});
}
function update() {
save();
el.dispatchEvent(
new CustomEvent('todoData', {
detail: todoData,
bubbles: false,
}),
);
}
function load() {
try {
if (localStorage?.todo) {
todoData = TodoLogic.movePastTodoItems({
...todoData,
...JSON.parse(localStorage.todo),
});
}
} catch (err) {
// eslint-disable-next-line no-console
console.warn(err);
}
update();
}
function save() {
clearTimeout(saveTimeout);
saveTimeout = setTimeout(() => {
try {
localStorage.todo = JSON.stringify(todoData);
} catch (err) {
// eslint-disable-next-line no-console
console.warn(err);
}
}, 100);
}
function importTodoData(input) {
// TODO validate?
todoData = input;
update();
}
async function exportTodoData() {
const json = JSON.stringify(todoData, null, 2);
const href = await toDataURL(json);
const link = document.createElement('a');
link.setAttribute('download', 'todo.json');
link.setAttribute('href', href);
document.querySelector('body').appendChild(link);
link.click();
link.remove();
}
}