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;
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[] {
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));
16 // A clock that never goes backwards; monotonic.
18 var previousNow = Date.now();
20 now: function (): number {
21 const now = Date.now();
22 if (now > previousNow) {
30 const clock = Clock();
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);
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);
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);
69 task.appendChild(tag);
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;
80 input.value === target.getAttribute("data-description") &&
81 input.selectionStart === input.value.length &&
82 input.selectionEnd === input.value.length
84 // No local changes have actually been made yet. Change the contents of the edit box!
85 input.value = newDescription;
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);
93 target.getElementsByClassName("desc")[0].textContent = newDescription;
98 hasTag: function (task: Element, tag: string): Element | null {
99 for (const child of task.getElementsByClassName("tag")) {
100 if (child.textContent === tag) {
107 getPriority: function (task: Element): number {
108 if (task.hasAttribute("data-priority")) {
109 return parseFloat(task.getAttribute("data-priority")!);
111 return parseFloat(task.getAttribute("data-created")!);
114 getTask: function (createTimestamp: string) {
115 for (const task of document.getElementsByClassName("task")) {
116 if (task.getAttribute("data-created") === createTimestamp) {
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);
127 task.removeChild(tag);
128 if (task instanceof HTMLElement) task.focus();
131 setPriority: function (createTimestamp: string, priority: number): Element | null {
132 const target = this.getTask(createTimestamp);
133 if (!target) return null;
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);
141 document.getElementById("tasks")!.appendChild(target);
145 setState: function (stateTimestamp: string, createTimestamp: string, state: string) {
146 const task = this.getTask(createTimestamp);
148 task.setAttribute("data-state", state);
153 function Log(prefix: string = "vp-") {
154 var next_log_index = 0;
156 apply: function (entry: string) {
157 const [timestamp, command, data] = splitN(entry, " ", 2);
158 if (command == "Create") {
159 return Model.addTask(timestamp, data);
161 if (command == "Edit") {
162 const [createTimestamp, description] = splitN(data, " ", 1);
163 return Model.edit(createTimestamp, description);
165 if (command == "Priority") {
166 const [createTimestamp, newPriority] = splitN(data, " ", 1);
167 return Model.setPriority(createTimestamp, parseFloat(newPriority));
169 if (command == "State") {
170 const [createTimestamp, state] = splitN(data, " ", 1);
171 return Model.setState(timestamp, createTimestamp, state);
173 if (command == "Tag") {
174 const [createTimestamp, tag] = splitN(data, " ", 1);
175 return Model.addTag(createTimestamp, tag);
177 if (command == "Untag") {
178 const [createTimestamp, tag] = splitN(data, " ", 1);
179 return Model.removeTag(createTimestamp, tag);
183 record: function (entry: string) {
184 window.localStorage.setItem(`${prefix}${next_log_index++}`, entry);
187 recordAndApply: function (entry: string) {
189 return this.apply(entry);
192 replay: function () {
194 const entry = window.localStorage.getItem(`${prefix}${next_log_index}`);
195 if (entry === null) {
207 const undoLog: string[] = [];
209 addTask: function (description: string): Element {
210 const now = clock.now();
211 undoLog.push(`State ${now} deleted`);
212 return <Element>log.recordAndApply(`${now} Create ${description}`);
214 addTag: function (createTimestamp: string, tag: string) {
215 undoLog.push(`Untag ${createTimestamp} ${tag}`);
216 return log.recordAndApply(`${clock.now()} Tag ${createTimestamp} ${tag}`);
218 edit: function (createTimestamp: string, newDescription: string, oldDescription: string) {
219 undoLog.push(`Edit ${createTimestamp} ${oldDescription}`);
220 return log.recordAndApply(`${clock.now()} Edit ${createTimestamp} ${newDescription}`);
222 removeTag: function (createTimestamp: string, tag: string) {
223 undoLog.push(`Tag ${createTimestamp} ${tag}`);
224 return log.recordAndApply(`${clock.now()} Untag ${createTimestamp} ${tag}`);
226 setPriority: function (createTimestamp: string, newPriority: number, oldPriority: number) {
227 undoLog.push(`Priority ${createTimestamp} ${oldPriority}`);
228 return log.recordAndApply(`${clock.now()} Priority ${createTimestamp} ${newPriority}`);
230 setState: function (createTimestamp: string, newState: string, oldState: string) {
231 undoLog.push(`State ${createTimestamp} ${oldState}`);
232 return log.recordAndApply(`${clock.now()} State ${createTimestamp} ${newState}`);
235 if (undoLog.length > 0) {
236 return log.recordAndApply(`${clock.now()} ${undoLog.pop()}`);
248 function BrowserUI() {
249 var currentViewState = "todo";
250 var taskFocusedBeforeJumpingToInput: HTMLElement | null = null;
251 var lastTagNameEntered = "";
253 addTask: function (event: KeyboardEvent) {
254 const input = <HTMLInputElement>document.getElementById("taskName");
255 if (input.value.match(/^ *$/)) return;
256 const task = ui.addTask(input.value);
257 if (currentViewState === "todo") {
258 task instanceof HTMLElement && task.focus();
259 } else if (this.returnFocusAfterInput()) {
261 this.firstVisibleTask()?.focus();
264 if (event.getModifierState("Control")) {
265 this.setPriority(task, null, document.getElementsByClassName("task")[0]);
269 beginEdit: function (event: Event) {
270 const task = document.activeElement;
272 const input = document.createElement("input");
273 const desc = task.getElementsByClassName("desc")[0];
274 const oldDescription = desc.textContent!;
275 task.setAttribute("data-description", oldDescription);
276 input.value = oldDescription;
277 input.addEventListener("blur", this.completeEdit, { once: true });
278 desc.textContent = "";
279 task.insertBefore(input, task.firstChild);
281 event.preventDefault();
284 beginTagEdit: function (event: Event) {
285 const task = document.activeElement;
287 const input = document.createElement("input");
288 input.classList.add("tag");
289 input.addEventListener("blur", this.completeTagEdit, { once: true });
290 input.value = lastTagNameEntered;
291 task.appendChild(input);
294 event.preventDefault();
297 completeEdit: function (event: Event, resolution: CommitOrAbort = CommitOrAbort.Commit) {
298 const input = event.target as HTMLInputElement;
299 const task = input.parentElement!;
300 const desc = task.getElementsByClassName("desc")[0];
301 const oldDescription = task.getAttribute("data-description")!;
302 const newDescription = input.value;
303 input.removeEventListener("blur", this.completeEdit);
304 task.removeChild(input);
305 task.removeAttribute("data-description");
307 if (resolution === CommitOrAbort.Abort || newDescription.match(/^ *$/) || newDescription === oldDescription) {
308 desc.textContent = oldDescription;
310 ui.edit(task.getAttribute("data-created")!, newDescription, oldDescription);
314 completeTagEdit: function (event: Event, resolution: CommitOrAbort = CommitOrAbort.Commit) {
315 const input = event.target as HTMLInputElement;
316 const task = input.parentElement!;
317 const newTagName = input.value;
318 input.removeEventListener("blur", this.completeTagEdit);
319 task.removeChild(input);
321 if (resolution === CommitOrAbort.Commit && !newTagName.match(/^ *$/) && !Model.hasTag(task, newTagName)) {
322 ui.addTag(task.getAttribute("data-created")!, newTagName);
323 lastTagNameEntered = newTagName;
327 firstVisibleTask: function () {
328 for (const task of document.getElementsByClassName("task")) {
329 if (task instanceof HTMLElement && task.getAttribute("data-state") === currentViewState) {
335 focusTaskNameInput: function (event: Event) {
336 if (document.activeElement instanceof HTMLElement) {
337 taskFocusedBeforeJumpingToInput = document.activeElement;
339 document.getElementById("taskName")!.focus();
340 event.preventDefault();
343 visibleTaskAtOffset(task: Element, offset: number): Element {
344 var cursor: Element | null = task;
345 var valid_cursor = cursor;
346 const increment = offset / Math.abs(offset);
348 cursor = increment > 0 ? cursor.nextElementSibling : cursor.previousElementSibling;
349 if (!cursor || !(cursor instanceof HTMLElement)) break;
350 if (cursor.getAttribute("data-state")! === currentViewState) {
352 valid_cursor = cursor;
354 if (Math.abs(offset) < 0.5) break;
359 moveCursor: function (offset: number): boolean {
360 const active = document.activeElement;
361 if (!active) return false;
362 const dest = this.visibleTaskAtOffset(active, offset);
363 if (dest !== active && dest instanceof HTMLElement) {
370 moveTask: function (offset: number) {
371 const active = document.activeElement;
373 const dest = this.visibleTaskAtOffset(active, offset);
374 if (dest === active) return; // Already extremal
375 var onePastDest: Element | null = this.visibleTaskAtOffset(dest, offset / Math.abs(offset));
376 if (onePastDest == dest) onePastDest = null; // Will become extremal
378 this.setPriority(active, dest, onePastDest);
380 this.setPriority(active, onePastDest, dest);
384 removeTag: function () {
385 var target = document.activeElement;
387 if (target.classList.contains("task")) {
388 const tags = target.getElementsByClassName("tag");
389 target = tags[tags.length - 1];
391 if (!target || !target.classList.contains("tag")) return;
392 ui.removeTag(target.parentElement!.getAttribute("data-created")!, target.textContent!);
395 returnFocusAfterInput: function (): boolean {
396 if (taskFocusedBeforeJumpingToInput) {
397 taskFocusedBeforeJumpingToInput.focus();
403 // Change task's priority to be between other tasks a and b.
404 setPriority: function (task: Element, a: Element | null, b: Element | null) {
405 const aPriority = a === null ? 0 : Model.getPriority(a);
406 const bPriority = b === null ? clock.now() : Model.getPriority(b);
407 console.assert(aPriority < bPriority, aPriority, "<", bPriority);
408 const span = bPriority - aPriority;
409 const newPriority = aPriority + 0.1 * span + 0.8 * span * Math.random();
410 console.assert(aPriority < newPriority && newPriority < bPriority, aPriority, "<", newPriority, "<", bPriority);
411 const newPriorityRounded = Math.round(newPriority);
412 const okToRound = aPriority < newPriorityRounded && newPriorityRounded < bPriority;
413 ui.setPriority(task.getAttribute("data-created")!, okToRound ? newPriorityRounded : newPriority, Model.getPriority(task));
414 task instanceof HTMLElement && task.focus();
417 setState: function (newState: string) {
418 const task = document.activeElement;
420 const oldState = task.getAttribute("data-state")!;
421 if (newState === oldState) return;
422 const createTimestamp = task.getAttribute("data-created")!;
423 this.moveCursor(1) || this.moveCursor(-1);
424 return ui.setState(createTimestamp, newState, oldState);
427 setView: function (state: string, color: string) {
428 const sheet = (document.getElementById("viewStyle") as HTMLStyleElement).sheet!;
429 sheet.insertRule(`.task:not([data-state=${state}]) { display: none }`);
430 sheet.insertRule(`:root { --view-state-indicator-color: ${color}; }`);
433 currentViewState = state;
434 if (document.activeElement?.getAttribute("data-state") !== state) {
435 this.firstVisibleTask()?.focus();
440 const ret = ui.undo();
441 if (ret && ret instanceof HTMLElement) ret.focus();
445 const browserUI = BrowserUI();
451 var inputState = InputState.Command;
453 function handleKey(event: any) {
454 if (event.target.tagName === "INPUT") {
455 if (event.target.id === "taskName") {
456 if (event.key == "Enter") return browserUI.addTask(event);
457 if (event.key == "Escape") return browserUI.returnFocusAfterInput();
458 } else if (event.target.classList.contains("tag")) {
459 if (event.key == "Enter") return browserUI.completeTagEdit(event);
460 if (event.key == "Escape") return browserUI.completeTagEdit(event, CommitOrAbort.Abort);
462 if (event.key == "Enter") return browserUI.completeEdit(event);
463 if (event.key == "Escape") return browserUI.completeEdit(event, CommitOrAbort.Abort);
466 if (inputState === InputState.Command) {
467 if (event.key == "j") return browserUI.moveCursor(1);
468 if (event.key == "k") return browserUI.moveCursor(-1);
469 if (event.key == "J") return browserUI.moveTask(1);
470 if (event.key == "K") return browserUI.moveTask(-1);
471 if (event.key == "n") return browserUI.focusTaskNameInput(event);
472 if (event.key == "c") return browserUI.setState("cancelled");
473 if (event.key == "d") return browserUI.setState("done");
474 if (event.key == "q") return browserUI.setState("todo");
475 if (event.key == "s") return browserUI.setState("someday-maybe");
476 if (event.key == "w") return browserUI.setState("waiting");
477 if (event.key == "X") return browserUI.setState("deleted");
478 if (event.key == "x") return browserUI.removeTag();
479 if (event.key == "u") return browserUI.undo();
480 if (event.key == "e") return browserUI.beginEdit(event);
481 if (event.key == "t") return browserUI.beginTagEdit(event);
482 if (event.key == "v") return (inputState = InputState.View);
483 } else if (inputState === InputState.View) {
484 inputState = InputState.Command;
485 if (event.key == "c") return browserUI.setView("cancelled", "Red");
486 if (event.key == "d") return browserUI.setView("done", "LawnGreen");
487 if (event.key == "q") return browserUI.setView("todo", "White");
488 if (event.key == "s") return browserUI.setView("someday-maybe", "DeepSkyBlue");
489 if (event.key == "v") return browserUI.setView("todo", "White");
490 if (event.key == "w") return browserUI.setView("waiting", "MediumOrchid");
491 if (event.key == "x") return browserUI.setView("deleted", "Black");
496 function browserInit() {
498 browserUI.firstVisibleTask()?.focus();
499 document.body.addEventListener("keydown", handleKey, { capture: false });