]>
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 | ||
27c67784 SW |
16 | // A clock that never goes backwards; monotonic. |
17 | function Clock() { | |
18 | var previousNow = Date.now(); | |
19 | return { | |
20 | now: function (): number { | |
21 | const now = Date.now(); | |
22 | if (now > previousNow) { | |
23 | previousNow = now; | |
24 | return now; | |
25 | } | |
26 | return ++previousNow; | |
27 | }, | |
28 | }; | |
29 | } | |
30 | const clock = Clock(); | |
31 | ||
13c97b99 | 32 | const Model = { |
6d01c406 | 33 | addTask: function (timestamp: string, description: string): Element { |
13c97b99 SW |
34 | const task = document.createElement("div"); |
35 | task.appendChild(document.createTextNode(description)); | |
799f4e89 | 36 | task.setAttribute("class", "task"); |
13c97b99 | 37 | task.setAttribute("tabindex", "0"); |
4101e1b1 | 38 | task.setAttribute("data-created", timestamp); |
682139fc | 39 | task.setAttribute("data-state", "todo"); |
ef7ebad4 | 40 | document.getElementById("tasks")!.appendChild(task); |
6d01c406 | 41 | return task; |
13c97b99 | 42 | }, |
974848d3 | 43 | |
7b574407 SW |
44 | edit: function (createTimestamp: string, newDescription: string): Element | null { |
45 | const target = this.getTask(createTimestamp); | |
46 | if (!target) return null; | |
47 | if (target.hasAttribute("data-description")) { | |
48 | // Oh no: An edit has arrived from a replica while a local edit is in progress. | |
49 | const input = target.children[0] as HTMLInputElement; | |
50 | if ( | |
51 | input.value === target.getAttribute("data-description") && | |
52 | input.selectionStart === 0 && | |
53 | input.selectionEnd === input.value.length | |
54 | ) { | |
55 | // No local changes have actually been made yet. Change the contents of the edit box! | |
56 | input.value = newDescription; | |
57 | input.select(); | |
58 | } else { | |
59 | // No great options. | |
60 | // Prefer not to interrupt the local user's edit. | |
61 | // The remote edit is mostly lost; this mostly becomes last-write-wins. | |
62 | target.setAttribute("data-description", newDescription); | |
63 | } | |
64 | } else { | |
65 | target.textContent = newDescription; | |
66 | } | |
67 | return target; | |
68 | }, | |
69 | ||
68a72fde SW |
70 | getPriority: function (task: Element): number { |
71 | if (task.hasAttribute("data-priority")) { | |
72 | return parseFloat(task.getAttribute("data-priority")!); | |
73 | } | |
74 | return parseFloat(task.getAttribute("data-created")!); | |
75 | }, | |
76 | ||
799f4e89 SW |
77 | getTask: function (createTimestamp: string) { |
78 | for (const task of document.getElementsByClassName("task")) { | |
79 | if (task.getAttribute("data-created") === createTimestamp) { | |
80 | return task; | |
81 | } | |
82 | } | |
83 | }, | |
84 | ||
43f3cc0c | 85 | setPriority: function (createTimestamp: string, priority: number): Element | null { |
68a72fde | 86 | const target = this.getTask(createTimestamp); |
43f3cc0c | 87 | if (!target) return null; |
68a72fde SW |
88 | target.setAttribute("data-priority", `${priority}`); |
89 | for (const task of document.getElementsByClassName("task")) { | |
90 | if (task !== target && this.getPriority(task) > priority) { | |
91 | task.parentElement!.insertBefore(target, task); | |
43f3cc0c | 92 | return target; |
68a72fde SW |
93 | } |
94 | } | |
95 | document.getElementById("tasks")!.appendChild(target); | |
43f3cc0c | 96 | return target; |
68a72fde SW |
97 | }, |
98 | ||
01f41859 SW |
99 | setState: function (stateTimestamp: string, createTimestamp: string, state: string) { |
100 | const task = this.getTask(createTimestamp); | |
101 | if (task) { | |
5350da9f | 102 | task.setAttribute("data-state", state); |
01f41859 | 103 | } |
799f4e89 | 104 | }, |
13c97b99 | 105 | }; |
f1afad9b | 106 | |
d03daa19 | 107 | function Log(prefix: string = "vp-") { |
60a63831 SW |
108 | var next_log_index = 0; |
109 | return { | |
e88c099c | 110 | apply: function (entry: string) { |
60a63831 SW |
111 | const [timestamp, command, data] = splitN(entry, " ", 2); |
112 | if (command == "Create") { | |
6d01c406 | 113 | return Model.addTask(timestamp, data); |
60a63831 | 114 | } |
7b574407 SW |
115 | if (command == "Edit") { |
116 | const [createTimestamp, description] = splitN(data, " ", 1); | |
117 | return Model.edit(createTimestamp, description); | |
118 | } | |
01f41859 SW |
119 | if (command == "State") { |
120 | const [createTimestamp, state] = splitN(data, " ", 1); | |
6d01c406 | 121 | return Model.setState(timestamp, createTimestamp, state); |
01f41859 | 122 | } |
68a72fde SW |
123 | if (command == "Priority") { |
124 | const [createTimestamp, newPriority] = splitN(data, " ", 1); | |
6d01c406 | 125 | return Model.setPriority(createTimestamp, parseFloat(newPriority)); |
68a72fde | 126 | } |
60a63831 SW |
127 | }, |
128 | ||
e88c099c | 129 | record: function (entry: string) { |
d03daa19 | 130 | window.localStorage.setItem(`${prefix}${next_log_index++}`, entry); |
60a63831 SW |
131 | }, |
132 | ||
e88c099c SW |
133 | recordAndApply: function (entry: string) { |
134 | this.record(entry); | |
6d01c406 | 135 | return this.apply(entry); |
60a63831 SW |
136 | }, |
137 | ||
138 | replay: function () { | |
139 | while (true) { | |
d03daa19 | 140 | const entry = window.localStorage.getItem(`${prefix}${next_log_index}`); |
60a63831 SW |
141 | if (entry === null) { |
142 | break; | |
143 | } | |
e88c099c | 144 | this.apply(entry); |
60a63831 SW |
145 | next_log_index++; |
146 | } | |
147 | }, | |
148 | }; | |
d03daa19 SW |
149 | } |
150 | const log = Log(); | |
262705dd | 151 | |
43f3cc0c SW |
152 | const undoLog: string[] = []; |
153 | ||
e88c099c | 154 | const UI = { |
6d01c406 | 155 | addTask: function (description: string): Element { |
27c67784 | 156 | const now = clock.now(); |
43f3cc0c SW |
157 | undoLog.push(`State ${now} deleted`); |
158 | return <Element>log.recordAndApply(`${now} Create ${description}`); | |
e88c099c | 159 | }, |
7b574407 SW |
160 | edit: function (createTimestamp: string, newDescription: string, oldDescription: string) { |
161 | undoLog.push(`Edit ${createTimestamp} ${oldDescription}`); | |
27c67784 | 162 | return log.recordAndApply(`${clock.now()} Edit ${createTimestamp} ${newDescription}`); |
7b574407 | 163 | }, |
43f3cc0c SW |
164 | setPriority: function (createTimestamp: string, newPriority: number, oldPriority: number) { |
165 | undoLog.push(`Priority ${createTimestamp} ${oldPriority}`); | |
27c67784 | 166 | return log.recordAndApply(`${clock.now()} Priority ${createTimestamp} ${newPriority}`); |
68a72fde | 167 | }, |
5350da9f SW |
168 | setState: function (createTimestamp: string, newState: string, oldState: string) { |
169 | undoLog.push(`State ${createTimestamp} ${oldState}`); | |
27c67784 | 170 | return log.recordAndApply(`${clock.now()} State ${createTimestamp} ${newState}`); |
01f41859 | 171 | }, |
43f3cc0c SW |
172 | undo: function () { |
173 | if (undoLog.length > 0) { | |
27c67784 | 174 | return log.recordAndApply(`${clock.now()} ${undoLog.pop()}`); |
43f3cc0c SW |
175 | } |
176 | }, | |
e88c099c SW |
177 | }; |
178 | ||
ada060d7 SW |
179 | function BrowserUI() { |
180 | return { | |
181 | addTask: function (event: KeyboardEvent) { | |
182 | const input = <HTMLInputElement>document.getElementById("taskName"); | |
183 | if (input.value) { | |
184 | const task = UI.addTask(input.value); | |
185 | if (task && task instanceof HTMLElement) task.focus(); | |
186 | input.value = ""; | |
187 | if (event.getModifierState("Control")) { | |
188 | this.setPriority(task, null, document.getElementsByClassName("task")[0]); | |
189 | } | |
bc7996fe | 190 | } |
ada060d7 | 191 | }, |
09657615 | 192 | |
ada060d7 SW |
193 | beginEdit: function (event: Event) { |
194 | const task = document.activeElement; | |
195 | if (!task) return; | |
196 | const input = document.createElement("input"); | |
197 | const oldDescription = task.textContent!; | |
198 | task.setAttribute("data-description", oldDescription); | |
199 | input.value = oldDescription; | |
200 | input.addEventListener("blur", this.completeEdit, { once: true }); | |
201 | task.textContent = ""; | |
202 | task.appendChild(input); | |
203 | input.focus(); | |
204 | input.select(); | |
205 | event.preventDefault(); | |
206 | }, | |
7b574407 | 207 | |
ada060d7 SW |
208 | completeEdit: function (event: Event) { |
209 | const input = event.target as HTMLInputElement; | |
210 | const task = input.parentElement!; | |
211 | const oldDescription = task.getAttribute("data-description")!; | |
212 | const newDescription = input.value; | |
213 | input.removeEventListener("blur", this.completeEdit); | |
214 | task.removeChild(task.children[0]); | |
215 | task.removeAttribute("data-description"); | |
216 | task.focus(); | |
217 | if (newDescription === oldDescription) { | |
218 | task.textContent = oldDescription; | |
219 | } else { | |
220 | UI.edit(task.getAttribute("data-created")!, newDescription, oldDescription); | |
221 | } | |
222 | }, | |
7b574407 | 223 | |
ada060d7 SW |
224 | firstVisibleTask: function () { |
225 | for (const task of document.getElementsByClassName("task")) { | |
226 | if (task instanceof HTMLElement && task.getAttribute("data-state")! === "todo") { | |
227 | return task; | |
228 | } | |
65a7510d | 229 | } |
ada060d7 | 230 | }, |
caa93fd1 | 231 | |
ada060d7 SW |
232 | focusTaskNameInput: function (event: Event) { |
233 | document.getElementById("taskName")!.focus(); | |
234 | event.preventDefault(); | |
235 | }, | |
09657615 | 236 | |
ada060d7 SW |
237 | visibleTaskAtOffset(task: Element, offset: number): Element { |
238 | var cursor: Element | null = task; | |
239 | var valid_cursor = cursor; | |
240 | const increment = offset / Math.abs(offset); | |
241 | while (true) { | |
242 | cursor = increment > 0 ? cursor.nextElementSibling : cursor.previousElementSibling; | |
243 | if (!cursor || !(cursor instanceof HTMLElement)) break; | |
244 | if (cursor.getAttribute("data-state")! === "todo") { | |
245 | offset -= increment; | |
246 | valid_cursor = cursor; | |
247 | } | |
248 | if (Math.abs(offset) < 0.5) break; | |
5fa4704c | 249 | } |
ada060d7 SW |
250 | return valid_cursor; |
251 | }, | |
23be73e3 | 252 | |
ada060d7 SW |
253 | moveCursor: function (offset: number): boolean { |
254 | const active = document.activeElement; | |
255 | if (!active) return false; | |
256 | const dest = this.visibleTaskAtOffset(active, offset); | |
257 | if (dest !== active && dest instanceof HTMLElement) { | |
258 | dest.focus(); | |
259 | return true; | |
260 | } | |
261 | return false; | |
262 | }, | |
01f41859 | 263 | |
ada060d7 SW |
264 | moveTask: function (offset: number) { |
265 | const active = document.activeElement; | |
266 | if (!active) return; | |
267 | const dest = this.visibleTaskAtOffset(active, offset); | |
268 | if (dest === active) return; // Already extremal | |
269 | var onePastDest: Element | null = this.visibleTaskAtOffset(dest, offset / Math.abs(offset)); | |
270 | if (onePastDest == dest) onePastDest = null; // Will become extremal | |
271 | if (offset > 0) { | |
272 | this.setPriority(active, dest, onePastDest); | |
273 | } else { | |
274 | this.setPriority(active, onePastDest, dest); | |
275 | } | |
276 | }, | |
68a72fde | 277 | |
ada060d7 SW |
278 | // Change task's priority to be between other tasks a and b. |
279 | setPriority: function (task: Element, a: Element | null, b: Element | null) { | |
280 | const aPriority = a === null ? 0 : Model.getPriority(a); | |
281 | const bPriority = b === null ? clock.now() : Model.getPriority(b); | |
282 | console.assert(aPriority < bPriority, aPriority, "<", bPriority); | |
283 | const span = bPriority - aPriority; | |
284 | const newPriority = aPriority + 0.1 * span + 0.8 * span * Math.random(); | |
285 | console.assert(aPriority < newPriority && newPriority < bPriority, aPriority, "<", newPriority, "<", bPriority); | |
286 | const newPriorityRounded = Math.round(newPriority); | |
287 | const okToRound = aPriority < newPriorityRounded && newPriorityRounded < bPriority; | |
288 | UI.setPriority(task.getAttribute("data-created")!, okToRound ? newPriorityRounded : newPriority, Model.getPriority(task)); | |
289 | task instanceof HTMLElement && task.focus(); | |
290 | }, | |
68a72fde | 291 | |
ada060d7 SW |
292 | setState: function (newState: string) { |
293 | const task = document.activeElement; | |
294 | if (!task) return; | |
295 | const oldState = task.getAttribute("data-state")!; | |
296 | if (newState === oldState) return; | |
297 | const createTimestamp = task.getAttribute("data-created")!; | |
298 | this.moveCursor(1) || this.moveCursor(-1); | |
299 | return UI.setState(createTimestamp, newState, oldState); | |
300 | }, | |
43f3cc0c | 301 | |
ada060d7 SW |
302 | undo: function () { |
303 | const ret = UI.undo(); | |
304 | if (ret && ret instanceof HTMLElement) ret.focus(); | |
305 | }, | |
306 | }; | |
307 | } | |
308 | const browserUI = BrowserUI(); | |
06ee32a1 | 309 | |
e94e9f27 SW |
310 | enum InputState { |
311 | Command, | |
854992ec | 312 | View, |
e94e9f27 SW |
313 | } |
314 | var inputState = InputState.Command; | |
315 | ||
f1afad9b | 316 | function handleKey(event: any) { |
a26b1f4b | 317 | if (event.target.tagName === "INPUT") { |
7b574407 | 318 | if (event.target.id === "taskName") { |
ada060d7 | 319 | if (event.key == "Enter") return browserUI.addTask(event); |
7b574407 | 320 | } else { |
ada060d7 | 321 | if (event.key == "Enter") return browserUI.completeEdit(event); |
7b574407 | 322 | } |
a26b1f4b | 323 | } else { |
e94e9f27 | 324 | if (inputState === InputState.Command) { |
ada060d7 SW |
325 | if (event.key == "j") return browserUI.moveCursor(1); |
326 | if (event.key == "k") return browserUI.moveCursor(-1); | |
327 | if (event.key == "J") return browserUI.moveTask(1); | |
328 | if (event.key == "K") return browserUI.moveTask(-1); | |
329 | if (event.key == "n") return browserUI.focusTaskNameInput(event); | |
330 | if (event.key == "s") return browserUI.setState("someday-maybe"); | |
331 | if (event.key == "w") return browserUI.setState("waiting"); | |
332 | if (event.key == "d") return browserUI.setState("done"); | |
333 | if (event.key == "c") return browserUI.setState("cancelled"); | |
334 | if (event.key == "t") return browserUI.setState("todo"); | |
335 | if (event.key == "X") return browserUI.setState("deleted"); | |
336 | if (event.key == "u") return browserUI.undo(); | |
337 | if (event.key == "e") return browserUI.beginEdit(event); | |
854992ec SW |
338 | if (event.key == "v") return (inputState = InputState.View); |
339 | } else if (inputState === InputState.View) { | |
340 | return (inputState = InputState.Command); | |
e94e9f27 | 341 | } |
f1afad9b SW |
342 | } |
343 | } | |
344 | ||
f1afad9b SW |
345 | function browserInit() { |
346 | document.body.addEventListener("keydown", handleKey, { capture: false }); | |
d03daa19 | 347 | log.replay(); |
ada060d7 | 348 | browserUI.firstVisibleTask()?.focus(); |
f1afad9b | 349 | } |