]>
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 | ||
c70b3eed SW |
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 | ||
13c97b99 | 38 | const Model = { |
6d01c406 | 39 | addTask: function (timestamp: string, description: string): Element { |
13c97b99 | 40 | const task = document.createElement("div"); |
26737687 SW |
41 | const desc = document.createElement("span"); |
42 | desc.textContent = description; | |
43 | desc.classList.add("desc"); | |
44 | task.appendChild(desc); | |
7ccc80f6 | 45 | task.classList.add("task"); |
13c97b99 | 46 | task.setAttribute("tabindex", "0"); |
4101e1b1 | 47 | task.setAttribute("data-created", timestamp); |
682139fc | 48 | task.setAttribute("data-state", "todo"); |
ef7ebad4 | 49 | document.getElementById("tasks")!.appendChild(task); |
6d01c406 | 50 | return task; |
13c97b99 | 51 | }, |
974848d3 | 52 | |
7b5b90b9 SW |
53 | addTag: function (createTimestamp: string, tagName: string): Element | null { |
54 | const task = this.getTask(createTimestamp); | |
55 | if (!task) return null; | |
3916a89c SW |
56 | const existingTag = this.hasTag(task, tagName); |
57 | if (existingTag) return existingTag; | |
7b5b90b9 SW |
58 | const tag = document.createElement("span"); |
59 | tag.appendChild(document.createTextNode(tagName)); | |
60 | tag.classList.add("tag"); | |
61 | tag.setAttribute("tabindex", "0"); | |
c70b3eed | 62 | hashHue(tagName).then((hue) => (tag.style.backgroundColor = `hsl(${hue},90%,45%)`)); |
360beccb SW |
63 | for (const child of task.getElementsByClassName("tag")) { |
64 | if (tagName > child.textContent!) { | |
65 | task.insertBefore(tag, child); | |
66 | return tag; | |
67 | } | |
68 | } | |
7b5b90b9 SW |
69 | task.appendChild(tag); |
70 | return tag; | |
71 | }, | |
72 | ||
7b574407 SW |
73 | edit: function (createTimestamp: string, newDescription: string): Element | null { |
74 | const target = this.getTask(createTimestamp); | |
75 | if (!target) return null; | |
76 | if (target.hasAttribute("data-description")) { | |
77 | // Oh no: An edit has arrived from a replica while a local edit is in progress. | |
132921e6 | 78 | const input = target.firstChild as HTMLInputElement; |
7b574407 SW |
79 | if ( |
80 | input.value === target.getAttribute("data-description") && | |
3a731557 | 81 | input.selectionStart === input.value.length && |
7b574407 SW |
82 | input.selectionEnd === input.value.length |
83 | ) { | |
84 | // No local changes have actually been made yet. Change the contents of the edit box! | |
85 | input.value = newDescription; | |
7b574407 SW |
86 | } else { |
87 | // No great options. | |
88 | // Prefer not to interrupt the local user's edit. | |
89 | // The remote edit is mostly lost; this mostly becomes last-write-wins. | |
90 | target.setAttribute("data-description", newDescription); | |
91 | } | |
92 | } else { | |
26737687 | 93 | target.getElementsByClassName("desc")[0].textContent = newDescription; |
7b574407 SW |
94 | } |
95 | return target; | |
96 | }, | |
97 | ||
3916a89c | 98 | hasTag: function (task: Element, tag: string): Element | null { |
54c19180 SW |
99 | for (const child of task.getElementsByClassName("tag")) { |
100 | if (child.textContent === tag) { | |
3916a89c | 101 | return child; |
e1eb33ad SW |
102 | } |
103 | } | |
3916a89c | 104 | return null; |
e1eb33ad SW |
105 | }, |
106 | ||
68a72fde SW |
107 | getPriority: function (task: Element): number { |
108 | if (task.hasAttribute("data-priority")) { | |
109 | return parseFloat(task.getAttribute("data-priority")!); | |
110 | } | |
111 | return parseFloat(task.getAttribute("data-created")!); | |
112 | }, | |
113 | ||
799f4e89 SW |
114 | getTask: function (createTimestamp: string) { |
115 | for (const task of document.getElementsByClassName("task")) { | |
116 | if (task.getAttribute("data-created") === createTimestamp) { | |
117 | return task; | |
118 | } | |
119 | } | |
120 | }, | |
121 | ||
43f3cc0c | 122 | setPriority: function (createTimestamp: string, priority: number): Element | null { |
68a72fde | 123 | const target = this.getTask(createTimestamp); |
43f3cc0c | 124 | if (!target) return null; |
68a72fde SW |
125 | target.setAttribute("data-priority", `${priority}`); |
126 | for (const task of document.getElementsByClassName("task")) { | |
127 | if (task !== target && this.getPriority(task) > priority) { | |
128 | task.parentElement!.insertBefore(target, task); | |
43f3cc0c | 129 | return target; |
68a72fde SW |
130 | } |
131 | } | |
132 | document.getElementById("tasks")!.appendChild(target); | |
43f3cc0c | 133 | return target; |
68a72fde SW |
134 | }, |
135 | ||
01f41859 SW |
136 | setState: function (stateTimestamp: string, createTimestamp: string, state: string) { |
137 | const task = this.getTask(createTimestamp); | |
138 | if (task) { | |
5350da9f | 139 | task.setAttribute("data-state", state); |
01f41859 | 140 | } |
799f4e89 | 141 | }, |
13c97b99 | 142 | }; |
f1afad9b | 143 | |
d03daa19 | 144 | function Log(prefix: string = "vp-") { |
60a63831 SW |
145 | var next_log_index = 0; |
146 | return { | |
e88c099c | 147 | apply: function (entry: string) { |
60a63831 SW |
148 | const [timestamp, command, data] = splitN(entry, " ", 2); |
149 | if (command == "Create") { | |
6d01c406 | 150 | return Model.addTask(timestamp, data); |
60a63831 | 151 | } |
7b574407 SW |
152 | if (command == "Edit") { |
153 | const [createTimestamp, description] = splitN(data, " ", 1); | |
154 | return Model.edit(createTimestamp, description); | |
155 | } | |
68a72fde SW |
156 | if (command == "Priority") { |
157 | const [createTimestamp, newPriority] = splitN(data, " ", 1); | |
6d01c406 | 158 | return Model.setPriority(createTimestamp, parseFloat(newPriority)); |
68a72fde | 159 | } |
6a5644f3 SW |
160 | if (command == "State") { |
161 | const [createTimestamp, state] = splitN(data, " ", 1); | |
162 | return Model.setState(timestamp, createTimestamp, state); | |
163 | } | |
7b5b90b9 SW |
164 | if (command == "Tag") { |
165 | const [createTimestamp, tag] = splitN(data, " ", 1); | |
166 | return Model.addTag(createTimestamp, tag); | |
167 | } | |
60a63831 SW |
168 | }, |
169 | ||
e88c099c | 170 | record: function (entry: string) { |
d03daa19 | 171 | window.localStorage.setItem(`${prefix}${next_log_index++}`, entry); |
60a63831 SW |
172 | }, |
173 | ||
e88c099c SW |
174 | recordAndApply: function (entry: string) { |
175 | this.record(entry); | |
6d01c406 | 176 | return this.apply(entry); |
60a63831 SW |
177 | }, |
178 | ||
179 | replay: function () { | |
180 | while (true) { | |
d03daa19 | 181 | const entry = window.localStorage.getItem(`${prefix}${next_log_index}`); |
60a63831 SW |
182 | if (entry === null) { |
183 | break; | |
184 | } | |
e88c099c | 185 | this.apply(entry); |
60a63831 SW |
186 | next_log_index++; |
187 | } | |
188 | }, | |
189 | }; | |
d03daa19 SW |
190 | } |
191 | const log = Log(); | |
262705dd | 192 | |
b56a37d3 SW |
193 | function UI() { |
194 | const undoLog: string[] = []; | |
195 | return { | |
196 | addTask: function (description: string): Element { | |
197 | const now = clock.now(); | |
198 | undoLog.push(`State ${now} deleted`); | |
199 | return <Element>log.recordAndApply(`${now} Create ${description}`); | |
200 | }, | |
7b5b90b9 SW |
201 | addTag: function (createTimestamp: string, tag: string) { |
202 | // TODO: undo | |
203 | return log.recordAndApply(`${clock.now()} Tag ${createTimestamp} ${tag}`); | |
204 | }, | |
b56a37d3 SW |
205 | edit: function (createTimestamp: string, newDescription: string, oldDescription: string) { |
206 | undoLog.push(`Edit ${createTimestamp} ${oldDescription}`); | |
207 | return log.recordAndApply(`${clock.now()} Edit ${createTimestamp} ${newDescription}`); | |
208 | }, | |
209 | setPriority: function (createTimestamp: string, newPriority: number, oldPriority: number) { | |
210 | undoLog.push(`Priority ${createTimestamp} ${oldPriority}`); | |
211 | return log.recordAndApply(`${clock.now()} Priority ${createTimestamp} ${newPriority}`); | |
212 | }, | |
213 | setState: function (createTimestamp: string, newState: string, oldState: string) { | |
214 | undoLog.push(`State ${createTimestamp} ${oldState}`); | |
215 | return log.recordAndApply(`${clock.now()} State ${createTimestamp} ${newState}`); | |
216 | }, | |
217 | undo: function () { | |
218 | if (undoLog.length > 0) { | |
219 | return log.recordAndApply(`${clock.now()} ${undoLog.pop()}`); | |
220 | } | |
221 | }, | |
222 | }; | |
223 | } | |
224 | const ui = UI(); | |
e88c099c | 225 | |
ad72cd51 SW |
226 | enum CommitOrAbort { |
227 | Commit, | |
228 | Abort, | |
229 | } | |
230 | ||
ada060d7 | 231 | function BrowserUI() { |
868667c1 | 232 | var currentViewState = "todo"; |
a59fbe41 | 233 | var taskFocusedBeforeJumpingToInput: HTMLElement | null = null; |
09cd65ad | 234 | var lastTagNameEntered = ""; |
ada060d7 SW |
235 | return { |
236 | addTask: function (event: KeyboardEvent) { | |
237 | const input = <HTMLInputElement>document.getElementById("taskName"); | |
fb19ac80 SW |
238 | if (input.value.match(/^ *$/)) return; |
239 | const task = ui.addTask(input.value); | |
240 | if (currentViewState === "todo") { | |
241 | task instanceof HTMLElement && task.focus(); | |
242 | } else if (this.returnFocusAfterInput()) { | |
243 | } else { | |
244 | this.firstVisibleTask()?.focus(); | |
245 | } | |
246 | input.value = ""; | |
247 | if (event.getModifierState("Control")) { | |
248 | this.setPriority(task, null, document.getElementsByClassName("task")[0]); | |
bc7996fe | 249 | } |
ada060d7 | 250 | }, |
09657615 | 251 | |
ada060d7 SW |
252 | beginEdit: function (event: Event) { |
253 | const task = document.activeElement; | |
254 | if (!task) return; | |
255 | const input = document.createElement("input"); | |
26737687 SW |
256 | const desc = task.getElementsByClassName("desc")[0]; |
257 | const oldDescription = desc.textContent!; | |
ada060d7 SW |
258 | task.setAttribute("data-description", oldDescription); |
259 | input.value = oldDescription; | |
260 | input.addEventListener("blur", this.completeEdit, { once: true }); | |
26737687 | 261 | desc.textContent = ""; |
7b5b90b9 SW |
262 | task.insertBefore(input, task.firstChild); |
263 | input.focus(); | |
264 | event.preventDefault(); | |
265 | }, | |
266 | ||
267 | beginTagEdit: function (event: Event) { | |
268 | const task = document.activeElement; | |
269 | if (!task) return; | |
270 | const input = document.createElement("input"); | |
271 | input.classList.add("tag"); | |
272 | input.addEventListener("blur", this.completeTagEdit, { once: true }); | |
09cd65ad | 273 | input.value = lastTagNameEntered; |
ada060d7 SW |
274 | task.appendChild(input); |
275 | input.focus(); | |
09cd65ad | 276 | input.select(); |
ada060d7 SW |
277 | event.preventDefault(); |
278 | }, | |
7b574407 | 279 | |
ad72cd51 | 280 | completeEdit: function (event: Event, resolution: CommitOrAbort = CommitOrAbort.Commit) { |
ada060d7 SW |
281 | const input = event.target as HTMLInputElement; |
282 | const task = input.parentElement!; | |
26737687 | 283 | const desc = task.getElementsByClassName("desc")[0]; |
ada060d7 SW |
284 | const oldDescription = task.getAttribute("data-description")!; |
285 | const newDescription = input.value; | |
286 | input.removeEventListener("blur", this.completeEdit); | |
132921e6 | 287 | task.removeChild(input); |
ada060d7 SW |
288 | task.removeAttribute("data-description"); |
289 | task.focus(); | |
fb19ac80 | 290 | if (resolution === CommitOrAbort.Abort || newDescription.match(/^ *$/) || newDescription === oldDescription) { |
26737687 | 291 | desc.textContent = oldDescription; |
ada060d7 | 292 | } else { |
b56a37d3 | 293 | ui.edit(task.getAttribute("data-created")!, newDescription, oldDescription); |
ada060d7 SW |
294 | } |
295 | }, | |
7b574407 | 296 | |
7b5b90b9 SW |
297 | completeTagEdit: function (event: Event, resolution: CommitOrAbort = CommitOrAbort.Commit) { |
298 | const input = event.target as HTMLInputElement; | |
299 | const task = input.parentElement!; | |
300 | const newTagName = input.value; | |
301 | input.removeEventListener("blur", this.completeTagEdit); | |
302 | task.removeChild(input); | |
303 | task.focus(); | |
fb19ac80 | 304 | if (resolution === CommitOrAbort.Commit && !newTagName.match(/^ *$/) && !Model.hasTag(task, newTagName)) { |
e1eb33ad | 305 | ui.addTag(task.getAttribute("data-created")!, newTagName); |
09cd65ad | 306 | lastTagNameEntered = newTagName; |
e1eb33ad | 307 | } |
7b5b90b9 SW |
308 | }, |
309 | ||
ada060d7 SW |
310 | firstVisibleTask: function () { |
311 | for (const task of document.getElementsByClassName("task")) { | |
868667c1 | 312 | if (task instanceof HTMLElement && task.getAttribute("data-state") === currentViewState) { |
ada060d7 SW |
313 | return task; |
314 | } | |
65a7510d | 315 | } |
ada060d7 | 316 | }, |
caa93fd1 | 317 | |
ada060d7 | 318 | focusTaskNameInput: function (event: Event) { |
a59fbe41 SW |
319 | if (document.activeElement instanceof HTMLElement) { |
320 | taskFocusedBeforeJumpingToInput = document.activeElement; | |
321 | } | |
ada060d7 SW |
322 | document.getElementById("taskName")!.focus(); |
323 | event.preventDefault(); | |
324 | }, | |
09657615 | 325 | |
ada060d7 SW |
326 | visibleTaskAtOffset(task: Element, offset: number): Element { |
327 | var cursor: Element | null = task; | |
328 | var valid_cursor = cursor; | |
329 | const increment = offset / Math.abs(offset); | |
330 | while (true) { | |
331 | cursor = increment > 0 ? cursor.nextElementSibling : cursor.previousElementSibling; | |
332 | if (!cursor || !(cursor instanceof HTMLElement)) break; | |
868667c1 | 333 | if (cursor.getAttribute("data-state")! === currentViewState) { |
ada060d7 SW |
334 | offset -= increment; |
335 | valid_cursor = cursor; | |
336 | } | |
337 | if (Math.abs(offset) < 0.5) break; | |
5fa4704c | 338 | } |
ada060d7 SW |
339 | return valid_cursor; |
340 | }, | |
23be73e3 | 341 | |
ada060d7 SW |
342 | moveCursor: function (offset: number): boolean { |
343 | const active = document.activeElement; | |
344 | if (!active) return false; | |
345 | const dest = this.visibleTaskAtOffset(active, offset); | |
346 | if (dest !== active && dest instanceof HTMLElement) { | |
347 | dest.focus(); | |
348 | return true; | |
349 | } | |
350 | return false; | |
351 | }, | |
01f41859 | 352 | |
ada060d7 SW |
353 | moveTask: function (offset: number) { |
354 | const active = document.activeElement; | |
355 | if (!active) return; | |
356 | const dest = this.visibleTaskAtOffset(active, offset); | |
357 | if (dest === active) return; // Already extremal | |
358 | var onePastDest: Element | null = this.visibleTaskAtOffset(dest, offset / Math.abs(offset)); | |
359 | if (onePastDest == dest) onePastDest = null; // Will become extremal | |
360 | if (offset > 0) { | |
361 | this.setPriority(active, dest, onePastDest); | |
362 | } else { | |
363 | this.setPriority(active, onePastDest, dest); | |
364 | } | |
365 | }, | |
68a72fde | 366 | |
a59fbe41 SW |
367 | returnFocusAfterInput: function (): boolean { |
368 | if (taskFocusedBeforeJumpingToInput) { | |
369 | taskFocusedBeforeJumpingToInput.focus(); | |
370 | return true; | |
371 | } | |
372 | return false; | |
373 | }, | |
374 | ||
ada060d7 SW |
375 | // Change task's priority to be between other tasks a and b. |
376 | setPriority: function (task: Element, a: Element | null, b: Element | null) { | |
377 | const aPriority = a === null ? 0 : Model.getPriority(a); | |
378 | const bPriority = b === null ? clock.now() : Model.getPriority(b); | |
379 | console.assert(aPriority < bPriority, aPriority, "<", bPriority); | |
380 | const span = bPriority - aPriority; | |
381 | const newPriority = aPriority + 0.1 * span + 0.8 * span * Math.random(); | |
382 | console.assert(aPriority < newPriority && newPriority < bPriority, aPriority, "<", newPriority, "<", bPriority); | |
383 | const newPriorityRounded = Math.round(newPriority); | |
384 | const okToRound = aPriority < newPriorityRounded && newPriorityRounded < bPriority; | |
b56a37d3 | 385 | ui.setPriority(task.getAttribute("data-created")!, okToRound ? newPriorityRounded : newPriority, Model.getPriority(task)); |
ada060d7 SW |
386 | task instanceof HTMLElement && task.focus(); |
387 | }, | |
68a72fde | 388 | |
ada060d7 SW |
389 | setState: function (newState: string) { |
390 | const task = document.activeElement; | |
391 | if (!task) return; | |
392 | const oldState = task.getAttribute("data-state")!; | |
393 | if (newState === oldState) return; | |
394 | const createTimestamp = task.getAttribute("data-created")!; | |
395 | this.moveCursor(1) || this.moveCursor(-1); | |
b56a37d3 | 396 | return ui.setState(createTimestamp, newState, oldState); |
ada060d7 | 397 | }, |
43f3cc0c | 398 | |
4c532769 | 399 | setView: function (state: string, color: string) { |
868667c1 SW |
400 | const sheet = (document.getElementById("viewStyle") as HTMLStyleElement).sheet!; |
401 | sheet.insertRule(`.task:not([data-state=${state}]) { display: none }`); | |
4c532769 SW |
402 | sheet.insertRule(`:root { --view-state-indicator-color: ${color}; }`); |
403 | sheet.removeRule(2); | |
404 | sheet.removeRule(2); | |
868667c1 SW |
405 | currentViewState = state; |
406 | if (document.activeElement?.getAttribute("data-state") !== state) { | |
407 | this.firstVisibleTask()?.focus(); | |
408 | } | |
409 | }, | |
410 | ||
ada060d7 | 411 | undo: function () { |
b56a37d3 | 412 | const ret = ui.undo(); |
ada060d7 SW |
413 | if (ret && ret instanceof HTMLElement) ret.focus(); |
414 | }, | |
415 | }; | |
416 | } | |
417 | const browserUI = BrowserUI(); | |
06ee32a1 | 418 | |
e94e9f27 SW |
419 | enum InputState { |
420 | Command, | |
854992ec | 421 | View, |
e94e9f27 SW |
422 | } |
423 | var inputState = InputState.Command; | |
424 | ||
f1afad9b | 425 | function handleKey(event: any) { |
a26b1f4b | 426 | if (event.target.tagName === "INPUT") { |
7b574407 | 427 | if (event.target.id === "taskName") { |
ada060d7 | 428 | if (event.key == "Enter") return browserUI.addTask(event); |
a59fbe41 | 429 | if (event.key == "Escape") return browserUI.returnFocusAfterInput(); |
7b5b90b9 SW |
430 | } else if (event.target.classList.contains("tag")) { |
431 | if (event.key == "Enter") return browserUI.completeTagEdit(event); | |
432 | if (event.key == "Escape") return browserUI.completeTagEdit(event, CommitOrAbort.Abort); | |
7b574407 | 433 | } else { |
ada060d7 | 434 | if (event.key == "Enter") return browserUI.completeEdit(event); |
ad72cd51 | 435 | if (event.key == "Escape") return browserUI.completeEdit(event, CommitOrAbort.Abort); |
7b574407 | 436 | } |
a26b1f4b | 437 | } else { |
e94e9f27 | 438 | if (inputState === InputState.Command) { |
ada060d7 SW |
439 | if (event.key == "j") return browserUI.moveCursor(1); |
440 | if (event.key == "k") return browserUI.moveCursor(-1); | |
441 | if (event.key == "J") return browserUI.moveTask(1); | |
442 | if (event.key == "K") return browserUI.moveTask(-1); | |
443 | if (event.key == "n") return browserUI.focusTaskNameInput(event); | |
ada060d7 | 444 | if (event.key == "c") return browserUI.setState("cancelled"); |
868667c1 | 445 | if (event.key == "d") return browserUI.setState("done"); |
1f300e10 | 446 | if (event.key == "q") return browserUI.setState("todo"); |
868667c1 | 447 | if (event.key == "s") return browserUI.setState("someday-maybe"); |
868667c1 | 448 | if (event.key == "w") return browserUI.setState("waiting"); |
ada060d7 SW |
449 | if (event.key == "X") return browserUI.setState("deleted"); |
450 | if (event.key == "u") return browserUI.undo(); | |
451 | if (event.key == "e") return browserUI.beginEdit(event); | |
7b5b90b9 | 452 | if (event.key == "t") return browserUI.beginTagEdit(event); |
854992ec SW |
453 | if (event.key == "v") return (inputState = InputState.View); |
454 | } else if (inputState === InputState.View) { | |
868667c1 | 455 | inputState = InputState.Command; |
4c532769 SW |
456 | if (event.key == "c") return browserUI.setView("cancelled", "Red"); |
457 | if (event.key == "d") return browserUI.setView("done", "LawnGreen"); | |
458 | if (event.key == "q") return browserUI.setView("todo", "White"); | |
459 | if (event.key == "s") return browserUI.setView("someday-maybe", "DeepSkyBlue"); | |
460 | if (event.key == "w") return browserUI.setView("waiting", "MediumOrchid"); | |
461 | if (event.key == "x") return browserUI.setView("deleted", "Black"); | |
e94e9f27 | 462 | } |
f1afad9b SW |
463 | } |
464 | } | |
465 | ||
f1afad9b | 466 | function browserInit() { |
d03daa19 | 467 | log.replay(); |
ada060d7 | 468 | browserUI.firstVisibleTask()?.focus(); |
bd267c29 | 469 | document.body.addEventListener("keydown", handleKey, { capture: false }); |
f1afad9b | 470 | } |