]>
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 = { |
6d01c406 | 17 | addTask: function (timestamp: string, description: string): Element { |
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); |
ef7ebad4 SW |
23 | document.getElementById("tasks")!.appendChild(task); |
24 | task.focus(); | |
6d01c406 | 25 | return task; |
13c97b99 | 26 | }, |
974848d3 | 27 | |
412e3663 SW |
28 | destroyTask: function (createTimestamp: string) { |
29 | const task = this.getTask(createTimestamp); | |
30 | if (task) { | |
31 | task.parentElement!.removeChild(task); | |
32 | } | |
13c97b99 | 33 | }, |
974848d3 | 34 | |
68a72fde SW |
35 | getPriority: function (task: Element): number { |
36 | if (task.hasAttribute("data-priority")) { | |
37 | return parseFloat(task.getAttribute("data-priority")!); | |
38 | } | |
39 | return parseFloat(task.getAttribute("data-created")!); | |
40 | }, | |
41 | ||
799f4e89 SW |
42 | getTask: function (createTimestamp: string) { |
43 | for (const task of document.getElementsByClassName("task")) { | |
44 | if (task.getAttribute("data-created") === createTimestamp) { | |
45 | return task; | |
46 | } | |
47 | } | |
48 | }, | |
49 | ||
68a72fde SW |
50 | setPriority: function (createTimestamp: string, priority: number) { |
51 | const target = this.getTask(createTimestamp); | |
52 | if (!target) return; | |
53 | target.setAttribute("data-priority", `${priority}`); | |
54 | for (const task of document.getElementsByClassName("task")) { | |
55 | if (task !== target && this.getPriority(task) > priority) { | |
56 | task.parentElement!.insertBefore(target, task); | |
57 | target instanceof HTMLElement && target.focus(); | |
58 | return; | |
59 | } | |
60 | } | |
61 | document.getElementById("tasks")!.appendChild(target); | |
62 | target instanceof HTMLElement && target.focus(); | |
63 | }, | |
64 | ||
01f41859 SW |
65 | setState: function (stateTimestamp: string, createTimestamp: string, state: string) { |
66 | const task = this.getTask(createTimestamp); | |
67 | if (task) { | |
68 | task.setAttribute(`data-${state}`, stateTimestamp); | |
69 | if (task instanceof HTMLElement) { | |
70 | task.style.display = "none"; // Until view filtering | |
71 | } | |
72 | } | |
799f4e89 | 73 | }, |
13c97b99 | 74 | }; |
f1afad9b | 75 | |
d03daa19 | 76 | function Log(prefix: string = "vp-") { |
60a63831 SW |
77 | var next_log_index = 0; |
78 | return { | |
e88c099c | 79 | apply: function (entry: string) { |
60a63831 SW |
80 | const [timestamp, command, data] = splitN(entry, " ", 2); |
81 | if (command == "Create") { | |
6d01c406 | 82 | return Model.addTask(timestamp, data); |
60a63831 | 83 | } |
799f4e89 | 84 | if (command == "Destroy") { |
6d01c406 | 85 | return Model.destroyTask(data.split(" ", 1)[0]); |
799f4e89 | 86 | } |
01f41859 SW |
87 | if (command == "State") { |
88 | const [createTimestamp, state] = splitN(data, " ", 1); | |
6d01c406 | 89 | return Model.setState(timestamp, createTimestamp, state); |
01f41859 | 90 | } |
68a72fde SW |
91 | if (command == "Priority") { |
92 | const [createTimestamp, newPriority] = splitN(data, " ", 1); | |
6d01c406 | 93 | return Model.setPriority(createTimestamp, parseFloat(newPriority)); |
68a72fde | 94 | } |
60a63831 SW |
95 | }, |
96 | ||
e88c099c | 97 | record: function (entry: string) { |
d03daa19 | 98 | window.localStorage.setItem(`${prefix}${next_log_index++}`, entry); |
60a63831 SW |
99 | }, |
100 | ||
e88c099c SW |
101 | recordAndApply: function (entry: string) { |
102 | this.record(entry); | |
6d01c406 | 103 | return this.apply(entry); |
60a63831 SW |
104 | }, |
105 | ||
106 | replay: function () { | |
107 | while (true) { | |
d03daa19 | 108 | const entry = window.localStorage.getItem(`${prefix}${next_log_index}`); |
60a63831 SW |
109 | if (entry === null) { |
110 | break; | |
111 | } | |
e88c099c | 112 | this.apply(entry); |
60a63831 SW |
113 | next_log_index++; |
114 | } | |
115 | }, | |
116 | }; | |
d03daa19 SW |
117 | } |
118 | const log = Log(); | |
262705dd | 119 | |
e88c099c | 120 | const UI = { |
6d01c406 SW |
121 | addTask: function (description: string): Element { |
122 | return <Element>log.recordAndApply(`${Date.now()} Create ${description}`); | |
e88c099c | 123 | }, |
799f4e89 | 124 | destroyTask: function (createTimestamp: string) { |
6d01c406 | 125 | return log.recordAndApply(`${Date.now()} Destroy ${createTimestamp} ${Model.getTask(createTimestamp)?.textContent}`); |
799f4e89 | 126 | }, |
68a72fde | 127 | setPriority: function (createTimestamp: string, priority: number) { |
6d01c406 | 128 | return log.recordAndApply(`${Date.now()} Priority ${createTimestamp} ${priority}`); |
68a72fde | 129 | }, |
01f41859 | 130 | setState: function (createTimestamp: string, state: string) { |
6d01c406 | 131 | return log.recordAndApply(`${Date.now()} State ${createTimestamp} ${state}`); |
01f41859 | 132 | }, |
e88c099c SW |
133 | }; |
134 | ||
caa93fd1 | 135 | const BrowserUI = { |
a26b1f4b SW |
136 | addTask: function () { |
137 | const input = <HTMLInputElement>document.getElementById("taskName"); | |
138 | if (input.value) { | |
6d01c406 | 139 | const task = UI.addTask(input.value); |
a26b1f4b | 140 | input.value = ""; |
caa93fd1 | 141 | } |
caa93fd1 | 142 | }, |
09657615 | 143 | |
799f4e89 SW |
144 | destroyTask: function () { |
145 | const createTimestamp = document.activeElement?.getAttribute("data-created"); | |
61535898 SW |
146 | this.moveCursor(1) || this.moveCursor(-1); |
147 | return UI.destroyTask(createTimestamp!); | |
799f4e89 | 148 | }, |
caa93fd1 | 149 | |
09657615 SW |
150 | focusTaskNameInput: function (event: any) { |
151 | document.getElementById("taskName")!.focus(); | |
152 | event.preventDefault(); | |
153 | }, | |
154 | ||
23be73e3 SW |
155 | visibleTaskAtOffset(task: Element, offset: number): Element { |
156 | var cursor: Element | null = task; | |
5fa4704c SW |
157 | var valid_cursor = cursor; |
158 | const increment = offset / Math.abs(offset); | |
159 | while (true) { | |
160 | cursor = increment > 0 ? cursor.nextElementSibling : cursor.previousElementSibling; | |
161 | if (!cursor || !(cursor instanceof HTMLElement)) break; | |
162 | if (cursor.style.display !== "none") { | |
163 | offset -= increment; | |
164 | valid_cursor = cursor; | |
165 | } | |
166 | if (Math.abs(offset) < 0.5) break; | |
09657615 | 167 | } |
23be73e3 SW |
168 | return valid_cursor; |
169 | }, | |
170 | ||
171 | moveCursor: function (offset: number): boolean { | |
172 | const active = document.activeElement; | |
173 | if (!active) return false; | |
174 | const dest = this.visibleTaskAtOffset(active, offset); | |
175 | if (dest !== active && dest instanceof HTMLElement) { | |
176 | dest.focus(); | |
09657615 SW |
177 | return true; |
178 | } | |
179 | return false; | |
180 | }, | |
01f41859 | 181 | |
68a72fde SW |
182 | moveTask: function (offset: number) { |
183 | const active = document.activeElement; | |
184 | if (!active) return; | |
185 | const dest = this.visibleTaskAtOffset(active, offset); | |
186 | if (dest === active) return; // Already extremal | |
187 | var onePastDest: Element | null = this.visibleTaskAtOffset(dest, offset / Math.abs(offset)); | |
188 | if (onePastDest == dest) onePastDest = null; // Will become extremal | |
189 | if (offset > 0) { | |
190 | this.setPriority(active, dest, onePastDest); | |
191 | } else { | |
192 | this.setPriority(active, onePastDest, dest); | |
193 | } | |
194 | }, | |
195 | ||
196 | // Change task's priority to be between other tasks a and b. | |
197 | setPriority: function (task: Element, a: Element | null, b: Element | null) { | |
198 | const aPriority = a === null ? 0 : Model.getPriority(a); | |
199 | const bPriority = b === null ? Date.now() : Model.getPriority(b); | |
200 | console.assert(aPriority < bPriority, aPriority, "<", bPriority); | |
201 | const span = bPriority - aPriority; | |
202 | const newPriority = aPriority + 0.1 * span + 0.8 * span * Math.random(); | |
203 | console.assert(aPriority < newPriority && newPriority < bPriority, aPriority, "<", newPriority, "<", bPriority); | |
204 | const newPriorityRounded = Math.round(newPriority); | |
205 | const okToRound = aPriority < newPriorityRounded && newPriorityRounded < bPriority; | |
206 | UI.setPriority(task.getAttribute("data-created")!, okToRound ? newPriorityRounded : newPriority); | |
207 | }, | |
208 | ||
01f41859 SW |
209 | setState: function (state: string) { |
210 | const createTimestamp = document.activeElement?.getAttribute("data-created"); | |
211 | this.moveCursor(1) || this.moveCursor(-1); | |
212 | return UI.setState(createTimestamp!, state); | |
213 | }, | |
09657615 | 214 | }; |
06ee32a1 | 215 | |
f1afad9b | 216 | function handleKey(event: any) { |
a26b1f4b SW |
217 | if (event.target.tagName === "INPUT") { |
218 | if (event.key == "Enter") return BrowserUI.addTask(); | |
219 | } else { | |
09657615 SW |
220 | if (event.key == "j") return BrowserUI.moveCursor(1); |
221 | if (event.key == "k") return BrowserUI.moveCursor(-1); | |
68a72fde SW |
222 | if (event.key == "J") return BrowserUI.moveTask(1); |
223 | if (event.key == "K") return BrowserUI.moveTask(-1); | |
01f41859 SW |
224 | if (event.key == "n") return BrowserUI.focusTaskNameInput(event); |
225 | if (event.key == "s") return BrowserUI.setState("someday-maybe"); | |
226 | if (event.key == "w") return BrowserUI.setState("waiting"); | |
227 | if (event.key == "d") return BrowserUI.setState("done"); | |
228 | if (event.key == "c") return BrowserUI.setState("cancelled"); | |
799f4e89 | 229 | if (event.key == "X") return BrowserUI.destroyTask(); |
f1afad9b SW |
230 | } |
231 | } | |
232 | ||
f1afad9b SW |
233 | function browserInit() { |
234 | document.body.addEventListener("keydown", handleKey, { capture: false }); | |
d03daa19 | 235 | log.replay(); |
f1afad9b | 236 | } |