]> git.scottworley.com Git - vopamoi/blame - vopamoi.ts
Keep Log narrowly about log stuff
[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
SW
16const Model = {
17 createTask: function (description: string) {
18 const task = document.createElement("div");
19 task.appendChild(document.createTextNode(description));
20 task.setAttribute("tabindex", "0");
21 return task;
22 },
974848d3 23
13c97b99 24 addTask: function (description: string) {
f69ff526 25 document.body.appendChild(this.createTask(description)).focus();
13c97b99 26 },
974848d3 27
13c97b99
SW
28 moveCursor: function (offset: number) {
29 var active = document.activeElement;
30 if (offset === 1 && active) {
31 active = active.nextElementSibling;
32 }
33 if (offset === -1 && active) {
34 active = active.previousElementSibling;
35 }
36 if (active && active instanceof HTMLElement) active.focus();
37 },
38};
f1afad9b 39
60a63831
SW
40const Log = (function () {
41 var next_log_index = 0;
42 return {
e88c099c 43 apply: function (entry: string) {
60a63831
SW
44 const [timestamp, command, data] = splitN(entry, " ", 2);
45 if (command == "Create") {
46 Model.addTask(data);
47 }
48 },
49
e88c099c 50 record: function (entry: string) {
60a63831
SW
51 window.localStorage.setItem(`${next_log_index++}`, entry);
52 },
53
e88c099c
SW
54 recordAndApply: function (entry: string) {
55 this.record(entry);
56 this.apply(entry);
60a63831
SW
57 },
58
59 replay: function () {
60 while (true) {
61 const entry = window.localStorage.getItem(`${next_log_index}`);
62 if (entry === null) {
63 break;
64 }
e88c099c 65 this.apply(entry);
60a63831
SW
66 next_log_index++;
67 }
68 },
69 };
70})();
262705dd 71
e88c099c
SW
72const UI = {
73 addTask: function (description: string) {
74 Log.recordAndApply(`${Date.now()} Create ${description}`);
75 },
76};
77
f1afad9b
SW
78function handleKey(event: any) {
79 if (event.target.tagName !== "INPUT") {
13c97b99
SW
80 if (event.key == "j") Model.moveCursor(1);
81 if (event.key == "k") Model.moveCursor(-1);
75a42da4
SW
82 if (event.key == "c") {
83 document.getElementById("taskName")!.focus();
84 event.preventDefault();
85 }
f1afad9b
SW
86 }
87}
88
974848d3 89function browserCreateTask(form: any) {
f1b121ab 90 if (form.taskName.value) {
e88c099c 91 UI.addTask(form.taskName.value);
f1b121ab 92 }
974848d3
SW
93 form.taskName.value = "";
94 return false;
95}
f1afad9b
SW
96
97function browserInit() {
98 document.body.addEventListener("keydown", handleKey, { capture: false });
60a63831 99 Log.replay();
f1afad9b 100}