]>
Commit | Line | Data |
---|---|---|
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 | ||
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 | ||
32 | // Returns a promise for a hue based on a hash of the string | |
33 | function hashHue(str: string) { | |
34 | // Using crypto for this is overkill | |
35 | return crypto.subtle.digest("SHA-256", new TextEncoder().encode(str)).then((buf) => (new Uint16Array(buf)[0] * 360) / 2 ** 16); | |
36 | } | |
37 | ||
38 | const Model = { | |
39 | addTask: function (timestamp: string, description: string): Element { | |
40 | const task = document.createElement("div"); | |
41 | const desc = document.createElement("span"); | |
42 | desc.textContent = description; | |
43 | desc.classList.add("desc"); | |
44 | task.appendChild(desc); | |
45 | task.classList.add("task"); | |
46 | task.setAttribute("tabindex", "0"); | |
47 | task.setAttribute("data-created", timestamp); | |
48 | task.setAttribute("data-state", "todo"); | |
49 | const tasks = document.getElementById("tasks")!; | |
50 | tasks.insertBefore(task, tasks.firstElementChild); | |
51 | return task; | |
52 | }, | |
53 | ||
54 | addTag: function (createTimestamp: string, tagName: string): Element | null { | |
55 | const task = this.getTask(createTimestamp); | |
56 | if (!task) return null; | |
57 | const existingTag = this.hasTag(task, tagName); | |
58 | if (existingTag) return existingTag; | |
59 | const tag = document.createElement("span"); | |
60 | tag.appendChild(document.createTextNode(tagName)); | |
61 | tag.classList.add("tag"); | |
62 | tag.setAttribute("tabindex", "0"); | |
63 | hashHue(tagName).then((hue) => (tag.style.backgroundColor = `hsl(${hue},90%,45%)`)); | |
64 | for (const child of task.getElementsByClassName("tag")) { | |
65 | if (tagName > child.textContent!) { | |
66 | task.insertBefore(tag, child); | |
67 | return tag; | |
68 | } | |
69 | } | |
70 | task.insertBefore(tag, task.getElementsByClassName("desc")[0]!); | |
71 | return tag; | |
72 | }, | |
73 | ||
74 | edit: function (createTimestamp: string, newDescription: string): Element | null { | |
75 | const target = this.getTask(createTimestamp); | |
76 | if (!target) return null; | |
77 | if (target.hasAttribute("data-description")) { | |
78 | // Oh no: An edit has arrived from a replica while a local edit is in progress. | |
79 | const input = target.getElementsByTagName("input")[0]!; | |
80 | if ( | |
81 | input.value === target.getAttribute("data-description") && | |
82 | input.selectionStart === input.value.length && | |
83 | input.selectionEnd === input.value.length | |
84 | ) { | |
85 | // No local changes have actually been made yet. Change the contents of the edit box! | |
86 | input.value = newDescription; | |
87 | } else { | |
88 | // No great options. | |
89 | // Prefer not to interrupt the local user's edit. | |
90 | // The remote edit is mostly lost; this mostly becomes last-write-wins. | |
91 | target.setAttribute("data-description", newDescription); | |
92 | } | |
93 | } else { | |
94 | target.getElementsByClassName("desc")[0].textContent = newDescription; | |
95 | } | |
96 | return target; | |
97 | }, | |
98 | ||
99 | hasTag: function (task: Element, tag: string): Element | null { | |
100 | for (const child of task.getElementsByClassName("tag")) { | |
101 | if (child.textContent === tag) { | |
102 | return child; | |
103 | } | |
104 | } | |
105 | return null; | |
106 | }, | |
107 | ||
108 | getPriority: function (task: Element): number { | |
109 | if (task.hasAttribute("data-priority")) { | |
110 | return parseFloat(task.getAttribute("data-priority")!); | |
111 | } | |
112 | return parseFloat(task.getAttribute("data-created")!); | |
113 | }, | |
114 | ||
115 | getTask: function (createTimestamp: string) { | |
116 | for (const task of document.getElementsByClassName("task")) { | |
117 | if (task.getAttribute("data-created") === createTimestamp) { | |
118 | return task; | |
119 | } | |
120 | } | |
121 | }, | |
122 | ||
123 | removeTag: function (createTimestamp: string, tagName: string) { | |
124 | const task = this.getTask(createTimestamp); | |
125 | if (!task) return null; | |
126 | const tag = this.hasTag(task, tagName); | |
127 | if (!tag) return; | |
128 | task.removeChild(tag); | |
129 | if (task instanceof HTMLElement) task.focus(); | |
130 | }, | |
131 | ||
132 | setPriority: function (createTimestamp: string, priority: number): Element | null { | |
133 | const target = this.getTask(createTimestamp); | |
134 | if (!target) return null; | |
135 | target.setAttribute("data-priority", `${priority}`); | |
136 | for (const task of document.getElementsByClassName("task")) { | |
137 | if (task !== target && this.getPriority(task) < priority) { | |
138 | task.parentElement!.insertBefore(target, task); | |
139 | return target; | |
140 | } | |
141 | } | |
142 | document.getElementById("tasks")!.appendChild(target); | |
143 | return target; | |
144 | }, | |
145 | ||
146 | setState: function (stateTimestamp: string, createTimestamp: string, state: string) { | |
147 | const task = this.getTask(createTimestamp); | |
148 | if (!task) return; | |
149 | task.setAttribute("data-state", state); | |
150 | var date = task.getElementsByClassName("statedate")[0]; | |
151 | if (state === "todo") { | |
152 | task.removeChild(date); | |
153 | return; | |
154 | } | |
155 | if (!date) { | |
156 | date = document.createElement("span"); | |
157 | date.classList.add("statedate"); | |
158 | task.insertBefore(date, task.firstChild); | |
159 | } | |
160 | const d = new Date(parseInt(stateTimestamp)); | |
161 | date.textContent = `${d.getFullYear()}-${`${d.getMonth() + 1}`.padStart(2, "0")}-${`${d.getDate()}`.padStart(2, "0")}`; | |
162 | }, | |
163 | }; | |
164 | ||
165 | function Log(prefix: string = "vp-") { | |
166 | var next_log_index = 0; | |
167 | return { | |
168 | apply: function (entry: string) { | |
169 | const [timestamp, command, data] = splitN(entry, " ", 2); | |
170 | if (command == "Create") { | |
171 | return Model.addTask(timestamp, data); | |
172 | } | |
173 | if (command == "Edit") { | |
174 | const [createTimestamp, description] = splitN(data, " ", 1); | |
175 | return Model.edit(createTimestamp, description); | |
176 | } | |
177 | if (command == "Priority") { | |
178 | const [createTimestamp, newPriority] = splitN(data, " ", 1); | |
179 | return Model.setPriority(createTimestamp, parseFloat(newPriority)); | |
180 | } | |
181 | if (command == "State") { | |
182 | const [createTimestamp, state] = splitN(data, " ", 1); | |
183 | return Model.setState(timestamp, createTimestamp, state); | |
184 | } | |
185 | if (command == "Tag") { | |
186 | const [createTimestamp, tag] = splitN(data, " ", 1); | |
187 | return Model.addTag(createTimestamp, tag); | |
188 | } | |
189 | if (command == "Untag") { | |
190 | const [createTimestamp, tag] = splitN(data, " ", 1); | |
191 | return Model.removeTag(createTimestamp, tag); | |
192 | } | |
193 | }, | |
194 | ||
195 | record: function (entry: string) { | |
196 | window.localStorage.setItem(`${prefix}${next_log_index++}`, entry); | |
197 | }, | |
198 | ||
199 | recordAndApply: function (entry: string) { | |
200 | this.record(entry); | |
201 | return this.apply(entry); | |
202 | }, | |
203 | ||
204 | replay: function () { | |
205 | while (true) { | |
206 | const entry = window.localStorage.getItem(`${prefix}${next_log_index}`); | |
207 | if (entry === null) { | |
208 | break; | |
209 | } | |
210 | this.apply(entry); | |
211 | next_log_index++; | |
212 | } | |
213 | }, | |
214 | }; | |
215 | } | |
216 | const log = Log(); | |
217 | ||
218 | function UI() { | |
219 | const undoLog: string[][] = []; | |
220 | const redoLog: string[][] = []; | |
221 | function perform(forward: string, reverse: string) { | |
222 | undoLog.push([reverse, forward]); | |
223 | return log.recordAndApply(`${clock.now()} ${forward}`); | |
224 | } | |
225 | return { | |
226 | addTask: function (description: string): Element { | |
227 | const now = clock.now(); | |
228 | undoLog.push([`State ${now} deleted`, `State ${now} todo`]); | |
229 | return <Element>log.recordAndApply(`${now} Create ${description}`); | |
230 | }, | |
231 | addTag: function (createTimestamp: string, tag: string) { | |
232 | return perform(`Tag ${createTimestamp} ${tag}`, `Untag ${createTimestamp} ${tag}`); | |
233 | }, | |
234 | edit: function (createTimestamp: string, newDescription: string, oldDescription: string) { | |
235 | return perform(`Edit ${createTimestamp} ${newDescription}`, `Edit ${createTimestamp} ${oldDescription}`); | |
236 | }, | |
237 | removeTag: function (createTimestamp: string, tag: string) { | |
238 | return perform(`Untag ${createTimestamp} ${tag}`, `Tag ${createTimestamp} ${tag}`); | |
239 | }, | |
240 | setPriority: function (createTimestamp: string, newPriority: number, oldPriority: number) { | |
241 | return perform(`Priority ${createTimestamp} ${newPriority}`, `Priority ${createTimestamp} ${oldPriority}`); | |
242 | }, | |
243 | setState: function (createTimestamp: string, newState: string, oldState: string) { | |
244 | return perform(`State ${createTimestamp} ${newState}`, `State ${createTimestamp} ${oldState}`); | |
245 | }, | |
246 | undo: function () { | |
247 | const entry = undoLog.pop(); | |
248 | if (entry) { | |
249 | redoLog.push(entry); | |
250 | return log.recordAndApply(`${clock.now()} ${entry[0]}`); | |
251 | } | |
252 | }, | |
253 | redo: function () { | |
254 | const entry = redoLog.pop(); | |
255 | if (entry) { | |
256 | undoLog.push(entry); | |
257 | return log.recordAndApply(`${clock.now()} ${entry[1]}`); | |
258 | } | |
259 | }, | |
260 | }; | |
261 | } | |
262 | const ui = UI(); | |
263 | ||
264 | enum CommitOrAbort { | |
265 | Commit, | |
266 | Abort, | |
267 | } | |
268 | ||
269 | function BrowserUI() { | |
270 | const viewColors: { [key: string]: string } = { | |
271 | all: "Gold", | |
272 | cancelled: "Red", | |
273 | deleted: "Black", | |
274 | done: "LawnGreen", | |
275 | "someday-maybe": "DeepSkyBlue", | |
276 | todo: "White", | |
277 | waiting: "MediumOrchid", | |
278 | }; | |
279 | var currentViewState = "todo"; | |
280 | var taskFocusedBeforeJumpingToInput: HTMLElement | null = null; | |
281 | var lastTagNameEntered = ""; | |
282 | return { | |
283 | addTask: function (event: KeyboardEvent) { | |
284 | const input = <HTMLInputElement>document.getElementById("taskName"); | |
285 | if (input.value.match(/^ *$/)) return; | |
286 | const task = ui.addTask(input.value); | |
287 | if (currentViewState === "todo" || currentViewState === "all") { | |
288 | task instanceof HTMLElement && task.focus(); | |
289 | } else if (this.returnFocusAfterInput()) { | |
290 | } else { | |
291 | this.firstVisibleTask()?.focus(); | |
292 | } | |
293 | input.value = ""; | |
294 | if (event.getModifierState("Control")) { | |
295 | this.makeBottomPriority(task); | |
296 | } | |
297 | }, | |
298 | ||
299 | beginEdit: function (event: Event) { | |
300 | const task = this.currentTask(); | |
301 | if (!task) return; | |
302 | const input = document.createElement("input"); | |
303 | const desc = task.getElementsByClassName("desc")[0]; | |
304 | const oldDescription = desc.textContent!; | |
305 | task.setAttribute("data-description", oldDescription); | |
306 | input.value = oldDescription; | |
307 | input.addEventListener("blur", this.completeEdit, { once: true }); | |
308 | desc.textContent = ""; | |
309 | task.insertBefore(input, task.firstChild); | |
310 | input.focus(); | |
311 | event.preventDefault(); | |
312 | }, | |
313 | ||
314 | beginTagEdit: function (event: Event) { | |
315 | const task = this.currentTask(); | |
316 | if (!task) return; | |
317 | const input = document.createElement("input"); | |
318 | input.classList.add("tag"); | |
319 | input.addEventListener("blur", this.completeTagEdit, { once: true }); | |
320 | input.value = lastTagNameEntered; | |
321 | task.appendChild(input); | |
322 | input.focus(); | |
323 | input.select(); | |
324 | event.preventDefault(); | |
325 | }, | |
326 | ||
327 | completeEdit: function (event: Event, resolution: CommitOrAbort = CommitOrAbort.Commit) { | |
328 | const input = event.target as HTMLInputElement; | |
329 | const task = input.parentElement!; | |
330 | const desc = task.getElementsByClassName("desc")[0]; | |
331 | const oldDescription = task.getAttribute("data-description")!; | |
332 | const newDescription = input.value; | |
333 | input.removeEventListener("blur", this.completeEdit); | |
334 | task.removeChild(input); | |
335 | task.removeAttribute("data-description"); | |
336 | task.focus(); | |
337 | if (resolution === CommitOrAbort.Abort || newDescription.match(/^ *$/) || newDescription === oldDescription) { | |
338 | desc.textContent = oldDescription; | |
339 | } else { | |
340 | ui.edit(task.getAttribute("data-created")!, newDescription, oldDescription); | |
341 | } | |
342 | }, | |
343 | ||
344 | completeTagEdit: function (event: Event, resolution: CommitOrAbort = CommitOrAbort.Commit) { | |
345 | const input = event.target as HTMLInputElement; | |
346 | const task = input.parentElement!; | |
347 | const newTagName = input.value; | |
348 | input.removeEventListener("blur", this.completeTagEdit); | |
349 | task.removeChild(input); | |
350 | task.focus(); | |
351 | if (resolution === CommitOrAbort.Commit && !newTagName.match(/^ *$/) && !Model.hasTag(task, newTagName)) { | |
352 | ui.addTag(task.getAttribute("data-created")!, newTagName); | |
353 | lastTagNameEntered = newTagName; | |
354 | } | |
355 | }, | |
356 | ||
357 | currentTag: function (): Element | null { | |
358 | var target = document.activeElement; | |
359 | if (!target) return null; | |
360 | if (target.classList.contains("task")) { | |
361 | const tags = target.getElementsByClassName("tag"); | |
362 | target = tags[tags.length - 1]; | |
363 | } | |
364 | if (!target || !target.classList.contains("tag")) return null; | |
365 | return target; | |
366 | }, | |
367 | ||
368 | currentTask: function (): HTMLElement | null { | |
369 | var target = document.activeElement; | |
370 | if (!target) return null; | |
371 | if (target.classList.contains("tag")) target = target.parentElement!; | |
372 | return target as HTMLElement; | |
373 | }, | |
374 | ||
375 | firstVisibleTask: function () { | |
376 | for (const task of document.getElementsByClassName("task")) { | |
377 | const state = task.getAttribute("data-state"); | |
378 | if ( | |
379 | task instanceof HTMLElement && | |
380 | (state === currentViewState || (currentViewState === "all" && state !== "deleted")) && | |
381 | !task.classList.contains("hide") | |
382 | ) { | |
383 | return task; | |
384 | } | |
385 | } | |
386 | }, | |
387 | ||
388 | focusTaskNameInput: function (event: Event) { | |
389 | taskFocusedBeforeJumpingToInput = this.currentTask(); | |
390 | document.getElementById("taskName")!.focus(); | |
391 | window.scroll(0, 0); | |
392 | event.preventDefault(); | |
393 | }, | |
394 | ||
395 | visibleTaskAtOffset(task: Element, offset: number): Element { | |
396 | var cursor: Element | null = task; | |
397 | var valid_cursor = cursor; | |
398 | const increment = offset / Math.abs(offset); | |
399 | while (true) { | |
400 | cursor = increment > 0 ? cursor.nextElementSibling : cursor.previousElementSibling; | |
401 | if (!cursor || !(cursor instanceof HTMLElement)) break; | |
402 | const state = cursor.getAttribute("data-state")!; | |
403 | if ( | |
404 | (state === currentViewState || (currentViewState === "all" && state !== "deleted")) && | |
405 | !cursor.classList.contains("hide") | |
406 | ) { | |
407 | offset -= increment; | |
408 | valid_cursor = cursor; | |
409 | } | |
410 | if (Math.abs(offset) < 0.5) break; | |
411 | } | |
412 | return valid_cursor; | |
413 | }, | |
414 | ||
415 | jumpCursor: function (position: number) { | |
416 | const first = this.firstVisibleTask(); | |
417 | if (!first) return; | |
418 | const dest = this.visibleTaskAtOffset(first, position - 1); | |
419 | if (dest instanceof HTMLElement) dest.focus(); | |
420 | }, | |
421 | ||
422 | makeBottomPriority: function (task: Element | null = null) { | |
423 | if (!task) task = this.currentTask(); | |
424 | if (!task) return; | |
425 | this.setPriority(task, document.getElementById("tasks")!.lastElementChild, null); | |
426 | }, | |
427 | ||
428 | makeTopPriority: function (task: Element | null = null) { | |
429 | if (!task) task = this.currentTask(); | |
430 | if (!task) return; | |
431 | ui.setPriority(task.getAttribute("data-created")!, clock.now(), Model.getPriority(task)); | |
432 | task instanceof HTMLElement && task.focus(); | |
433 | }, | |
434 | ||
435 | moveCursor: function (offset: number): boolean { | |
436 | const active = this.currentTask(); | |
437 | if (!active) return false; | |
438 | const dest = this.visibleTaskAtOffset(active, offset); | |
439 | if (dest !== active && dest instanceof HTMLElement) { | |
440 | dest.focus(); | |
441 | return true; | |
442 | } | |
443 | return false; | |
444 | }, | |
445 | ||
446 | moveTask: function (offset: number) { | |
447 | const active = this.currentTask(); | |
448 | if (!active) return; | |
449 | const dest = this.visibleTaskAtOffset(active, offset); | |
450 | if (dest === active) return; // Already extremal | |
451 | var onePastDest: Element | null = this.visibleTaskAtOffset(dest, offset / Math.abs(offset)); | |
452 | if (onePastDest == dest) onePastDest = null; // Will become extremal | |
453 | if (offset > 0) { | |
454 | this.setPriority(active, dest, onePastDest); | |
455 | } else { | |
456 | this.setPriority(active, onePastDest, dest); | |
457 | } | |
458 | }, | |
459 | ||
460 | removeTag: function () { | |
461 | const target = this.currentTag(); | |
462 | if (!target) return; | |
463 | ui.removeTag(target.parentElement!.getAttribute("data-created")!, target.textContent!); | |
464 | }, | |
465 | ||
466 | resetTagView: function () { | |
467 | for (const task of document.getElementsByClassName("task")) { | |
468 | task.classList.remove("hide"); | |
469 | } | |
470 | }, | |
471 | ||
472 | resetView: function () { | |
473 | this.setView("todo"); | |
474 | this.resetTagView(); | |
475 | }, | |
476 | ||
477 | returnFocusAfterInput: function (): boolean { | |
478 | if (taskFocusedBeforeJumpingToInput) { | |
479 | taskFocusedBeforeJumpingToInput.focus(); | |
480 | return true; | |
481 | } | |
482 | return false; | |
483 | }, | |
484 | ||
485 | // Change task's priority to be between other tasks a and b. | |
486 | setPriority: function (task: Element, a: Element | null, b: Element | null) { | |
487 | const aPriority = a === null ? clock.now() : Model.getPriority(a); | |
488 | const bPriority = b === null ? 0 : Model.getPriority(b); | |
489 | console.assert(aPriority > bPriority, aPriority, ">", bPriority); | |
490 | const span = aPriority - bPriority; | |
491 | const newPriority = bPriority + 0.1 * span + 0.8 * span * Math.random(); | |
492 | console.assert(aPriority > newPriority && newPriority > bPriority, aPriority, ">", newPriority, ">", bPriority); | |
493 | const newPriorityRounded = Math.round(newPriority); | |
494 | const okToRound = aPriority > newPriorityRounded && newPriorityRounded > bPriority; | |
495 | ui.setPriority(task.getAttribute("data-created")!, okToRound ? newPriorityRounded : newPriority, Model.getPriority(task)); | |
496 | task instanceof HTMLElement && task.focus(); | |
497 | }, | |
498 | ||
499 | setState: function (newState: string) { | |
500 | const task = this.currentTask(); | |
501 | if (!task) return; | |
502 | const oldState = task.getAttribute("data-state")!; | |
503 | if (newState === oldState) return; | |
504 | const createTimestamp = task.getAttribute("data-created")!; | |
505 | if (currentViewState !== "all" || newState == "deleted") { | |
506 | this.moveCursor(1) || this.moveCursor(-1); | |
507 | } | |
508 | return ui.setState(createTimestamp, newState, oldState); | |
509 | }, | |
510 | ||
511 | setTagView: function () { | |
512 | const target = this.currentTag(); | |
513 | if (!target) return; | |
514 | const tag = target.textContent!; | |
515 | for (const task of document.getElementsByClassName("task")) { | |
516 | if (Model.hasTag(task, tag)) { | |
517 | task.classList.remove("hide"); | |
518 | } else { | |
519 | task.classList.add("hide"); | |
520 | } | |
521 | } | |
522 | }, | |
523 | ||
524 | setView: function (state: string) { | |
525 | const sheet = (document.getElementById("viewStyle") as HTMLStyleElement).sheet!; | |
526 | if (state === "all") { | |
527 | sheet.insertRule(`.task[data-state=deleted] { display: none }`); | |
528 | } else { | |
529 | sheet.insertRule(`.task:not([data-state=${state}]) { display: none }`); | |
530 | } | |
531 | sheet.insertRule(`:root { --view-state-indicator-color: ${viewColors[state]}; }`); | |
532 | sheet.removeRule(2); | |
533 | sheet.removeRule(2); | |
534 | currentViewState = state; | |
535 | if (this.currentTask()?.getAttribute("data-state") !== state) { | |
536 | this.firstVisibleTask()?.focus(); | |
537 | } | |
538 | }, | |
539 | ||
540 | setUntaggedView: function () { | |
541 | for (const task of document.getElementsByClassName("task")) { | |
542 | if (task.getElementsByClassName("tag").length === 0) { | |
543 | task.classList.remove("hide"); | |
544 | } else { | |
545 | task.classList.add("hide"); | |
546 | } | |
547 | } | |
548 | }, | |
549 | ||
550 | undo: function () { | |
551 | const ret = ui.undo(); | |
552 | if (ret && ret instanceof HTMLElement) ret.focus(); | |
553 | }, | |
554 | redo: function () { | |
555 | const ret = ui.redo(); | |
556 | if (ret && ret instanceof HTMLElement) ret.focus(); | |
557 | }, | |
558 | }; | |
559 | } | |
560 | const browserUI = BrowserUI(); | |
561 | ||
562 | const scrollIncrement = 60; | |
563 | enum InputState { | |
564 | Root, | |
565 | S, | |
566 | V, | |
567 | VS, | |
568 | } | |
569 | var inputState = InputState.Root; | |
570 | var inputCount: number | null = null; | |
571 | ||
572 | function handleKey(event: any) { | |
573 | if (["Alt", "Control", "Meta", "Shift"].includes(event.key)) return; | |
574 | if (event.target.tagName === "INPUT") { | |
575 | if (event.target.id === "taskName") { | |
576 | if (event.key == "Enter") return browserUI.addTask(event); | |
577 | if (event.key == "Escape") return browserUI.returnFocusAfterInput(); | |
578 | } else if (event.target.classList.contains("tag")) { | |
579 | if (event.key == "Enter") return browserUI.completeTagEdit(event); | |
580 | if (event.key == "Escape") return browserUI.completeTagEdit(event, CommitOrAbort.Abort); | |
581 | } else { | |
582 | if (event.key == "Enter") return browserUI.completeEdit(event); | |
583 | if (event.key == "Escape") return browserUI.completeEdit(event, CommitOrAbort.Abort); | |
584 | } | |
585 | } else { | |
586 | if (inputState === InputState.Root) { | |
587 | if ("0" <= event.key && event.key <= "9") { | |
588 | return (inputCount = (inputCount ?? 0) * 10 + parseInt(event.key)); | |
589 | } | |
590 | try { | |
591 | if (event.ctrlKey) { | |
592 | if (event.key == "e") return window.scrollBy(0, (inputCount ?? 1) * scrollIncrement); | |
593 | if (event.key == "y") return window.scrollBy(0, (inputCount ?? 1) * -scrollIncrement); | |
594 | } else { | |
595 | if (event.key == "j") return browserUI.moveCursor(inputCount ?? 1); | |
596 | if (event.key == "k") return browserUI.moveCursor(-(inputCount ?? 1)); | |
597 | if (event.key == "J") return browserUI.moveTask(inputCount ?? 1); | |
598 | if (event.key == "K") return browserUI.moveTask(-(inputCount ?? 1)); | |
599 | if (event.key == "G") return browserUI.jumpCursor(inputCount ?? MAX_SAFE_INTEGER); | |
600 | if (event.key == "T") return browserUI.makeTopPriority(); | |
601 | if (event.key == "n") return browserUI.focusTaskNameInput(event); | |
602 | if (event.key == "c") return browserUI.setState("cancelled"); | |
603 | if (event.key == "d") return browserUI.setState("done"); | |
604 | if (event.key == "q") return browserUI.setState("todo"); | |
605 | if (event.key == "s") return (inputState = InputState.S); | |
606 | if (event.key == "w") return browserUI.setState("waiting"); | |
607 | if (event.key == "X") return browserUI.setState("deleted"); | |
608 | if (event.key == "x") return browserUI.removeTag(); | |
609 | if (event.key == "u") return browserUI.undo(); | |
610 | if (event.key == "r") return browserUI.redo(); | |
611 | if (event.key == "e") return browserUI.beginEdit(event); | |
612 | if (event.key == "t") return browserUI.beginTagEdit(event); | |
613 | if (event.key == "v") return (inputState = InputState.V); | |
614 | } | |
615 | } finally { | |
616 | inputCount = null; | |
617 | } | |
618 | } else if (inputState === InputState.S) { | |
619 | inputState = InputState.Root; | |
620 | if (event.key == "m") return browserUI.setState("someday-maybe"); | |
621 | } else if (inputState === InputState.V) { | |
622 | inputState = InputState.Root; | |
623 | if (event.key == "a") return browserUI.setView("all"); | |
624 | if (event.key == "c") return browserUI.setView("cancelled"); | |
625 | if (event.key == "d") return browserUI.setView("done"); | |
626 | if (event.key == "i") return browserUI.setUntaggedView(); | |
627 | if (event.key == "q") return browserUI.setView("todo"); | |
628 | if (event.key == "s") return (inputState = InputState.VS); | |
629 | if (event.key == "T") return browserUI.resetTagView(); | |
630 | if (event.key == "t") return browserUI.setTagView(); | |
631 | if (event.key == "u") return browserUI.setUntaggedView(); | |
632 | if (event.key == "v") return browserUI.resetView(); | |
633 | if (event.key == "w") return browserUI.setView("waiting"); | |
634 | if (event.key == "x") return browserUI.setView("deleted"); | |
635 | } else if (inputState === InputState.VS) { | |
636 | inputState = InputState.Root; | |
637 | if (event.key == "m") return browserUI.setView("someday-maybe"); | |
638 | } | |
639 | } | |
640 | } | |
641 | ||
642 | function browserInit() { | |
643 | log.replay(); | |
644 | browserUI.firstVisibleTask()?.focus(); | |
645 | document.body.addEventListener("keydown", handleKey, { capture: false }); | |
646 | } |