]> git.scottworley.com Git - vopamoi/blob - vopamoi.ts
Accept "vv" for jumping to the default view
[vopamoi] / vopamoi.ts
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 document.getElementById("tasks")!.appendChild(task);
50 return task;
51 },
52
53 addTag: function (createTimestamp: string, tagName: string): Element | null {
54 const task = this.getTask(createTimestamp);
55 if (!task) return null;
56 const existingTag = this.hasTag(task, tagName);
57 if (existingTag) return existingTag;
58 const tag = document.createElement("span");
59 tag.appendChild(document.createTextNode(tagName));
60 tag.classList.add("tag");
61 tag.setAttribute("tabindex", "0");
62 hashHue(tagName).then((hue) => (tag.style.backgroundColor = `hsl(${hue},90%,45%)`));
63 for (const child of task.getElementsByClassName("tag")) {
64 if (tagName > child.textContent!) {
65 task.insertBefore(tag, child);
66 return tag;
67 }
68 }
69 task.appendChild(tag);
70 return tag;
71 },
72
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.
78 const input = target.firstChild as HTMLInputElement;
79 if (
80 input.value === target.getAttribute("data-description") &&
81 input.selectionStart === input.value.length &&
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;
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 {
93 target.getElementsByClassName("desc")[0].textContent = newDescription;
94 }
95 return target;
96 },
97
98 hasTag: function (task: Element, tag: string): Element | null {
99 for (const child of task.getElementsByClassName("tag")) {
100 if (child.textContent === tag) {
101 return child;
102 }
103 }
104 return null;
105 },
106
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
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
122 setPriority: function (createTimestamp: string, priority: number): Element | null {
123 const target = this.getTask(createTimestamp);
124 if (!target) return null;
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);
129 return target;
130 }
131 }
132 document.getElementById("tasks")!.appendChild(target);
133 return target;
134 },
135
136 setState: function (stateTimestamp: string, createTimestamp: string, state: string) {
137 const task = this.getTask(createTimestamp);
138 if (task) {
139 task.setAttribute("data-state", state);
140 }
141 },
142 };
143
144 function Log(prefix: string = "vp-") {
145 var next_log_index = 0;
146 return {
147 apply: function (entry: string) {
148 const [timestamp, command, data] = splitN(entry, " ", 2);
149 if (command == "Create") {
150 return Model.addTask(timestamp, data);
151 }
152 if (command == "Edit") {
153 const [createTimestamp, description] = splitN(data, " ", 1);
154 return Model.edit(createTimestamp, description);
155 }
156 if (command == "Priority") {
157 const [createTimestamp, newPriority] = splitN(data, " ", 1);
158 return Model.setPriority(createTimestamp, parseFloat(newPriority));
159 }
160 if (command == "State") {
161 const [createTimestamp, state] = splitN(data, " ", 1);
162 return Model.setState(timestamp, createTimestamp, state);
163 }
164 if (command == "Tag") {
165 const [createTimestamp, tag] = splitN(data, " ", 1);
166 return Model.addTag(createTimestamp, tag);
167 }
168 },
169
170 record: function (entry: string) {
171 window.localStorage.setItem(`${prefix}${next_log_index++}`, entry);
172 },
173
174 recordAndApply: function (entry: string) {
175 this.record(entry);
176 return this.apply(entry);
177 },
178
179 replay: function () {
180 while (true) {
181 const entry = window.localStorage.getItem(`${prefix}${next_log_index}`);
182 if (entry === null) {
183 break;
184 }
185 this.apply(entry);
186 next_log_index++;
187 }
188 },
189 };
190 }
191 const log = Log();
192
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 },
201 addTag: function (createTimestamp: string, tag: string) {
202 // TODO: undo
203 return log.recordAndApply(`${clock.now()} Tag ${createTimestamp} ${tag}`);
204 },
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();
225
226 enum CommitOrAbort {
227 Commit,
228 Abort,
229 }
230
231 function BrowserUI() {
232 var currentViewState = "todo";
233 var taskFocusedBeforeJumpingToInput: HTMLElement | null = null;
234 var lastTagNameEntered = "";
235 return {
236 addTask: function (event: KeyboardEvent) {
237 const input = <HTMLInputElement>document.getElementById("taskName");
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]);
249 }
250 },
251
252 beginEdit: function (event: Event) {
253 const task = document.activeElement;
254 if (!task) return;
255 const input = document.createElement("input");
256 const desc = task.getElementsByClassName("desc")[0];
257 const oldDescription = desc.textContent!;
258 task.setAttribute("data-description", oldDescription);
259 input.value = oldDescription;
260 input.addEventListener("blur", this.completeEdit, { once: true });
261 desc.textContent = "";
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 });
273 input.value = lastTagNameEntered;
274 task.appendChild(input);
275 input.focus();
276 input.select();
277 event.preventDefault();
278 },
279
280 completeEdit: function (event: Event, resolution: CommitOrAbort = CommitOrAbort.Commit) {
281 const input = event.target as HTMLInputElement;
282 const task = input.parentElement!;
283 const desc = task.getElementsByClassName("desc")[0];
284 const oldDescription = task.getAttribute("data-description")!;
285 const newDescription = input.value;
286 input.removeEventListener("blur", this.completeEdit);
287 task.removeChild(input);
288 task.removeAttribute("data-description");
289 task.focus();
290 if (resolution === CommitOrAbort.Abort || newDescription.match(/^ *$/) || newDescription === oldDescription) {
291 desc.textContent = oldDescription;
292 } else {
293 ui.edit(task.getAttribute("data-created")!, newDescription, oldDescription);
294 }
295 },
296
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();
304 if (resolution === CommitOrAbort.Commit && !newTagName.match(/^ *$/) && !Model.hasTag(task, newTagName)) {
305 ui.addTag(task.getAttribute("data-created")!, newTagName);
306 lastTagNameEntered = newTagName;
307 }
308 },
309
310 firstVisibleTask: function () {
311 for (const task of document.getElementsByClassName("task")) {
312 if (task instanceof HTMLElement && task.getAttribute("data-state") === currentViewState) {
313 return task;
314 }
315 }
316 },
317
318 focusTaskNameInput: function (event: Event) {
319 if (document.activeElement instanceof HTMLElement) {
320 taskFocusedBeforeJumpingToInput = document.activeElement;
321 }
322 document.getElementById("taskName")!.focus();
323 event.preventDefault();
324 },
325
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;
333 if (cursor.getAttribute("data-state")! === currentViewState) {
334 offset -= increment;
335 valid_cursor = cursor;
336 }
337 if (Math.abs(offset) < 0.5) break;
338 }
339 return valid_cursor;
340 },
341
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 },
352
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 },
366
367 returnFocusAfterInput: function (): boolean {
368 if (taskFocusedBeforeJumpingToInput) {
369 taskFocusedBeforeJumpingToInput.focus();
370 return true;
371 }
372 return false;
373 },
374
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;
385 ui.setPriority(task.getAttribute("data-created")!, okToRound ? newPriorityRounded : newPriority, Model.getPriority(task));
386 task instanceof HTMLElement && task.focus();
387 },
388
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);
396 return ui.setState(createTimestamp, newState, oldState);
397 },
398
399 setView: function (state: string, color: string) {
400 const sheet = (document.getElementById("viewStyle") as HTMLStyleElement).sheet!;
401 sheet.insertRule(`.task:not([data-state=${state}]) { display: none }`);
402 sheet.insertRule(`:root { --view-state-indicator-color: ${color}; }`);
403 sheet.removeRule(2);
404 sheet.removeRule(2);
405 currentViewState = state;
406 if (document.activeElement?.getAttribute("data-state") !== state) {
407 this.firstVisibleTask()?.focus();
408 }
409 },
410
411 undo: function () {
412 const ret = ui.undo();
413 if (ret && ret instanceof HTMLElement) ret.focus();
414 },
415 };
416 }
417 const browserUI = BrowserUI();
418
419 enum InputState {
420 Command,
421 View,
422 }
423 var inputState = InputState.Command;
424
425 function handleKey(event: any) {
426 if (event.target.tagName === "INPUT") {
427 if (event.target.id === "taskName") {
428 if (event.key == "Enter") return browserUI.addTask(event);
429 if (event.key == "Escape") return browserUI.returnFocusAfterInput();
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);
433 } else {
434 if (event.key == "Enter") return browserUI.completeEdit(event);
435 if (event.key == "Escape") return browserUI.completeEdit(event, CommitOrAbort.Abort);
436 }
437 } else {
438 if (inputState === InputState.Command) {
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);
444 if (event.key == "c") return browserUI.setState("cancelled");
445 if (event.key == "d") return browserUI.setState("done");
446 if (event.key == "q") return browserUI.setState("todo");
447 if (event.key == "s") return browserUI.setState("someday-maybe");
448 if (event.key == "w") return browserUI.setState("waiting");
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);
452 if (event.key == "t") return browserUI.beginTagEdit(event);
453 if (event.key == "v") return (inputState = InputState.View);
454 } else if (inputState === InputState.View) {
455 inputState = InputState.Command;
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 == "v") return browserUI.setView("todo", "White");
461 if (event.key == "w") return browserUI.setView("waiting", "MediumOrchid");
462 if (event.key == "x") return browserUI.setView("deleted", "Black");
463 }
464 }
465 }
466
467 function browserInit() {
468 log.replay();
469 browserUI.firstVisibleTask()?.focus();
470 document.body.addEventListener("keydown", handleKey, { capture: false });
471 }