]>
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 | insertInPriorityOrder: function (task: Element, dest: Element) { | |
124 | const priority = this.getPriority(task); | |
125 | for (const t of dest.children) { | |
126 | if (t !== task && this.getPriority(t) < priority) { | |
127 | dest.insertBefore(task, t); | |
128 | return; | |
129 | } | |
130 | } | |
131 | dest.appendChild(task); | |
132 | }, | |
133 | ||
134 | removeTag: function (createTimestamp: string, tagName: string) { | |
135 | const task = this.getTask(createTimestamp); | |
136 | if (!task) return null; | |
137 | const tag = this.hasTag(task, tagName); | |
138 | if (!tag) return; | |
139 | task.removeChild(tag); | |
140 | if (task instanceof HTMLElement) task.focus(); | |
141 | }, | |
142 | ||
143 | setPriority: function (createTimestamp: string, priority: number): Element | null { | |
144 | const target = this.getTask(createTimestamp); | |
145 | if (!target) return null; | |
146 | target.setAttribute("data-priority", `${priority}`); | |
147 | this.insertInPriorityOrder(target, target.parentElement!); | |
148 | return target; | |
149 | }, | |
150 | ||
151 | setState: function (stateTimestamp: string, createTimestamp: string, state: string) { | |
152 | const task = this.getTask(createTimestamp); | |
153 | if (!task) return; | |
154 | task.setAttribute("data-state", state); | |
155 | var date = task.getElementsByClassName("statedate")[0]; | |
156 | if (state === "todo") { | |
157 | task.removeChild(date); | |
158 | return; | |
159 | } | |
160 | if (!date) { | |
161 | date = document.createElement("span"); | |
162 | date.classList.add("statedate"); | |
163 | task.insertBefore(date, task.firstChild); | |
164 | } | |
165 | const d = new Date(parseInt(stateTimestamp)); | |
166 | date.textContent = `${d.getFullYear()}-${`${d.getMonth() + 1}`.padStart(2, "0")}-${`${d.getDate()}`.padStart(2, "0")}`; | |
167 | }, | |
168 | }; | |
169 | ||
170 | function Log(prefix: string = "vp-") { | |
171 | var next_log_index = 0; | |
172 | return { | |
173 | apply: function (entry: string) { | |
174 | const [timestamp, command, data] = splitN(entry, " ", 2); | |
175 | if (command == "Create") { | |
176 | return Model.addTask(timestamp, data); | |
177 | } | |
178 | if (command == "Edit") { | |
179 | const [createTimestamp, description] = splitN(data, " ", 1); | |
180 | return Model.edit(createTimestamp, description); | |
181 | } | |
182 | if (command == "Priority") { | |
183 | const [createTimestamp, newPriority] = splitN(data, " ", 1); | |
184 | return Model.setPriority(createTimestamp, parseFloat(newPriority)); | |
185 | } | |
186 | if (command == "State") { | |
187 | const [createTimestamp, state] = splitN(data, " ", 1); | |
188 | return Model.setState(timestamp, createTimestamp, state); | |
189 | } | |
190 | if (command == "Tag") { | |
191 | const [createTimestamp, tag] = splitN(data, " ", 1); | |
192 | return Model.addTag(createTimestamp, tag); | |
193 | } | |
194 | if (command == "Untag") { | |
195 | const [createTimestamp, tag] = splitN(data, " ", 1); | |
196 | return Model.removeTag(createTimestamp, tag); | |
197 | } | |
198 | }, | |
199 | ||
200 | record: function (entry: string) { | |
201 | window.localStorage.setItem(`${prefix}${next_log_index++}`, entry); | |
202 | }, | |
203 | ||
204 | recordAndApply: function (entry: string) { | |
205 | this.record(entry); | |
206 | return this.apply(entry); | |
207 | }, | |
208 | ||
209 | replay: function () { | |
210 | while (true) { | |
211 | const entry = window.localStorage.getItem(`${prefix}${next_log_index}`); | |
212 | if (entry === null) { | |
213 | break; | |
214 | } | |
215 | this.apply(entry); | |
216 | next_log_index++; | |
217 | } | |
218 | }, | |
219 | }; | |
220 | } | |
221 | const log = Log(); | |
222 | ||
223 | function UI() { | |
224 | const undoLog: string[][] = []; | |
225 | const redoLog: string[][] = []; | |
226 | function perform(forward: string, reverse: string) { | |
227 | undoLog.push([reverse, forward]); | |
228 | return log.recordAndApply(`${clock.now()} ${forward}`); | |
229 | } | |
230 | return { | |
231 | addTask: function (description: string): Element { | |
232 | const now = clock.now(); | |
233 | undoLog.push([`State ${now} deleted`, `State ${now} todo`]); | |
234 | return <Element>log.recordAndApply(`${now} Create ${description}`); | |
235 | }, | |
236 | addTag: function (createTimestamp: string, tag: string) { | |
237 | return perform(`Tag ${createTimestamp} ${tag}`, `Untag ${createTimestamp} ${tag}`); | |
238 | }, | |
239 | edit: function (createTimestamp: string, newDescription: string, oldDescription: string) { | |
240 | return perform(`Edit ${createTimestamp} ${newDescription}`, `Edit ${createTimestamp} ${oldDescription}`); | |
241 | }, | |
242 | removeTag: function (createTimestamp: string, tag: string) { | |
243 | return perform(`Untag ${createTimestamp} ${tag}`, `Tag ${createTimestamp} ${tag}`); | |
244 | }, | |
245 | setPriority: function (createTimestamp: string, newPriority: number, oldPriority: number) { | |
246 | return perform(`Priority ${createTimestamp} ${newPriority}`, `Priority ${createTimestamp} ${oldPriority}`); | |
247 | }, | |
248 | setState: function (createTimestamp: string, newState: string, oldState: string) { | |
249 | return perform(`State ${createTimestamp} ${newState}`, `State ${createTimestamp} ${oldState}`); | |
250 | }, | |
251 | undo: function () { | |
252 | const entry = undoLog.pop(); | |
253 | if (entry) { | |
254 | redoLog.push(entry); | |
255 | return log.recordAndApply(`${clock.now()} ${entry[0]}`); | |
256 | } | |
257 | }, | |
258 | redo: function () { | |
259 | const entry = redoLog.pop(); | |
260 | if (entry) { | |
261 | undoLog.push(entry); | |
262 | return log.recordAndApply(`${clock.now()} ${entry[1]}`); | |
263 | } | |
264 | }, | |
265 | }; | |
266 | } | |
267 | const ui = UI(); | |
268 | ||
269 | enum CommitOrAbort { | |
270 | Commit, | |
271 | Abort, | |
272 | } | |
273 | ||
274 | function BrowserUI() { | |
275 | const viewColors: { [key: string]: string } = { | |
276 | all: "Gold", | |
277 | cancelled: "Red", | |
278 | deleted: "Black", | |
279 | done: "LawnGreen", | |
280 | "someday-maybe": "DeepSkyBlue", | |
281 | todo: "White", | |
282 | waiting: "MediumOrchid", | |
283 | }; | |
284 | var currentTagView: string | null = null; | |
285 | var currentViewState = "todo"; | |
286 | var taskFocusedBeforeJumpingToInput: HTMLElement | null = null; | |
287 | var lastTagNameEntered = ""; | |
288 | return { | |
289 | addTask: function (event: KeyboardEvent) { | |
290 | const input = <HTMLInputElement>document.getElementById("taskName"); | |
291 | if (input.value.match(/^ *$/)) return; | |
292 | const task = ui.addTask(input.value); | |
293 | if (currentViewState === "todo" || currentViewState === "all") { | |
294 | task instanceof HTMLElement && task.focus(); | |
295 | } else if (this.returnFocusAfterInput()) { | |
296 | } else { | |
297 | this.firstVisibleTask()?.focus(); | |
298 | } | |
299 | input.value = ""; | |
300 | if (currentTagView) { | |
301 | ui.addTag(task.getAttribute("data-created")!, currentTagView); | |
302 | } | |
303 | if (event.getModifierState("Control")) { | |
304 | this.makeBottomPriority(task); | |
305 | } | |
306 | }, | |
307 | ||
308 | beginEdit: function (event: Event) { | |
309 | const task = this.currentTask(); | |
310 | if (!task) return; | |
311 | const input = document.createElement("input"); | |
312 | const desc = task.getElementsByClassName("desc")[0]; | |
313 | const oldDescription = desc.textContent!; | |
314 | task.setAttribute("data-description", oldDescription); | |
315 | input.value = oldDescription; | |
316 | input.addEventListener("blur", this.completeEdit, { once: true }); | |
317 | desc.textContent = ""; | |
318 | task.insertBefore(input, task.firstChild); | |
319 | input.focus(); | |
320 | event.preventDefault(); | |
321 | }, | |
322 | ||
323 | beginTagEdit: function (event: Event) { | |
324 | const task = this.currentTask(); | |
325 | if (!task) return; | |
326 | const input = document.createElement("input"); | |
327 | input.classList.add("tag"); | |
328 | input.addEventListener("blur", this.completeTagEdit, { once: true }); | |
329 | input.value = lastTagNameEntered; | |
330 | task.appendChild(input); | |
331 | input.focus(); | |
332 | input.select(); | |
333 | event.preventDefault(); | |
334 | }, | |
335 | ||
336 | completeEdit: function (event: Event, resolution: CommitOrAbort = CommitOrAbort.Commit) { | |
337 | const input = event.target as HTMLInputElement; | |
338 | const task = input.parentElement!; | |
339 | const desc = task.getElementsByClassName("desc")[0]; | |
340 | const oldDescription = task.getAttribute("data-description")!; | |
341 | const newDescription = input.value; | |
342 | input.removeEventListener("blur", this.completeEdit); | |
343 | task.removeChild(input); | |
344 | task.removeAttribute("data-description"); | |
345 | task.focus(); | |
346 | if (resolution === CommitOrAbort.Abort || newDescription.match(/^ *$/) || newDescription === oldDescription) { | |
347 | desc.textContent = oldDescription; | |
348 | } else { | |
349 | ui.edit(task.getAttribute("data-created")!, newDescription, oldDescription); | |
350 | } | |
351 | }, | |
352 | ||
353 | completeTagEdit: function (event: Event, resolution: CommitOrAbort = CommitOrAbort.Commit) { | |
354 | const input = event.target as HTMLInputElement; | |
355 | const task = input.parentElement!; | |
356 | const newTagName = input.value; | |
357 | input.removeEventListener("blur", this.completeTagEdit); | |
358 | task.removeChild(input); | |
359 | task.focus(); | |
360 | if (resolution === CommitOrAbort.Commit && !newTagName.match(/^ *$/) && !Model.hasTag(task, newTagName)) { | |
361 | ui.addTag(task.getAttribute("data-created")!, newTagName); | |
362 | lastTagNameEntered = newTagName; | |
363 | } | |
364 | }, | |
365 | ||
366 | currentTag: function (): Element | null { | |
367 | var target = document.activeElement; | |
368 | if (!target) return null; | |
369 | if (target.classList.contains("task")) { | |
370 | const tags = target.getElementsByClassName("tag"); | |
371 | target = tags[tags.length - 1]; | |
372 | } | |
373 | if (!target || !target.classList.contains("tag")) return null; | |
374 | return target; | |
375 | }, | |
376 | ||
377 | currentTask: function (): HTMLElement | null { | |
378 | var target = document.activeElement; | |
379 | if (!target) return null; | |
380 | if (target.classList.contains("tag")) target = target.parentElement!; | |
381 | return target as HTMLElement; | |
382 | }, | |
383 | ||
384 | firstVisibleTask: function () { | |
385 | for (const task of document.getElementsByClassName("task")) { | |
386 | const state = task.getAttribute("data-state"); | |
387 | if ( | |
388 | task instanceof HTMLElement && | |
389 | (state === currentViewState || (currentViewState === "all" && state !== "deleted")) && | |
390 | !task.classList.contains("hide") | |
391 | ) { | |
392 | return task; | |
393 | } | |
394 | } | |
395 | }, | |
396 | ||
397 | focusTaskNameInput: function (event: Event) { | |
398 | taskFocusedBeforeJumpingToInput = this.currentTask(); | |
399 | document.getElementById("taskName")!.focus(); | |
400 | window.scroll(0, 0); | |
401 | event.preventDefault(); | |
402 | }, | |
403 | ||
404 | visibleTaskAtOffset(task: Element, offset: number): Element { | |
405 | var cursor: Element | null = task; | |
406 | var valid_cursor = cursor; | |
407 | const increment = offset / Math.abs(offset); | |
408 | while (true) { | |
409 | cursor = increment > 0 ? cursor.nextElementSibling : cursor.previousElementSibling; | |
410 | if (!cursor || !(cursor instanceof HTMLElement)) break; | |
411 | const state = cursor.getAttribute("data-state")!; | |
412 | if ( | |
413 | (state === currentViewState || (currentViewState === "all" && state !== "deleted")) && | |
414 | !cursor.classList.contains("hide") | |
415 | ) { | |
416 | offset -= increment; | |
417 | valid_cursor = cursor; | |
418 | } | |
419 | if (Math.abs(offset) < 0.5) break; | |
420 | } | |
421 | return valid_cursor; | |
422 | }, | |
423 | ||
424 | jumpCursor: function (position: number) { | |
425 | const first = this.firstVisibleTask(); | |
426 | if (!first) return; | |
427 | const dest = this.visibleTaskAtOffset(first, position - 1); | |
428 | if (dest instanceof HTMLElement) dest.focus(); | |
429 | }, | |
430 | ||
431 | makeBottomPriority: function (task: Element | null = null) { | |
432 | if (!task) task = this.currentTask(); | |
433 | if (!task) return; | |
434 | this.setPriority(task, document.getElementById("tasks")!.lastElementChild, null); | |
435 | }, | |
436 | ||
437 | makeTopPriority: function (task: Element | null = null) { | |
438 | if (!task) task = this.currentTask(); | |
439 | if (!task) return; | |
440 | ui.setPriority(task.getAttribute("data-created")!, clock.now(), Model.getPriority(task)); | |
441 | task instanceof HTMLElement && task.focus(); | |
442 | }, | |
443 | ||
444 | moveCursorLeft: function () { | |
445 | const active = this.currentTask(); | |
446 | if (!active) return false; | |
447 | if (active.parentElement!.classList.contains("task")) { | |
448 | active.parentElement!.focus(); | |
449 | } | |
450 | }, | |
451 | ||
452 | moveCursorRight: function () { | |
453 | (this.currentTask()?.getElementsByClassName("task")[0] as HTMLElement)?.focus(); | |
454 | }, | |
455 | ||
456 | moveCursorVertically: function (offset: number): boolean { | |
457 | const active = this.currentTask(); | |
458 | if (!active) return false; | |
459 | const dest = this.visibleTaskAtOffset(active, offset); | |
460 | if (dest !== active && dest instanceof HTMLElement) { | |
461 | dest.focus(); | |
462 | return true; | |
463 | } | |
464 | return false; | |
465 | }, | |
466 | ||
467 | moveTask: function (offset: number) { | |
468 | const active = this.currentTask(); | |
469 | if (!active) return; | |
470 | const dest = this.visibleTaskAtOffset(active, offset); | |
471 | if (dest === active) return; // Already extremal | |
472 | var onePastDest: Element | null = this.visibleTaskAtOffset(dest, offset / Math.abs(offset)); | |
473 | if (onePastDest == dest) onePastDest = null; // Will become extremal | |
474 | if (offset > 0) { | |
475 | this.setPriority(active, dest, onePastDest); | |
476 | } else { | |
477 | this.setPriority(active, onePastDest, dest); | |
478 | } | |
479 | }, | |
480 | ||
481 | removeTag: function () { | |
482 | const target = this.currentTag(); | |
483 | if (!target) return; | |
484 | ui.removeTag(target.parentElement!.getAttribute("data-created")!, target.textContent!); | |
485 | }, | |
486 | ||
487 | resetTagView: function () { | |
488 | currentTagView = null; | |
489 | const taskList = document.getElementById("tasks")!; | |
490 | for (const task of Array.from(document.getElementsByClassName("task"))) { | |
491 | task.classList.remove("hide"); | |
492 | if (task.parentElement !== taskList) { | |
493 | Model.insertInPriorityOrder(task, taskList); | |
494 | } | |
495 | } | |
496 | }, | |
497 | ||
498 | resetView: function () { | |
499 | this.setView("todo"); | |
500 | this.resetTagView(); | |
501 | }, | |
502 | ||
503 | returnFocusAfterInput: function (): boolean { | |
504 | if (taskFocusedBeforeJumpingToInput) { | |
505 | taskFocusedBeforeJumpingToInput.focus(); | |
506 | return true; | |
507 | } | |
508 | return false; | |
509 | }, | |
510 | ||
511 | // Change task's priority to be between other tasks a and b. | |
512 | setPriority: function (task: Element, a: Element | null, b: Element | null) { | |
513 | const aPriority = a === null ? clock.now() : Model.getPriority(a); | |
514 | const bPriority = b === null ? 0 : Model.getPriority(b); | |
515 | console.assert(aPriority > bPriority, aPriority, ">", bPriority); | |
516 | const span = aPriority - bPriority; | |
517 | const newPriority = bPriority + 0.1 * span + 0.8 * span * Math.random(); | |
518 | console.assert(aPriority > newPriority && newPriority > bPriority, aPriority, ">", newPriority, ">", bPriority); | |
519 | const newPriorityRounded = Math.round(newPriority); | |
520 | const okToRound = aPriority > newPriorityRounded && newPriorityRounded > bPriority; | |
521 | ui.setPriority(task.getAttribute("data-created")!, okToRound ? newPriorityRounded : newPriority, Model.getPriority(task)); | |
522 | task instanceof HTMLElement && task.focus(); | |
523 | }, | |
524 | ||
525 | setState: function (newState: string) { | |
526 | const task = this.currentTask(); | |
527 | if (!task) return; | |
528 | const oldState = task.getAttribute("data-state")!; | |
529 | if (newState === oldState) return; | |
530 | const createTimestamp = task.getAttribute("data-created")!; | |
531 | if (currentViewState !== "all" || newState == "deleted") { | |
532 | this.moveCursorVertically(1) || this.moveCursorVertically(-1); | |
533 | } | |
534 | return ui.setState(createTimestamp, newState, oldState); | |
535 | }, | |
536 | ||
537 | setTagView: function (tag: string | null = null) { | |
538 | if (tag === null) { | |
539 | const target = this.currentTag(); | |
540 | if (!target) return; | |
541 | tag = target.textContent!; | |
542 | } | |
543 | ||
544 | if (currentTagView !== null) { | |
545 | this.resetTagView(); | |
546 | } | |
547 | ||
548 | const tasksWithTag = new Map(); | |
549 | for (const task of document.getElementsByClassName("task")) { | |
550 | if (Model.hasTag(task, tag)) { | |
551 | tasksWithTag.set(task.getElementsByClassName("desc")[0].textContent, [Model.getPriority(task), task]); | |
552 | } | |
553 | } | |
554 | ||
555 | function highestPrioritySuperTask(t: Element) { | |
556 | var maxPriority = -1; | |
557 | var superTask = null; | |
558 | for (const child of t.getElementsByClassName("tag")) { | |
559 | const e = tasksWithTag.get(child.textContent); | |
560 | if (e !== undefined && e[0] > maxPriority) { | |
561 | maxPriority = e[0]; | |
562 | superTask = e[1]; | |
563 | } | |
564 | } | |
565 | return superTask; | |
566 | } | |
567 | ||
568 | for (const task of Array.from(document.getElementsByClassName("task"))) { | |
569 | if (Model.hasTag(task, tag)) { | |
570 | task.classList.remove("hide"); | |
571 | } else { | |
572 | const superTask = highestPrioritySuperTask(task); | |
573 | if (superTask !== null) { | |
574 | Model.insertInPriorityOrder(task, superTask); | |
575 | } else { | |
576 | task.classList.add("hide"); | |
577 | } | |
578 | } | |
579 | } | |
580 | ||
581 | currentTagView = tag; | |
582 | }, | |
583 | ||
584 | setView: function (state: string) { | |
585 | const sheet = (document.getElementById("viewStyle") as HTMLStyleElement).sheet!; | |
586 | if (state === "all") { | |
587 | sheet.insertRule(`.task[data-state=deleted] { display: none }`); | |
588 | } else { | |
589 | sheet.insertRule(`.task:not([data-state=${state}]) { display: none }`); | |
590 | } | |
591 | sheet.insertRule(`:root { --view-state-indicator-color: ${viewColors[state]}; }`); | |
592 | sheet.removeRule(2); | |
593 | sheet.removeRule(2); | |
594 | currentViewState = state; | |
595 | if (this.currentTask()?.getAttribute("data-state") !== state) { | |
596 | this.firstVisibleTask()?.focus(); | |
597 | } | |
598 | }, | |
599 | ||
600 | setUntaggedView: function () { | |
601 | if (currentTagView !== null) { | |
602 | this.resetTagView(); | |
603 | } | |
604 | for (const task of document.getElementsByClassName("task")) { | |
605 | if (task.getElementsByClassName("tag").length === 0) { | |
606 | task.classList.remove("hide"); | |
607 | } else { | |
608 | task.classList.add("hide"); | |
609 | } | |
610 | } | |
611 | }, | |
612 | ||
613 | undo: function () { | |
614 | const ret = ui.undo(); | |
615 | if (ret && ret instanceof HTMLElement) ret.focus(); | |
616 | }, | |
617 | redo: function () { | |
618 | const ret = ui.redo(); | |
619 | if (ret && ret instanceof HTMLElement) ret.focus(); | |
620 | }, | |
621 | }; | |
622 | } | |
623 | const browserUI = BrowserUI(); | |
624 | ||
625 | const scrollIncrement = 60; | |
626 | enum InputState { | |
627 | Root, | |
628 | S, | |
629 | V, | |
630 | VS, | |
631 | } | |
632 | var inputState = InputState.Root; | |
633 | var inputCount: number | null = null; | |
634 | ||
635 | function handleKey(event: any) { | |
636 | if (["Alt", "Control", "Meta", "Shift"].includes(event.key)) return; | |
637 | if (event.target.tagName === "INPUT") { | |
638 | if (event.target.id === "taskName") { | |
639 | if (event.key == "Enter") return browserUI.addTask(event); | |
640 | if (event.key == "Escape") return browserUI.returnFocusAfterInput(); | |
641 | } else if (event.target.classList.contains("tag")) { | |
642 | if (event.key == "Enter") return browserUI.completeTagEdit(event); | |
643 | if (event.key == "Escape") return browserUI.completeTagEdit(event, CommitOrAbort.Abort); | |
644 | } else { | |
645 | if (event.key == "Enter") return browserUI.completeEdit(event); | |
646 | if (event.key == "Escape") return browserUI.completeEdit(event, CommitOrAbort.Abort); | |
647 | } | |
648 | } else { | |
649 | if (inputState === InputState.Root) { | |
650 | if ("0" <= event.key && event.key <= "9") { | |
651 | return (inputCount = (inputCount ?? 0) * 10 + parseInt(event.key)); | |
652 | } | |
653 | try { | |
654 | if (event.ctrlKey) { | |
655 | if (event.key == "e") return window.scrollBy(0, (inputCount ?? 1) * scrollIncrement); | |
656 | if (event.key == "y") return window.scrollBy(0, (inputCount ?? 1) * -scrollIncrement); | |
657 | } else { | |
658 | if (event.key == "h") return browserUI.moveCursorLeft(); | |
659 | if (event.key == "l") return browserUI.moveCursorRight(); | |
660 | if (event.key == "j") return browserUI.moveCursorVertically(inputCount ?? 1); | |
661 | if (event.key == "k") return browserUI.moveCursorVertically(-(inputCount ?? 1)); | |
662 | if (event.key == "J") return browserUI.moveTask(inputCount ?? 1); | |
663 | if (event.key == "K") return browserUI.moveTask(-(inputCount ?? 1)); | |
664 | if (event.key == "G") return browserUI.jumpCursor(inputCount ?? MAX_SAFE_INTEGER); | |
665 | if (event.key == "T") return browserUI.makeTopPriority(); | |
666 | if (event.key == "n") return browserUI.focusTaskNameInput(event); | |
667 | if (event.key == "c") return browserUI.setState("cancelled"); | |
668 | if (event.key == "d") return browserUI.setState("done"); | |
669 | if (event.key == "q") return browserUI.setState("todo"); | |
670 | if (event.key == "s") return (inputState = InputState.S); | |
671 | if (event.key == "w") return browserUI.setState("waiting"); | |
672 | if (event.key == "X") return browserUI.setState("deleted"); | |
673 | if (event.key == "x") return browserUI.removeTag(); | |
674 | if (event.key == "u") return browserUI.undo(); | |
675 | if (event.key == "r") return browserUI.redo(); | |
676 | if (event.key == "e") return browserUI.beginEdit(event); | |
677 | if (event.key == "t") return browserUI.beginTagEdit(event); | |
678 | if (event.key == "v") return (inputState = InputState.V); | |
679 | } | |
680 | } finally { | |
681 | inputCount = null; | |
682 | } | |
683 | } else if (inputState === InputState.S) { | |
684 | inputState = InputState.Root; | |
685 | if (event.key == "m") return browserUI.setState("someday-maybe"); | |
686 | } else if (inputState === InputState.V) { | |
687 | inputState = InputState.Root; | |
688 | if (event.key == "a") return browserUI.setView("all"); | |
689 | if (event.key == "c") return browserUI.setView("cancelled"); | |
690 | if (event.key == "d") return browserUI.setView("done"); | |
691 | if (event.key == "i") return browserUI.setUntaggedView(); | |
692 | if (event.key == "p") return browserUI.setTagView("Project"); | |
693 | if (event.key == "q") return browserUI.setView("todo"); | |
694 | if (event.key == "s") return (inputState = InputState.VS); | |
695 | if (event.key == "T") return browserUI.resetTagView(); | |
696 | if (event.key == "t") return browserUI.setTagView(); | |
697 | if (event.key == "u") return browserUI.setUntaggedView(); | |
698 | if (event.key == "v") return browserUI.resetView(); | |
699 | if (event.key == "w") return browserUI.setView("waiting"); | |
700 | if (event.key == "x") return browserUI.setView("deleted"); | |
701 | } else if (inputState === InputState.VS) { | |
702 | inputState = InputState.Root; | |
703 | if (event.key == "m") return browserUI.setView("someday-maybe"); | |
704 | } | |
705 | } | |
706 | } | |
707 | ||
708 | function browserInit() { | |
709 | log.replay(); | |
710 | browserUI.firstVisibleTask()?.focus(); | |
711 | document.body.addEventListener("keydown", handleKey, { capture: false }); | |
712 | } |