]>
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 | ||
0726872b SW |
122 | removeTag: function (createTimestamp: string, tagName: string) { |
123 | const task = this.getTask(createTimestamp); | |
124 | if (!task) return null; | |
125 | const tag = this.hasTag(task, tagName); | |
126 | if (!tag) return; | |
127 | task.removeChild(tag); | |
b5f15e0e | 128 | if (task instanceof HTMLElement) task.focus(); |
0726872b SW |
129 | }, |
130 | ||
43f3cc0c | 131 | setPriority: function (createTimestamp: string, priority: number): Element | null { |
68a72fde | 132 | const target = this.getTask(createTimestamp); |
43f3cc0c | 133 | if (!target) return null; |
68a72fde SW |
134 | target.setAttribute("data-priority", `${priority}`); |
135 | for (const task of document.getElementsByClassName("task")) { | |
136 | if (task !== target && this.getPriority(task) > priority) { | |
137 | task.parentElement!.insertBefore(target, task); | |
43f3cc0c | 138 | return target; |
68a72fde SW |
139 | } |
140 | } | |
141 | document.getElementById("tasks")!.appendChild(target); | |
43f3cc0c | 142 | return target; |
68a72fde SW |
143 | }, |
144 | ||
01f41859 SW |
145 | setState: function (stateTimestamp: string, createTimestamp: string, state: string) { |
146 | const task = this.getTask(createTimestamp); | |
b5ac5cc3 SW |
147 | if (!task) return; |
148 | task.setAttribute("data-state", state); | |
149 | var date = task.getElementsByClassName("statedate")[0]; | |
150 | if (state === "todo") { | |
151 | task.removeChild(date); | |
152 | return; | |
01f41859 | 153 | } |
b5ac5cc3 SW |
154 | if (!date) { |
155 | date = document.createElement("span"); | |
156 | date.classList.add("statedate"); | |
157 | task.insertBefore(date, task.firstChild); | |
158 | } | |
159 | const d = new Date(parseInt(stateTimestamp)); | |
160 | date.textContent = `${d.getFullYear()}-${`${d.getMonth() + 1}`.padStart(2, "0")}-${`${d.getDate()}`.padStart(2, "0")}`; | |
799f4e89 | 161 | }, |
13c97b99 | 162 | }; |
f1afad9b | 163 | |
d03daa19 | 164 | function Log(prefix: string = "vp-") { |
60a63831 SW |
165 | var next_log_index = 0; |
166 | return { | |
e88c099c | 167 | apply: function (entry: string) { |
60a63831 SW |
168 | const [timestamp, command, data] = splitN(entry, " ", 2); |
169 | if (command == "Create") { | |
6d01c406 | 170 | return Model.addTask(timestamp, data); |
60a63831 | 171 | } |
7b574407 SW |
172 | if (command == "Edit") { |
173 | const [createTimestamp, description] = splitN(data, " ", 1); | |
174 | return Model.edit(createTimestamp, description); | |
175 | } | |
68a72fde SW |
176 | if (command == "Priority") { |
177 | const [createTimestamp, newPriority] = splitN(data, " ", 1); | |
6d01c406 | 178 | return Model.setPriority(createTimestamp, parseFloat(newPriority)); |
68a72fde | 179 | } |
6a5644f3 SW |
180 | if (command == "State") { |
181 | const [createTimestamp, state] = splitN(data, " ", 1); | |
182 | return Model.setState(timestamp, createTimestamp, state); | |
183 | } | |
7b5b90b9 SW |
184 | if (command == "Tag") { |
185 | const [createTimestamp, tag] = splitN(data, " ", 1); | |
186 | return Model.addTag(createTimestamp, tag); | |
187 | } | |
0726872b SW |
188 | if (command == "Untag") { |
189 | const [createTimestamp, tag] = splitN(data, " ", 1); | |
190 | return Model.removeTag(createTimestamp, tag); | |
191 | } | |
60a63831 SW |
192 | }, |
193 | ||
e88c099c | 194 | record: function (entry: string) { |
d03daa19 | 195 | window.localStorage.setItem(`${prefix}${next_log_index++}`, entry); |
60a63831 SW |
196 | }, |
197 | ||
e88c099c SW |
198 | recordAndApply: function (entry: string) { |
199 | this.record(entry); | |
6d01c406 | 200 | return this.apply(entry); |
60a63831 SW |
201 | }, |
202 | ||
203 | replay: function () { | |
204 | while (true) { | |
d03daa19 | 205 | const entry = window.localStorage.getItem(`${prefix}${next_log_index}`); |
60a63831 SW |
206 | if (entry === null) { |
207 | break; | |
208 | } | |
e88c099c | 209 | this.apply(entry); |
60a63831 SW |
210 | next_log_index++; |
211 | } | |
212 | }, | |
213 | }; | |
d03daa19 SW |
214 | } |
215 | const log = Log(); | |
262705dd | 216 | |
b56a37d3 SW |
217 | function UI() { |
218 | const undoLog: string[] = []; | |
76825ecd SW |
219 | function perform(forward: string, reverse: string) { |
220 | undoLog.push(reverse); | |
221 | return log.recordAndApply(`${clock.now()} ${forward}`); | |
222 | } | |
b56a37d3 SW |
223 | return { |
224 | addTask: function (description: string): Element { | |
225 | const now = clock.now(); | |
226 | undoLog.push(`State ${now} deleted`); | |
227 | return <Element>log.recordAndApply(`${now} Create ${description}`); | |
228 | }, | |
7b5b90b9 | 229 | addTag: function (createTimestamp: string, tag: string) { |
76825ecd | 230 | return perform(`Tag ${createTimestamp} ${tag}`, `Untag ${createTimestamp} ${tag}`); |
7b5b90b9 | 231 | }, |
b56a37d3 | 232 | edit: function (createTimestamp: string, newDescription: string, oldDescription: string) { |
76825ecd | 233 | return perform(`Edit ${createTimestamp} ${newDescription}`, `Edit ${createTimestamp} ${oldDescription}`); |
b56a37d3 | 234 | }, |
b5f15e0e | 235 | removeTag: function (createTimestamp: string, tag: string) { |
76825ecd | 236 | return perform(`Untag ${createTimestamp} ${tag}`, `Tag ${createTimestamp} ${tag}`); |
b5f15e0e | 237 | }, |
b56a37d3 | 238 | setPriority: function (createTimestamp: string, newPriority: number, oldPriority: number) { |
76825ecd | 239 | return perform(`Priority ${createTimestamp} ${newPriority}`, `Priority ${createTimestamp} ${oldPriority}`); |
b56a37d3 SW |
240 | }, |
241 | setState: function (createTimestamp: string, newState: string, oldState: string) { | |
76825ecd | 242 | return perform(`State ${createTimestamp} ${newState}`, `State ${createTimestamp} ${oldState}`); |
b56a37d3 SW |
243 | }, |
244 | undo: function () { | |
245 | if (undoLog.length > 0) { | |
246 | return log.recordAndApply(`${clock.now()} ${undoLog.pop()}`); | |
247 | } | |
248 | }, | |
249 | }; | |
250 | } | |
251 | const ui = UI(); | |
e88c099c | 252 | |
ad72cd51 SW |
253 | enum CommitOrAbort { |
254 | Commit, | |
255 | Abort, | |
256 | } | |
257 | ||
ada060d7 | 258 | function BrowserUI() { |
868667c1 | 259 | var currentViewState = "todo"; |
a59fbe41 | 260 | var taskFocusedBeforeJumpingToInput: HTMLElement | null = null; |
09cd65ad | 261 | var lastTagNameEntered = ""; |
ada060d7 SW |
262 | return { |
263 | addTask: function (event: KeyboardEvent) { | |
264 | const input = <HTMLInputElement>document.getElementById("taskName"); | |
fb19ac80 SW |
265 | if (input.value.match(/^ *$/)) return; |
266 | const task = ui.addTask(input.value); | |
cddbdce1 | 267 | if (currentViewState === "todo" || currentViewState === "all") { |
fb19ac80 SW |
268 | task instanceof HTMLElement && task.focus(); |
269 | } else if (this.returnFocusAfterInput()) { | |
270 | } else { | |
271 | this.firstVisibleTask()?.focus(); | |
272 | } | |
273 | input.value = ""; | |
274 | if (event.getModifierState("Control")) { | |
792b8a18 | 275 | this.makeTopPriority(task); |
bc7996fe | 276 | } |
ada060d7 | 277 | }, |
09657615 | 278 | |
ada060d7 SW |
279 | beginEdit: function (event: Event) { |
280 | const task = document.activeElement; | |
281 | if (!task) return; | |
282 | const input = document.createElement("input"); | |
26737687 SW |
283 | const desc = task.getElementsByClassName("desc")[0]; |
284 | const oldDescription = desc.textContent!; | |
ada060d7 SW |
285 | task.setAttribute("data-description", oldDescription); |
286 | input.value = oldDescription; | |
287 | input.addEventListener("blur", this.completeEdit, { once: true }); | |
26737687 | 288 | desc.textContent = ""; |
7b5b90b9 SW |
289 | task.insertBefore(input, task.firstChild); |
290 | input.focus(); | |
291 | event.preventDefault(); | |
292 | }, | |
293 | ||
294 | beginTagEdit: function (event: Event) { | |
295 | const task = document.activeElement; | |
296 | if (!task) return; | |
297 | const input = document.createElement("input"); | |
298 | input.classList.add("tag"); | |
299 | input.addEventListener("blur", this.completeTagEdit, { once: true }); | |
09cd65ad | 300 | input.value = lastTagNameEntered; |
ada060d7 SW |
301 | task.appendChild(input); |
302 | input.focus(); | |
09cd65ad | 303 | input.select(); |
ada060d7 SW |
304 | event.preventDefault(); |
305 | }, | |
7b574407 | 306 | |
ad72cd51 | 307 | completeEdit: function (event: Event, resolution: CommitOrAbort = CommitOrAbort.Commit) { |
ada060d7 SW |
308 | const input = event.target as HTMLInputElement; |
309 | const task = input.parentElement!; | |
26737687 | 310 | const desc = task.getElementsByClassName("desc")[0]; |
ada060d7 SW |
311 | const oldDescription = task.getAttribute("data-description")!; |
312 | const newDescription = input.value; | |
313 | input.removeEventListener("blur", this.completeEdit); | |
132921e6 | 314 | task.removeChild(input); |
ada060d7 SW |
315 | task.removeAttribute("data-description"); |
316 | task.focus(); | |
fb19ac80 | 317 | if (resolution === CommitOrAbort.Abort || newDescription.match(/^ *$/) || newDescription === oldDescription) { |
26737687 | 318 | desc.textContent = oldDescription; |
ada060d7 | 319 | } else { |
b56a37d3 | 320 | ui.edit(task.getAttribute("data-created")!, newDescription, oldDescription); |
ada060d7 SW |
321 | } |
322 | }, | |
7b574407 | 323 | |
7b5b90b9 SW |
324 | completeTagEdit: function (event: Event, resolution: CommitOrAbort = CommitOrAbort.Commit) { |
325 | const input = event.target as HTMLInputElement; | |
326 | const task = input.parentElement!; | |
327 | const newTagName = input.value; | |
328 | input.removeEventListener("blur", this.completeTagEdit); | |
329 | task.removeChild(input); | |
330 | task.focus(); | |
fb19ac80 | 331 | if (resolution === CommitOrAbort.Commit && !newTagName.match(/^ *$/) && !Model.hasTag(task, newTagName)) { |
e1eb33ad | 332 | ui.addTag(task.getAttribute("data-created")!, newTagName); |
09cd65ad | 333 | lastTagNameEntered = newTagName; |
e1eb33ad | 334 | } |
7b5b90b9 SW |
335 | }, |
336 | ||
ada060d7 SW |
337 | firstVisibleTask: function () { |
338 | for (const task of document.getElementsByClassName("task")) { | |
cddbdce1 SW |
339 | const state = task.getAttribute("data-state"); |
340 | if (task instanceof HTMLElement && (state === currentViewState || (currentViewState === "all" && state !== "deleted"))) { | |
ada060d7 SW |
341 | return task; |
342 | } | |
65a7510d | 343 | } |
ada060d7 | 344 | }, |
caa93fd1 | 345 | |
ada060d7 | 346 | focusTaskNameInput: function (event: Event) { |
a59fbe41 SW |
347 | if (document.activeElement instanceof HTMLElement) { |
348 | taskFocusedBeforeJumpingToInput = document.activeElement; | |
349 | } | |
ada060d7 SW |
350 | document.getElementById("taskName")!.focus(); |
351 | event.preventDefault(); | |
352 | }, | |
09657615 | 353 | |
ada060d7 SW |
354 | visibleTaskAtOffset(task: Element, offset: number): Element { |
355 | var cursor: Element | null = task; | |
356 | var valid_cursor = cursor; | |
357 | const increment = offset / Math.abs(offset); | |
358 | while (true) { | |
359 | cursor = increment > 0 ? cursor.nextElementSibling : cursor.previousElementSibling; | |
360 | if (!cursor || !(cursor instanceof HTMLElement)) break; | |
cddbdce1 SW |
361 | const state = cursor.getAttribute("data-state")!; |
362 | if (state === currentViewState || (currentViewState === "all" && state !== "deleted")) { | |
ada060d7 SW |
363 | offset -= increment; |
364 | valid_cursor = cursor; | |
365 | } | |
366 | if (Math.abs(offset) < 0.5) break; | |
5fa4704c | 367 | } |
ada060d7 SW |
368 | return valid_cursor; |
369 | }, | |
23be73e3 | 370 | |
55a4baa8 SW |
371 | makeTopPriority: function (task: Element | null = null) { |
372 | if (!task) task = document.activeElement; | |
373 | if (!task) return; | |
792b8a18 SW |
374 | this.setPriority(task, null, document.getElementsByClassName("task")[0]); |
375 | }, | |
376 | ||
ada060d7 SW |
377 | moveCursor: function (offset: number): boolean { |
378 | const active = document.activeElement; | |
379 | if (!active) return false; | |
380 | const dest = this.visibleTaskAtOffset(active, offset); | |
381 | if (dest !== active && dest instanceof HTMLElement) { | |
382 | dest.focus(); | |
383 | return true; | |
384 | } | |
385 | return false; | |
386 | }, | |
01f41859 | 387 | |
ada060d7 SW |
388 | moveTask: function (offset: number) { |
389 | const active = document.activeElement; | |
390 | if (!active) return; | |
391 | const dest = this.visibleTaskAtOffset(active, offset); | |
392 | if (dest === active) return; // Already extremal | |
393 | var onePastDest: Element | null = this.visibleTaskAtOffset(dest, offset / Math.abs(offset)); | |
394 | if (onePastDest == dest) onePastDest = null; // Will become extremal | |
395 | if (offset > 0) { | |
396 | this.setPriority(active, dest, onePastDest); | |
397 | } else { | |
398 | this.setPriority(active, onePastDest, dest); | |
399 | } | |
400 | }, | |
68a72fde | 401 | |
b5f15e0e | 402 | removeTag: function () { |
4ccaa1d6 SW |
403 | var target = document.activeElement; |
404 | if (!target) return; | |
405 | if (target.classList.contains("task")) { | |
406 | const tags = target.getElementsByClassName("tag"); | |
407 | target = tags[tags.length - 1]; | |
408 | } | |
409 | if (!target || !target.classList.contains("tag")) return; | |
410 | ui.removeTag(target.parentElement!.getAttribute("data-created")!, target.textContent!); | |
b5f15e0e SW |
411 | }, |
412 | ||
a59fbe41 SW |
413 | returnFocusAfterInput: function (): boolean { |
414 | if (taskFocusedBeforeJumpingToInput) { | |
415 | taskFocusedBeforeJumpingToInput.focus(); | |
416 | return true; | |
417 | } | |
418 | return false; | |
419 | }, | |
420 | ||
ada060d7 SW |
421 | // Change task's priority to be between other tasks a and b. |
422 | setPriority: function (task: Element, a: Element | null, b: Element | null) { | |
423 | const aPriority = a === null ? 0 : Model.getPriority(a); | |
424 | const bPriority = b === null ? clock.now() : Model.getPriority(b); | |
425 | console.assert(aPriority < bPriority, aPriority, "<", bPriority); | |
426 | const span = bPriority - aPriority; | |
427 | const newPriority = aPriority + 0.1 * span + 0.8 * span * Math.random(); | |
428 | console.assert(aPriority < newPriority && newPriority < bPriority, aPriority, "<", newPriority, "<", bPriority); | |
429 | const newPriorityRounded = Math.round(newPriority); | |
430 | const okToRound = aPriority < newPriorityRounded && newPriorityRounded < bPriority; | |
b56a37d3 | 431 | ui.setPriority(task.getAttribute("data-created")!, okToRound ? newPriorityRounded : newPriority, Model.getPriority(task)); |
ada060d7 SW |
432 | task instanceof HTMLElement && task.focus(); |
433 | }, | |
68a72fde | 434 | |
ada060d7 SW |
435 | setState: function (newState: string) { |
436 | const task = document.activeElement; | |
437 | if (!task) return; | |
438 | const oldState = task.getAttribute("data-state")!; | |
439 | if (newState === oldState) return; | |
440 | const createTimestamp = task.getAttribute("data-created")!; | |
cddbdce1 SW |
441 | if (currentViewState !== "all" || newState == "deleted") { |
442 | this.moveCursor(1) || this.moveCursor(-1); | |
443 | } | |
b56a37d3 | 444 | return ui.setState(createTimestamp, newState, oldState); |
ada060d7 | 445 | }, |
43f3cc0c | 446 | |
4c532769 | 447 | setView: function (state: string, color: string) { |
868667c1 | 448 | const sheet = (document.getElementById("viewStyle") as HTMLStyleElement).sheet!; |
cddbdce1 SW |
449 | if (state === "all") { |
450 | sheet.insertRule(`.task[data-state=deleted] { display: none }`); | |
451 | } else { | |
452 | sheet.insertRule(`.task:not([data-state=${state}]) { display: none }`); | |
453 | } | |
4c532769 SW |
454 | sheet.insertRule(`:root { --view-state-indicator-color: ${color}; }`); |
455 | sheet.removeRule(2); | |
456 | sheet.removeRule(2); | |
868667c1 SW |
457 | currentViewState = state; |
458 | if (document.activeElement?.getAttribute("data-state") !== state) { | |
459 | this.firstVisibleTask()?.focus(); | |
460 | } | |
461 | }, | |
462 | ||
ada060d7 | 463 | undo: function () { |
b56a37d3 | 464 | const ret = ui.undo(); |
ada060d7 SW |
465 | if (ret && ret instanceof HTMLElement) ret.focus(); |
466 | }, | |
467 | }; | |
468 | } | |
469 | const browserUI = BrowserUI(); | |
06ee32a1 | 470 | |
e94e9f27 | 471 | enum InputState { |
02c8a409 | 472 | Root, |
36ddfad1 | 473 | S, |
02c8a409 | 474 | V, |
36ddfad1 | 475 | VS, |
e94e9f27 | 476 | } |
02c8a409 | 477 | var inputState = InputState.Root; |
e94e9f27 | 478 | |
f1afad9b | 479 | function handleKey(event: any) { |
a26b1f4b | 480 | if (event.target.tagName === "INPUT") { |
7b574407 | 481 | if (event.target.id === "taskName") { |
ada060d7 | 482 | if (event.key == "Enter") return browserUI.addTask(event); |
a59fbe41 | 483 | if (event.key == "Escape") return browserUI.returnFocusAfterInput(); |
7b5b90b9 SW |
484 | } else if (event.target.classList.contains("tag")) { |
485 | if (event.key == "Enter") return browserUI.completeTagEdit(event); | |
486 | if (event.key == "Escape") return browserUI.completeTagEdit(event, CommitOrAbort.Abort); | |
7b574407 | 487 | } else { |
ada060d7 | 488 | if (event.key == "Enter") return browserUI.completeEdit(event); |
ad72cd51 | 489 | if (event.key == "Escape") return browserUI.completeEdit(event, CommitOrAbort.Abort); |
7b574407 | 490 | } |
a26b1f4b | 491 | } else { |
02c8a409 | 492 | if (inputState === InputState.Root) { |
ada060d7 SW |
493 | if (event.key == "j") return browserUI.moveCursor(1); |
494 | if (event.key == "k") return browserUI.moveCursor(-1); | |
495 | if (event.key == "J") return browserUI.moveTask(1); | |
496 | if (event.key == "K") return browserUI.moveTask(-1); | |
55a4baa8 | 497 | if (event.key == "T") return browserUI.makeTopPriority(); |
ada060d7 | 498 | if (event.key == "n") return browserUI.focusTaskNameInput(event); |
ada060d7 | 499 | if (event.key == "c") return browserUI.setState("cancelled"); |
868667c1 | 500 | if (event.key == "d") return browserUI.setState("done"); |
1f300e10 | 501 | if (event.key == "q") return browserUI.setState("todo"); |
36ddfad1 | 502 | if (event.key == "s") return (inputState = InputState.S); |
868667c1 | 503 | if (event.key == "w") return browserUI.setState("waiting"); |
ada060d7 | 504 | if (event.key == "X") return browserUI.setState("deleted"); |
b5f15e0e | 505 | if (event.key == "x") return browserUI.removeTag(); |
ada060d7 SW |
506 | if (event.key == "u") return browserUI.undo(); |
507 | if (event.key == "e") return browserUI.beginEdit(event); | |
7b5b90b9 | 508 | if (event.key == "t") return browserUI.beginTagEdit(event); |
02c8a409 | 509 | if (event.key == "v") return (inputState = InputState.V); |
36ddfad1 SW |
510 | } else if (inputState === InputState.S) { |
511 | inputState = InputState.Root; | |
512 | if (event.key == "m") return browserUI.setState("someday-maybe"); | |
02c8a409 SW |
513 | } else if (inputState === InputState.V) { |
514 | inputState = InputState.Root; | |
cddbdce1 | 515 | if (event.key == "a") return browserUI.setView("all", "Gold"); |
4c532769 SW |
516 | if (event.key == "c") return browserUI.setView("cancelled", "Red"); |
517 | if (event.key == "d") return browserUI.setView("done", "LawnGreen"); | |
518 | if (event.key == "q") return browserUI.setView("todo", "White"); | |
36ddfad1 | 519 | if (event.key == "s") return (inputState = InputState.VS); |
4c9b0554 | 520 | if (event.key == "v") return browserUI.setView("todo", "White"); |
4c532769 SW |
521 | if (event.key == "w") return browserUI.setView("waiting", "MediumOrchid"); |
522 | if (event.key == "x") return browserUI.setView("deleted", "Black"); | |
36ddfad1 SW |
523 | } else if (inputState === InputState.VS) { |
524 | inputState = InputState.Root; | |
525 | if (event.key == "m") return browserUI.setView("someday-maybe", "DeepSkyBlue"); | |
e94e9f27 | 526 | } |
f1afad9b SW |
527 | } |
528 | } | |
529 | ||
f1afad9b | 530 | function browserInit() { |
d03daa19 | 531 | log.replay(); |
ada060d7 | 532 | browserUI.firstVisibleTask()?.focus(); |
bd267c29 | 533 | document.body.addEventListener("keydown", handleKey, { capture: false }); |
f1afad9b | 534 | } |