]> git.scottworley.com Git - vopamoi/commitdiff
Press "x" to remove tags
authorScott Worley <scottworley@scottworley.com>
Fri, 28 Jan 2022 03:26:04 +0000 (19:26 -0800)
committerScott Worley <scottworley@scottworley.com>
Fri, 28 Jan 2022 03:28:12 +0000 (19:28 -0800)
vopamoi.ts

index c17a2f00139a51ad44af27269f6ade1e1f80519c..17d81b65150ced2b9bcdbf38d47af914a93d5656 100644 (file)
@@ -125,6 +125,7 @@ const Model = {
     const tag = this.hasTag(task, tagName);
     if (!tag) return;
     task.removeChild(tag);
+    if (task instanceof HTMLElement) task.focus();
   },
 
   setPriority: function (createTimestamp: string, priority: number): Element | null {
@@ -218,6 +219,10 @@ function UI() {
       undoLog.push(`Edit ${createTimestamp} ${oldDescription}`);
       return log.recordAndApply(`${clock.now()} Edit ${createTimestamp} ${newDescription}`);
     },
+    removeTag: function (createTimestamp: string, tag: string) {
+      undoLog.push(`Tag ${createTimestamp} ${tag}`);
+      return log.recordAndApply(`${clock.now()} Untag ${createTimestamp} ${tag}`);
+    },
     setPriority: function (createTimestamp: string, newPriority: number, oldPriority: number) {
       undoLog.push(`Priority ${createTimestamp} ${oldPriority}`);
       return log.recordAndApply(`${clock.now()} Priority ${createTimestamp} ${newPriority}`);
@@ -376,6 +381,12 @@ function BrowserUI() {
       }
     },
 
+    removeTag: function () {
+      const tag = document.activeElement;
+      if (!tag || !tag.classList.contains("tag")) return;
+      ui.removeTag(tag.parentElement!.getAttribute("data-created")!, tag.textContent!);
+    },
+
     returnFocusAfterInput: function (): boolean {
       if (taskFocusedBeforeJumpingToInput) {
         taskFocusedBeforeJumpingToInput.focus();
@@ -459,6 +470,7 @@ function handleKey(event: any) {
       if (event.key == "s") return browserUI.setState("someday-maybe");
       if (event.key == "w") return browserUI.setState("waiting");
       if (event.key == "X") return browserUI.setState("deleted");
+      if (event.key == "x") return browserUI.removeTag();
       if (event.key == "u") return browserUI.undo();
       if (event.key == "e") return browserUI.beginEdit(event);
       if (event.key == "t") return browserUI.beginTagEdit(event);