]> git.scottworley.com Git - vopamoi/blame - vopamoi.ts
No empty-string-named tasks
[vopamoi] / vopamoi.ts
CommitLineData
13c97b99
SW
1const Model = {
2 createTask: function (description: string) {
3 const task = document.createElement("div");
4 task.appendChild(document.createTextNode(description));
5 task.setAttribute("tabindex", "0");
6 return task;
7 },
974848d3 8
13c97b99 9 addTask: function (description: string) {
f69ff526 10 document.body.appendChild(this.createTask(description)).focus();
13c97b99 11 },
974848d3 12
13c97b99
SW
13 moveCursor: function (offset: number) {
14 var active = document.activeElement;
15 if (offset === 1 && active) {
16 active = active.nextElementSibling;
17 }
18 if (offset === -1 && active) {
19 active = active.previousElementSibling;
20 }
21 if (active && active instanceof HTMLElement) active.focus();
22 },
23};
f1afad9b
SW
24
25function handleKey(event: any) {
26 if (event.target.tagName !== "INPUT") {
13c97b99
SW
27 if (event.key == "j") Model.moveCursor(1);
28 if (event.key == "k") Model.moveCursor(-1);
75a42da4
SW
29 if (event.key == "c") {
30 document.getElementById("taskName")!.focus();
31 event.preventDefault();
32 }
f1afad9b
SW
33 }
34}
35
974848d3 36function browserCreateTask(form: any) {
f1b121ab
SW
37 if (form.taskName.value) {
38 Model.addTask(form.taskName.value);
39 }
974848d3
SW
40 form.taskName.value = "";
41 return false;
42}
f1afad9b
SW
43
44function browserInit() {
45 document.body.addEventListener("keydown", handleKey, { capture: false });
46}