X-Git-Url: http://git.scottworley.com/vopamoi/blobdiff_plain/cadeba34163d2dbdf4d97b40c4284a5d60b34fe7..9db534f6ab9420b8fd5836e791dbe09abb0a92d8:/vopamoi.ts?ds=sidebyside diff --git a/vopamoi.ts b/vopamoi.ts index 695ddef..f550fa1 100644 --- a/vopamoi.ts +++ b/vopamoi.ts @@ -207,6 +207,7 @@ function Log(prefix: string = "vp-") { }, replay: function () { + document.getElementById("tasks")!.style.display = "none"; while (true) { const entry = window.localStorage.getItem(`${prefix}${next_log_index}`); if (entry === null) { @@ -215,6 +216,7 @@ function Log(prefix: string = "vp-") { this.apply(entry); next_log_index++; } + document.getElementById("tasks")!.style.display = ""; }, }; } @@ -297,9 +299,6 @@ function BrowserUI() { this.firstVisibleTask()?.focus(); } input.value = ""; - if (currentTagView) { - ui.addTag(task.getAttribute("data-created")!, currentTagView); - } if (event.getModifierState("Control")) { this.makeBottomPriority(task); } @@ -381,8 +380,9 @@ function BrowserUI() { return target as HTMLElement; }, - firstVisibleTask: function () { - for (const task of document.getElementsByClassName("task")) { + firstVisibleTask: function (root: Element | null = null) { + if (root === null) root = document.body; + for (const task of root.getElementsByClassName("task")) { const state = task.getAttribute("data-state"); if ( task instanceof HTMLElement && @@ -450,7 +450,9 @@ function BrowserUI() { }, moveCursorRight: function () { - (this.currentTask()?.getElementsByClassName("task")[0] as HTMLElement)?.focus(); + const active = this.currentTask(); + if (!active) return false; + (this.firstVisibleTask(active) as HTMLElement | null)?.focus(); }, moveCursorVertically: function (offset: number): boolean {