]>
Commit | Line | Data |
---|---|---|
121d9948 SW |
1 | // Typescript doesn't know about MAX_SAFE_INTEGER?? This was supposed to be |
2 | // fixed in typescript 2.0.1 in 2016, but is not working for me in typescript | |
3 | // 4.2.4 in 2022. :( https://github.com/microsoft/TypeScript/issues/9937 | |
4 | //const MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER; | |
5 | const MAX_SAFE_INTEGER = 9007199254740991; | |
6 | ||
7 | // A sane split that splits N *times*, leaving the last chunk unsplit. | |
8 | function splitN(str: string, delimiter: string, limit: number = MAX_SAFE_INTEGER): string[] { | |
9 | if (limit < 1) { | |
10 | return [str]; | |
11 | } | |
12 | const at = str.indexOf(delimiter); | |
13 | return at === -1 ? [str] : [str.substring(0, at)].concat(splitN(str.substring(at + delimiter.length), delimiter, limit - 1)); | |
14 | } | |
15 | ||
13c97b99 | 16 | const Model = { |
4101e1b1 | 17 | createTask: function (timestamp: string, description: string) { |
13c97b99 SW |
18 | const task = document.createElement("div"); |
19 | task.appendChild(document.createTextNode(description)); | |
799f4e89 | 20 | task.setAttribute("class", "task"); |
13c97b99 | 21 | task.setAttribute("tabindex", "0"); |
4101e1b1 | 22 | task.setAttribute("data-created", timestamp); |
13c97b99 SW |
23 | return task; |
24 | }, | |
974848d3 | 25 | |
4101e1b1 SW |
26 | addTask: function (timestamp: string, description: string) { |
27 | document.body.appendChild(this.createTask(timestamp, description)).focus(); | |
13c97b99 | 28 | }, |
974848d3 | 29 | |
799f4e89 SW |
30 | getTask: function (createTimestamp: string) { |
31 | for (const task of document.getElementsByClassName("task")) { | |
32 | if (task.getAttribute("data-created") === createTimestamp) { | |
33 | return task; | |
34 | } | |
35 | } | |
36 | }, | |
37 | ||
38 | destroyTask: function (createTimestamp: string) { | |
39 | const task = this.getTask(createTimestamp); | |
40 | task!.parentElement!.removeChild(task!); | |
41 | }, | |
42 | ||
7523dc89 | 43 | moveCursor: function (offset: number): boolean { |
13c97b99 SW |
44 | var active = document.activeElement; |
45 | if (offset === 1 && active) { | |
46 | active = active.nextElementSibling; | |
47 | } | |
48 | if (offset === -1 && active) { | |
49 | active = active.previousElementSibling; | |
50 | } | |
7523dc89 SW |
51 | if (active && active instanceof HTMLElement) { |
52 | active.focus(); | |
53 | return true; | |
54 | } | |
55 | return false; | |
13c97b99 SW |
56 | }, |
57 | }; | |
f1afad9b | 58 | |
60a63831 SW |
59 | const Log = (function () { |
60 | var next_log_index = 0; | |
61 | return { | |
e88c099c | 62 | apply: function (entry: string) { |
60a63831 SW |
63 | const [timestamp, command, data] = splitN(entry, " ", 2); |
64 | if (command == "Create") { | |
4101e1b1 | 65 | Model.addTask(timestamp, data); |
60a63831 | 66 | } |
799f4e89 SW |
67 | if (command == "Destroy") { |
68 | Model.destroyTask(data.split(" ", 1)[0]); | |
69 | } | |
60a63831 SW |
70 | }, |
71 | ||
e88c099c | 72 | record: function (entry: string) { |
60a63831 SW |
73 | window.localStorage.setItem(`${next_log_index++}`, entry); |
74 | }, | |
75 | ||
e88c099c SW |
76 | recordAndApply: function (entry: string) { |
77 | this.record(entry); | |
78 | this.apply(entry); | |
60a63831 SW |
79 | }, |
80 | ||
81 | replay: function () { | |
82 | while (true) { | |
83 | const entry = window.localStorage.getItem(`${next_log_index}`); | |
84 | if (entry === null) { | |
85 | break; | |
86 | } | |
e88c099c | 87 | this.apply(entry); |
60a63831 SW |
88 | next_log_index++; |
89 | } | |
90 | }, | |
91 | }; | |
92 | })(); | |
262705dd | 93 | |
e88c099c SW |
94 | const UI = { |
95 | addTask: function (description: string) { | |
96 | Log.recordAndApply(`${Date.now()} Create ${description}`); | |
97 | }, | |
799f4e89 SW |
98 | destroyTask: function (createTimestamp: string) { |
99 | Log.recordAndApply(`${Date.now()} Destroy ${createTimestamp} ${Model.getTask(createTimestamp)?.textContent}`); | |
100 | }, | |
e88c099c SW |
101 | }; |
102 | ||
caa93fd1 SW |
103 | const BrowserUI = { |
104 | addTask: function (form: any) { | |
105 | if (form.taskName.value) { | |
106 | UI.addTask(form.taskName.value); | |
107 | form.taskName.value = ""; | |
108 | } | |
109 | return false; | |
110 | }, | |
799f4e89 SW |
111 | destroyTask: function () { |
112 | const createTimestamp = document.activeElement?.getAttribute("data-created"); | |
113 | return createTimestamp && UI.destroyTask(createTimestamp); | |
114 | }, | |
caa93fd1 SW |
115 | }; |
116 | ||
06ee32a1 SW |
117 | function focusTaskNameInput(event: any) { |
118 | document.getElementById("taskName")!.focus(); | |
119 | event.preventDefault(); | |
120 | } | |
121 | ||
f1afad9b SW |
122 | function handleKey(event: any) { |
123 | if (event.target.tagName !== "INPUT") { | |
06ee32a1 SW |
124 | if (event.key == "j") return Model.moveCursor(1); |
125 | if (event.key == "k") return Model.moveCursor(-1); | |
126 | if (event.key == "c") return focusTaskNameInput(event); | |
799f4e89 | 127 | if (event.key == "X") return BrowserUI.destroyTask(); |
f1afad9b SW |
128 | } |
129 | } | |
130 | ||
f1afad9b SW |
131 | function browserInit() { |
132 | document.body.addEventListener("keydown", handleKey, { capture: false }); | |
60a63831 | 133 | Log.replay(); |
f1afad9b | 134 | } |