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();
33 addTask: function (timestamp: string, description: string): Element {
34 const task = document.createElement("div");
35 task.appendChild(document.createTextNode(description));
36 task.setAttribute("class", "task");
37 task.setAttribute("tabindex", "0");
38 task.setAttribute("data-created", timestamp);
39 task.setAttribute("data-state", "todo");
40 document.getElementById("tasks")!.appendChild(task);
44 edit: function (createTimestamp: string, newDescription: string): Element | null {
45 const target = this.getTask(createTimestamp);
46 if (!target) return null;
47 if (target.hasAttribute("data-description")) {
48 // Oh no: An edit has arrived from a replica while a local edit is in progress.
49 const input = target.children[0] as HTMLInputElement;
51 input.value === target.getAttribute("data-description") &&
52 input.selectionStart === 0 &&
53 input.selectionEnd === input.value.length
55 // No local changes have actually been made yet. Change the contents of the edit box!
56 input.value = newDescription;
60 // Prefer not to interrupt the local user's edit.
61 // The remote edit is mostly lost; this mostly becomes last-write-wins.
62 target.setAttribute("data-description", newDescription);
65 target.textContent = newDescription;
70 getPriority: function (task: Element): number {
71 if (task.hasAttribute("data-priority")) {
72 return parseFloat(task.getAttribute("data-priority")!);
74 return parseFloat(task.getAttribute("data-created")!);
77 getTask: function (createTimestamp: string) {
78 for (const task of document.getElementsByClassName("task")) {
79 if (task.getAttribute("data-created") === createTimestamp) {
85 setPriority: function (createTimestamp: string, priority: number): Element | null {
86 const target = this.getTask(createTimestamp);
87 if (!target) return null;
88 target.setAttribute("data-priority", `${priority}`);
89 for (const task of document.getElementsByClassName("task")) {
90 if (task !== target && this.getPriority(task) > priority) {
91 task.parentElement!.insertBefore(target, task);
95 document.getElementById("tasks")!.appendChild(target);
99 setState: function (stateTimestamp: string, createTimestamp: string, state: string) {
100 const task = this.getTask(createTimestamp);
102 task.setAttribute("data-state", state);
107 function Log(prefix: string = "vp-") {
108 var next_log_index = 0;
110 apply: function (entry: string) {
111 const [timestamp, command, data] = splitN(entry, " ", 2);
112 if (command == "Create") {
113 return Model.addTask(timestamp, data);
115 if (command == "Edit") {
116 const [createTimestamp, description] = splitN(data, " ", 1);
117 return Model.edit(createTimestamp, description);
119 if (command == "State") {
120 const [createTimestamp, state] = splitN(data, " ", 1);
121 return Model.setState(timestamp, createTimestamp, state);
123 if (command == "Priority") {
124 const [createTimestamp, newPriority] = splitN(data, " ", 1);
125 return Model.setPriority(createTimestamp, parseFloat(newPriority));
129 record: function (entry: string) {
130 window.localStorage.setItem(`${prefix}${next_log_index++}`, entry);
133 recordAndApply: function (entry: string) {
135 return this.apply(entry);
138 replay: function () {
140 const entry = window.localStorage.getItem(`${prefix}${next_log_index}`);
141 if (entry === null) {
152 const undoLog: string[] = [];
155 addTask: function (description: string): Element {
156 const now = clock.now();
157 undoLog.push(`State ${now} deleted`);
158 return <Element>log.recordAndApply(`${now} Create ${description}`);
160 edit: function (createTimestamp: string, newDescription: string, oldDescription: string) {
161 undoLog.push(`Edit ${createTimestamp} ${oldDescription}`);
162 return log.recordAndApply(`${clock.now()} Edit ${createTimestamp} ${newDescription}`);
164 setPriority: function (createTimestamp: string, newPriority: number, oldPriority: number) {
165 undoLog.push(`Priority ${createTimestamp} ${oldPriority}`);
166 return log.recordAndApply(`${clock.now()} Priority ${createTimestamp} ${newPriority}`);
168 setState: function (createTimestamp: string, newState: string, oldState: string) {
169 undoLog.push(`State ${createTimestamp} ${oldState}`);
170 return log.recordAndApply(`${clock.now()} State ${createTimestamp} ${newState}`);
173 if (undoLog.length > 0) {
174 return log.recordAndApply(`${clock.now()} ${undoLog.pop()}`);
180 addTask: function (event: KeyboardEvent) {
181 const input = <HTMLInputElement>document.getElementById("taskName");
183 const task = UI.addTask(input.value);
184 if (task && task instanceof HTMLElement) task.focus();
186 if (event.getModifierState("Control")) {
187 this.setPriority(task, null, document.getElementsByClassName("task")[0]);
192 beginEdit: function (event: Event) {
193 const task = document.activeElement;
195 const input = document.createElement("input");
196 const oldDescription = task.textContent!;
197 task.setAttribute("data-description", oldDescription);
198 input.value = oldDescription;
199 input.addEventListener("blur", BrowserUI.completeEdit, { once: true });
200 task.textContent = "";
201 task.appendChild(input);
204 event.preventDefault();
207 completeEdit: function (event: Event) {
208 const input = event.target as HTMLInputElement;
209 const task = input.parentElement!;
210 const oldDescription = task.getAttribute("data-description")!;
211 const newDescription = input.value;
212 input.removeEventListener("blur", BrowserUI.completeEdit);
213 task.removeChild(task.children[0]);
214 task.removeAttribute("data-description");
216 if (newDescription === oldDescription) {
217 task.textContent = oldDescription;
219 UI.edit(task.getAttribute("data-created")!, newDescription, oldDescription);
223 firstVisibleTask: function () {
224 for (const task of document.getElementsByClassName("task")) {
225 if (task instanceof HTMLElement && task.getAttribute("data-state")! === "todo") {
231 focusTaskNameInput: function (event: Event) {
232 document.getElementById("taskName")!.focus();
233 event.preventDefault();
236 visibleTaskAtOffset(task: Element, offset: number): Element {
237 var cursor: Element | null = task;
238 var valid_cursor = cursor;
239 const increment = offset / Math.abs(offset);
241 cursor = increment > 0 ? cursor.nextElementSibling : cursor.previousElementSibling;
242 if (!cursor || !(cursor instanceof HTMLElement)) break;
243 if (cursor.getAttribute("data-state")! === "todo") {
245 valid_cursor = cursor;
247 if (Math.abs(offset) < 0.5) break;
252 moveCursor: function (offset: number): boolean {
253 const active = document.activeElement;
254 if (!active) return false;
255 const dest = this.visibleTaskAtOffset(active, offset);
256 if (dest !== active && dest instanceof HTMLElement) {
263 moveTask: function (offset: number) {
264 const active = document.activeElement;
266 const dest = this.visibleTaskAtOffset(active, offset);
267 if (dest === active) return; // Already extremal
268 var onePastDest: Element | null = this.visibleTaskAtOffset(dest, offset / Math.abs(offset));
269 if (onePastDest == dest) onePastDest = null; // Will become extremal
271 this.setPriority(active, dest, onePastDest);
273 this.setPriority(active, onePastDest, dest);
277 // Change task's priority to be between other tasks a and b.
278 setPriority: function (task: Element, a: Element | null, b: Element | null) {
279 const aPriority = a === null ? 0 : Model.getPriority(a);
280 const bPriority = b === null ? clock.now() : Model.getPriority(b);
281 console.assert(aPriority < bPriority, aPriority, "<", bPriority);
282 const span = bPriority - aPriority;
283 const newPriority = aPriority + 0.1 * span + 0.8 * span * Math.random();
284 console.assert(aPriority < newPriority && newPriority < bPriority, aPriority, "<", newPriority, "<", bPriority);
285 const newPriorityRounded = Math.round(newPriority);
286 const okToRound = aPriority < newPriorityRounded && newPriorityRounded < bPriority;
287 UI.setPriority(task.getAttribute("data-created")!, okToRound ? newPriorityRounded : newPriority, Model.getPriority(task));
288 task instanceof HTMLElement && task.focus();
291 setState: function (newState: string) {
292 const task = document.activeElement;
294 const oldState = task.getAttribute("data-state")!;
295 if (newState === oldState) return;
296 const createTimestamp = task.getAttribute("data-created")!;
297 this.moveCursor(1) || this.moveCursor(-1);
298 return UI.setState(createTimestamp, newState, oldState);
302 const ret = UI.undo();
303 if (ret && ret instanceof HTMLElement) ret.focus();
311 var inputState = InputState.Command;
313 function handleKey(event: any) {
314 if (event.target.tagName === "INPUT") {
315 if (event.target.id === "taskName") {
316 if (event.key == "Enter") return BrowserUI.addTask(event);
318 if (event.key == "Enter") return BrowserUI.completeEdit(event);
321 if (inputState === InputState.Command) {
322 if (event.key == "j") return BrowserUI.moveCursor(1);
323 if (event.key == "k") return BrowserUI.moveCursor(-1);
324 if (event.key == "J") return BrowserUI.moveTask(1);
325 if (event.key == "K") return BrowserUI.moveTask(-1);
326 if (event.key == "n") return BrowserUI.focusTaskNameInput(event);
327 if (event.key == "s") return BrowserUI.setState("someday-maybe");
328 if (event.key == "w") return BrowserUI.setState("waiting");
329 if (event.key == "d") return BrowserUI.setState("done");
330 if (event.key == "c") return BrowserUI.setState("cancelled");
331 if (event.key == "t") return BrowserUI.setState("todo");
332 if (event.key == "X") return BrowserUI.setState("deleted");
333 if (event.key == "u") return BrowserUI.undo();
334 if (event.key == "e") return BrowserUI.beginEdit(event);
335 if (event.key == "v") return (inputState = InputState.View);
336 } else if (inputState === InputState.View) {
337 return (inputState = InputState.Command);
342 function browserInit() {
343 document.body.addEventListener("keydown", handleKey, { capture: false });
345 BrowserUI.firstVisibleTask()?.focus();