]> git.scottworley.com Git - vopamoi/blame - vopamoi.ts
Change focus in BrowserUI, never in Model
[vopamoi] / vopamoi.ts
CommitLineData
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;
5const MAX_SAFE_INTEGER = 9007199254740991;
6
7// A sane split that splits N *times*, leaving the last chunk unsplit.
8function 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
13c97b99 16const Model = {
6d01c406 17 addTask: function (timestamp: string, description: string): Element {
13c97b99
SW
18 const task = document.createElement("div");
19 task.appendChild(document.createTextNode(description));
799f4e89 20 task.setAttribute("class", "task");
13c97b99 21 task.setAttribute("tabindex", "0");
4101e1b1 22 task.setAttribute("data-created", timestamp);
ef7ebad4 23 document.getElementById("tasks")!.appendChild(task);
6d01c406 24 return task;
13c97b99 25 },
974848d3 26
68a72fde
SW
27 getPriority: function (task: Element): number {
28 if (task.hasAttribute("data-priority")) {
29 return parseFloat(task.getAttribute("data-priority")!);
30 }
31 return parseFloat(task.getAttribute("data-created")!);
32 },
33
5350da9f
SW
34 getState: function (task: Element): string {
35 return task.getAttribute("data-state") ?? "todo";
36 },
37
799f4e89
SW
38 getTask: function (createTimestamp: string) {
39 for (const task of document.getElementsByClassName("task")) {
40 if (task.getAttribute("data-created") === createTimestamp) {
41 return task;
42 }
43 }
44 },
45
43f3cc0c 46 setPriority: function (createTimestamp: string, priority: number): Element | null {
68a72fde 47 const target = this.getTask(createTimestamp);
43f3cc0c 48 if (!target) return null;
68a72fde
SW
49 target.setAttribute("data-priority", `${priority}`);
50 for (const task of document.getElementsByClassName("task")) {
51 if (task !== target && this.getPriority(task) > priority) {
52 task.parentElement!.insertBefore(target, task);
43f3cc0c 53 return target;
68a72fde
SW
54 }
55 }
56 document.getElementById("tasks")!.appendChild(target);
43f3cc0c 57 return target;
68a72fde
SW
58 },
59
01f41859
SW
60 setState: function (stateTimestamp: string, createTimestamp: string, state: string) {
61 const task = this.getTask(createTimestamp);
62 if (task) {
5350da9f 63 task.setAttribute("data-state", state);
01f41859 64 if (task instanceof HTMLElement) {
5350da9f 65 task.style.display = state == "todo" ? "block" : "none"; // Until view filtering
01f41859
SW
66 }
67 }
799f4e89 68 },
13c97b99 69};
f1afad9b 70
d03daa19 71function Log(prefix: string = "vp-") {
60a63831
SW
72 var next_log_index = 0;
73 return {
e88c099c 74 apply: function (entry: string) {
60a63831
SW
75 const [timestamp, command, data] = splitN(entry, " ", 2);
76 if (command == "Create") {
6d01c406 77 return Model.addTask(timestamp, data);
60a63831 78 }
01f41859
SW
79 if (command == "State") {
80 const [createTimestamp, state] = splitN(data, " ", 1);
6d01c406 81 return Model.setState(timestamp, createTimestamp, state);
01f41859 82 }
68a72fde
SW
83 if (command == "Priority") {
84 const [createTimestamp, newPriority] = splitN(data, " ", 1);
6d01c406 85 return Model.setPriority(createTimestamp, parseFloat(newPriority));
68a72fde 86 }
60a63831
SW
87 },
88
e88c099c 89 record: function (entry: string) {
d03daa19 90 window.localStorage.setItem(`${prefix}${next_log_index++}`, entry);
60a63831
SW
91 },
92
e88c099c
SW
93 recordAndApply: function (entry: string) {
94 this.record(entry);
6d01c406 95 return this.apply(entry);
60a63831
SW
96 },
97
98 replay: function () {
99 while (true) {
d03daa19 100 const entry = window.localStorage.getItem(`${prefix}${next_log_index}`);
60a63831
SW
101 if (entry === null) {
102 break;
103 }
e88c099c 104 this.apply(entry);
60a63831
SW
105 next_log_index++;
106 }
107 },
108 };
d03daa19
SW
109}
110const log = Log();
262705dd 111
43f3cc0c
SW
112const undoLog: string[] = [];
113
e88c099c 114const UI = {
6d01c406 115 addTask: function (description: string): Element {
43f3cc0c
SW
116 const now = Date.now();
117 undoLog.push(`State ${now} deleted`);
118 return <Element>log.recordAndApply(`${now} Create ${description}`);
e88c099c 119 },
43f3cc0c
SW
120 setPriority: function (createTimestamp: string, newPriority: number, oldPriority: number) {
121 undoLog.push(`Priority ${createTimestamp} ${oldPriority}`);
122 return log.recordAndApply(`${Date.now()} Priority ${createTimestamp} ${newPriority}`);
68a72fde 123 },
5350da9f
SW
124 setState: function (createTimestamp: string, newState: string, oldState: string) {
125 undoLog.push(`State ${createTimestamp} ${oldState}`);
126 return log.recordAndApply(`${Date.now()} State ${createTimestamp} ${newState}`);
01f41859 127 },
43f3cc0c
SW
128 undo: function () {
129 if (undoLog.length > 0) {
130 return log.recordAndApply(`${Date.now()} ${undoLog.pop()}`);
131 }
132 },
e88c099c
SW
133};
134
caa93fd1 135const BrowserUI = {
bc7996fe 136 addTask: function (event: KeyboardEvent) {
a26b1f4b
SW
137 const input = <HTMLInputElement>document.getElementById("taskName");
138 if (input.value) {
6d01c406 139 const task = UI.addTask(input.value);
9f6be65e 140 if (task && task instanceof HTMLElement) task.focus();
a26b1f4b 141 input.value = "";
bc7996fe
SW
142 if (event.getModifierState("Control")) {
143 this.setPriority(task, null, document.getElementsByClassName("task")[0]);
144 }
caa93fd1 145 }
caa93fd1 146 },
09657615 147
65a7510d
SW
148 firstVisibleTask: function () {
149 for (const task of document.getElementsByClassName("task")) {
150 if (task instanceof HTMLElement && task.style.display !== "none") {
151 return task;
152 }
153 }
799f4e89 154 },
caa93fd1 155
bc7996fe 156 focusTaskNameInput: function (event: Event) {
09657615
SW
157 document.getElementById("taskName")!.focus();
158 event.preventDefault();
159 },
160
23be73e3
SW
161 visibleTaskAtOffset(task: Element, offset: number): Element {
162 var cursor: Element | null = task;
5fa4704c
SW
163 var valid_cursor = cursor;
164 const increment = offset / Math.abs(offset);
165 while (true) {
166 cursor = increment > 0 ? cursor.nextElementSibling : cursor.previousElementSibling;
167 if (!cursor || !(cursor instanceof HTMLElement)) break;
168 if (cursor.style.display !== "none") {
169 offset -= increment;
170 valid_cursor = cursor;
171 }
172 if (Math.abs(offset) < 0.5) break;
09657615 173 }
23be73e3
SW
174 return valid_cursor;
175 },
176
177 moveCursor: function (offset: number): boolean {
178 const active = document.activeElement;
179 if (!active) return false;
180 const dest = this.visibleTaskAtOffset(active, offset);
181 if (dest !== active && dest instanceof HTMLElement) {
182 dest.focus();
09657615
SW
183 return true;
184 }
185 return false;
186 },
01f41859 187
68a72fde
SW
188 moveTask: function (offset: number) {
189 const active = document.activeElement;
190 if (!active) return;
191 const dest = this.visibleTaskAtOffset(active, offset);
192 if (dest === active) return; // Already extremal
193 var onePastDest: Element | null = this.visibleTaskAtOffset(dest, offset / Math.abs(offset));
194 if (onePastDest == dest) onePastDest = null; // Will become extremal
195 if (offset > 0) {
196 this.setPriority(active, dest, onePastDest);
197 } else {
198 this.setPriority(active, onePastDest, dest);
199 }
200 },
201
202 // Change task's priority to be between other tasks a and b.
203 setPriority: function (task: Element, a: Element | null, b: Element | null) {
204 const aPriority = a === null ? 0 : Model.getPriority(a);
205 const bPriority = b === null ? Date.now() : Model.getPriority(b);
206 console.assert(aPriority < bPriority, aPriority, "<", bPriority);
207 const span = bPriority - aPriority;
208 const newPriority = aPriority + 0.1 * span + 0.8 * span * Math.random();
209 console.assert(aPriority < newPriority && newPriority < bPriority, aPriority, "<", newPriority, "<", bPriority);
210 const newPriorityRounded = Math.round(newPriority);
211 const okToRound = aPriority < newPriorityRounded && newPriorityRounded < bPriority;
43f3cc0c 212 UI.setPriority(task.getAttribute("data-created")!, okToRound ? newPriorityRounded : newPriority, Model.getPriority(task));
9f6be65e 213 task instanceof HTMLElement && task.focus();
68a72fde
SW
214 },
215
01f41859 216 setState: function (state: string) {
5350da9f
SW
217 const task = document.activeElement;
218 if (!task) return;
219 const createTimestamp = task.getAttribute("data-created")!;
01f41859 220 this.moveCursor(1) || this.moveCursor(-1);
5350da9f 221 return UI.setState(createTimestamp, state, Model.getState(task));
01f41859 222 },
43f3cc0c
SW
223
224 undo: function () {
225 const ret = UI.undo();
226 if (ret && ret instanceof HTMLElement) ret.focus();
227 },
09657615 228};
06ee32a1 229
f1afad9b 230function handleKey(event: any) {
a26b1f4b 231 if (event.target.tagName === "INPUT") {
bc7996fe 232 if (event.key == "Enter") return BrowserUI.addTask(event);
a26b1f4b 233 } else {
09657615
SW
234 if (event.key == "j") return BrowserUI.moveCursor(1);
235 if (event.key == "k") return BrowserUI.moveCursor(-1);
68a72fde
SW
236 if (event.key == "J") return BrowserUI.moveTask(1);
237 if (event.key == "K") return BrowserUI.moveTask(-1);
01f41859
SW
238 if (event.key == "n") return BrowserUI.focusTaskNameInput(event);
239 if (event.key == "s") return BrowserUI.setState("someday-maybe");
240 if (event.key == "w") return BrowserUI.setState("waiting");
241 if (event.key == "d") return BrowserUI.setState("done");
242 if (event.key == "c") return BrowserUI.setState("cancelled");
45cbd5e5 243 if (event.key == "X") return BrowserUI.setState("deleted");
43f3cc0c 244 if (event.key == "u") return BrowserUI.undo();
f1afad9b
SW
245 }
246}
247
f1afad9b
SW
248function browserInit() {
249 document.body.addEventListener("keydown", handleKey, { capture: false });
d03daa19 250 log.replay();
65a7510d 251 BrowserUI.firstVisibleTask()?.focus();
f1afad9b 252}