+ destroyTask: function (createTimestamp: string) {
+ const task = this.getTask(createTimestamp);
+ if (task) {
+ task.parentElement!.removeChild(task);
+ }
+ },
+
+ getPriority: function (task: Element): number {
+ if (task.hasAttribute("data-priority")) {
+ return parseFloat(task.getAttribute("data-priority")!);
+ }
+ return parseFloat(task.getAttribute("data-created")!);
+ },
+
+ getTask: function (createTimestamp: string) {
+ for (const task of document.getElementsByClassName("task")) {
+ if (task.getAttribute("data-created") === createTimestamp) {
+ return task;
+ }
+ }
+ },
+
+ setPriority: function (createTimestamp: string, priority: number) {
+ const target = this.getTask(createTimestamp);
+ if (!target) return;
+ target.setAttribute("data-priority", `${priority}`);
+ for (const task of document.getElementsByClassName("task")) {
+ if (task !== target && this.getPriority(task) > priority) {
+ task.parentElement!.insertBefore(target, task);
+ target instanceof HTMLElement && target.focus();
+ return;
+ }
+ }
+ document.getElementById("tasks")!.appendChild(target);
+ target instanceof HTMLElement && target.focus();
+ },
+
+ setState: function (stateTimestamp: string, createTimestamp: string, state: string) {
+ const task = this.getTask(createTimestamp);
+ if (task) {
+ task.setAttribute(`data-${state}`, stateTimestamp);
+ if (task instanceof HTMLElement) {
+ task.style.display = "none"; // Until view filtering
+ }
+ }
+ },
+};
+
+function Log(prefix: string = "vp-") {
+ var next_log_index = 0;
+ return {
+ apply: function (entry: string) {
+ const [timestamp, command, data] = splitN(entry, " ", 2);
+ if (command == "Create") {
+ Model.addTask(timestamp, data);
+ }
+ if (command == "Destroy") {
+ Model.destroyTask(data.split(" ", 1)[0]);
+ }
+ if (command == "State") {
+ const [createTimestamp, state] = splitN(data, " ", 1);
+ Model.setState(timestamp, createTimestamp, state);
+ }
+ if (command == "Priority") {
+ const [createTimestamp, newPriority] = splitN(data, " ", 1);
+ Model.setPriority(createTimestamp, parseFloat(newPriority));
+ }
+ },
+
+ record: function (entry: string) {
+ window.localStorage.setItem(`${prefix}${next_log_index++}`, entry);
+ },
+
+ recordAndApply: function (entry: string) {
+ this.record(entry);
+ this.apply(entry);
+ },
+
+ replay: function () {
+ while (true) {
+ const entry = window.localStorage.getItem(`${prefix}${next_log_index}`);
+ if (entry === null) {
+ break;
+ }
+ this.apply(entry);
+ next_log_index++;
+ }
+ },
+ };
+}
+const log = Log();
+
+const UI = {