]> git.scottworley.com Git - vopamoi/blobdiff - vopamoi.ts
j/k movement keys
[vopamoi] / vopamoi.ts
index cfa118695c4f82c00b113e605b522710eac07489..a0b2cfb82e5e980a769d14838c431fb1a3b89be2 100644 (file)
@@ -9,8 +9,30 @@ function addTask(description: string) {
   document.body.appendChild(createTask(description));
 }
 
+function moveCursor(offset: number) {
+  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();
+}
+
+function handleKey(event: any) {
+  if (event.target.tagName !== "INPUT") {
+    if (event.key == "j") moveCursor(1);
+    if (event.key == "k") moveCursor(-1);
+  }
+}
+
 function browserCreateTask(form: any) {
   addTask(form.taskName.value);
   form.taskName.value = "";
   return false;
 }
+
+function browserInit() {
+  document.body.addEventListener("keydown", handleKey, { capture: false });
+}