From 682139fcfed4fc2110ebef8a47953bb8655c8fba Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Wed, 26 Jan 2022 23:12:18 -0800 Subject: [PATCH] Always set state attribute --- vopamoi.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/vopamoi.ts b/vopamoi.ts index 4280ffc..b16bc70 100644 --- a/vopamoi.ts +++ b/vopamoi.ts @@ -36,6 +36,7 @@ const Model = { task.setAttribute("class", "task"); task.setAttribute("tabindex", "0"); task.setAttribute("data-created", timestamp); + task.setAttribute("data-state", "todo"); document.getElementById("tasks")!.appendChild(task); return task; }, @@ -73,10 +74,6 @@ const Model = { return parseFloat(task.getAttribute("data-created")!); }, - getState: function (task: Element): string { - return task.getAttribute("data-state") ?? "todo"; - }, - getTask: function (createTimestamp: string) { for (const task of document.getElementsByClassName("task")) { if (task.getAttribute("data-created") === createTimestamp) { @@ -297,7 +294,7 @@ const BrowserUI = { setState: function (newState: string) { const task = document.activeElement; if (!task) return; - const oldState = Model.getState(task); + const oldState = task.getAttribute("data-state"); if (newState === oldState) return; const createTimestamp = task.getAttribute("data-created")!; this.moveCursor(1) || this.moveCursor(-1); -- 2.44.1