]> git.scottworley.com Git - vopamoi/commitdiff
Rename: currentTagView → currentTagFilter
authorScott Worley <scottworley@scottworley.com>
Fri, 20 Oct 2023 20:50:58 +0000 (13:50 -0700)
committerScott Worley <scottworley@scottworley.com>
Fri, 20 Oct 2023 20:50:58 +0000 (13:50 -0700)
vopamoi.ts

index 47c421df5d9507951bafa547f9e090e16d6cf052..c72884eb7d459d86d90536645d5c84374e4d5058 100644 (file)
@@ -320,7 +320,7 @@ function BrowserUI() {
     todo: "White",
     waiting: "MediumOrchid",
   };
-  var currentTagView: string | null = null;
+  var currentTagFilter: string | null = null;
   var currentViewState = "todo";
   var taskFocusedBeforeJumpingToInput: HTMLElement | null = null;
   var lastTagNameEntered = "";
@@ -561,7 +561,7 @@ function BrowserUI() {
     },
 
     resetTagView: function () {
-      currentTagView = null;
+      currentTagFilter = null;
       this.setTitle();
       const taskList = document.getElementById("tasks")!;
       for (const task of Array.from(document.getElementsByClassName("task"))) {
@@ -618,7 +618,7 @@ function BrowserUI() {
         tag = target.textContent!;
       }
 
-      if (currentTagView !== null) {
+      if (currentTagFilter !== null) {
         this.resetTagView();
       }
 
@@ -655,12 +655,12 @@ function BrowserUI() {
         }
       }
 
-      currentTagView = tag;
+      currentTagFilter = tag;
       this.setTitle();
     },
 
     setTitle: function () {
-      document.title = "Vopamoi: " + currentViewState + (currentTagView ? ": " + currentTagView : "");
+      document.title = "Vopamoi: " + currentViewState + (currentTagFilter ? ": " + currentTagFilter : "");
     },
 
     setView: function (state: string) {
@@ -681,7 +681,7 @@ function BrowserUI() {
     },
 
     setUntaggedView: function () {
-      if (currentTagView !== null) {
+      if (currentTagFilter !== null) {
         this.resetTagView();
       }
       for (const task of document.getElementsByClassName("task")) {