]> git.scottworley.com Git - vopamoi/commitdiff
Move focusTaskNameInput and moveCursor into BrowserUI
authorScott Worley <scottworley@scottworley.com>
Wed, 26 Jan 2022 07:51:50 +0000 (23:51 -0800)
committerScott Worley <scottworley@scottworley.com>
Thu, 27 Jan 2022 20:21:55 +0000 (12:21 -0800)
vopamoi.ts

index 3ff39184a0ec8cc6a74069eb3535ff79413699f6..56c4813923e46b600d6ab561f6bdb36b16fa0b7d 100644 (file)
@@ -39,21 +39,6 @@ const Model = {
     const task = this.getTask(createTimestamp);
     task!.parentElement!.removeChild(task!);
   },
-
-  moveCursor: function (offset: number): boolean {
-    var active = document.activeElement;
-    if (offset === 1 && active) {
-      active = active.nextElementSibling;
-    }
-    if (offset === -1 && active) {
-      active = active.previousElementSibling;
-    }
-    if (active && active instanceof HTMLElement) {
-      active.focus();
-      return true;
-    }
-    return false;
-  },
 };
 
 const Log = (function () {
@@ -108,22 +93,38 @@ const BrowserUI = {
     }
     return false;
   },
+
   destroyTask: function () {
     const createTimestamp = document.activeElement?.getAttribute("data-created");
     return createTimestamp && UI.destroyTask(createTimestamp);
   },
-};
 
-function focusTaskNameInput(event: any) {
-  document.getElementById("taskName")!.focus();
-  event.preventDefault();
-}
+  focusTaskNameInput: function (event: any) {
+    document.getElementById("taskName")!.focus();
+    event.preventDefault();
+  },
+
+  moveCursor: function (offset: number): boolean {
+    var active = document.activeElement;
+    if (offset === 1 && active) {
+      active = active.nextElementSibling;
+    }
+    if (offset === -1 && active) {
+      active = active.previousElementSibling;
+    }
+    if (active && active instanceof HTMLElement) {
+      active.focus();
+      return true;
+    }
+    return false;
+  },
+};
 
 function handleKey(event: any) {
   if (event.target.tagName !== "INPUT") {
-    if (event.key == "j") return Model.moveCursor(1);
-    if (event.key == "k") return Model.moveCursor(-1);
-    if (event.key == "c") return focusTaskNameInput(event);
+    if (event.key == "j") return BrowserUI.moveCursor(1);
+    if (event.key == "k") return BrowserUI.moveCursor(-1);
+    if (event.key == "c") return BrowserUI.focusTaskNameInput(event);
     if (event.key == "X") return BrowserUI.destroyTask();
   }
 }