]> git.scottworley.com Git - vopamoi/blobdiff - vopamoi.ts
j/k movement keys
[vopamoi] / vopamoi.ts
index cb2d50e5555676e16f95ec2d8b94db52bcb9a425..a0b2cfb82e5e980a769d14838c431fb1a3b89be2 100644 (file)
@@ -1,7 +1,30 @@
-var tasks = [];
+function createTask(description: string) {
+  const task = document.createElement("div");
+  task.appendChild(document.createTextNode(description));
+  task.setAttribute("tabindex", "0");
+  return task;
+}
+
+function addTask(description: string) {
+  document.body.appendChild(createTask(description));
+}
 
-function addTask(task: string) {
-  tasks.push(task);
+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) {
@@ -9,3 +32,7 @@ function browserCreateTask(form: any) {
   form.taskName.value = "";
   return false;
 }
+
+function browserInit() {
+  document.body.addEventListener("keydown", handleKey, { capture: false });
+}