+ // Change task's priority to be between other tasks a and b.
+ setPriority: function (task: Element, a: Element | null, b: Element | null) {
+ const aPriority = a === null ? clock.now() : Model.getPriority(a);
+ const bPriority = b === null ? 0 : Model.getPriority(b);
+ console.assert(aPriority > bPriority, aPriority, ">", bPriority);
+ const span = aPriority - bPriority;
+ const newPriority = bPriority + 0.1 * span + 0.8 * span * Math.random();
+ console.assert(aPriority > newPriority && newPriority > bPriority, aPriority, ">", newPriority, ">", bPriority);
+ const newPriorityRounded = Math.round(newPriority);
+ const okToRound = aPriority > newPriorityRounded && newPriorityRounded > bPriority;
+ ui.setPriority(task.getAttribute("data-created")!, okToRound ? newPriorityRounded : newPriority, Model.getPriority(task));
+ task instanceof HTMLElement && task.focus();
+ },
+
+ setState: function (newState: string) {
+ const task = this.currentTask();
+ if (!task) return;
+ const oldState = task.getAttribute("data-state")!;
+ if (newState === oldState) return;
+ const createTimestamp = task.getAttribute("data-created")!;
+ if (currentViewState !== "all" || newState == "deleted") {
+ this.moveCursorVertically(1) || this.moveCursorVertically(-1);
+ }
+ return ui.setState(createTimestamp, newState, oldState);
+ },
+
+ setTagView: function (tag: string | null = null) {
+ if (tag === null) {
+ const target = this.currentTag();
+ if (!target) return;
+ tag = target.textContent!;
+ }
+
+ if (currentTagView !== null) {
+ this.resetTagView();
+ }
+
+ const tasksWithTag = new Map();
+ for (const task of document.getElementsByClassName("task")) {
+ if (Model.hasTag(task, tag)) {
+ tasksWithTag.set(task.getElementsByClassName("desc")[0].textContent, [Model.getPriority(task), task]);
+ }
+ }
+
+ function highestPrioritySuperTask(t: Element) {
+ var maxPriority = -1;
+ var superTask = null;
+ for (const child of t.getElementsByClassName("tag")) {
+ const e = tasksWithTag.get(child.textContent);
+ if (e !== undefined && e[0] > maxPriority) {
+ maxPriority = e[0];
+ superTask = e[1];
+ }
+ }
+ return superTask;
+ }
+
+ for (const task of Array.from(document.getElementsByClassName("task"))) {
+ if (Model.hasTag(task, tag)) {
+ task.classList.remove("hide");
+ } else {
+ const superTask = highestPrioritySuperTask(task);
+ if (superTask !== null) {
+ Model.insertInPriorityOrder(task, superTask);
+ } else {
+ task.classList.add("hide");
+ }
+ }
+ }
+
+ currentTagView = tag;
+ },
+
+ setView: function (state: string) {
+ const sheet = (document.getElementById("viewStyle") as HTMLStyleElement).sheet!;
+ if (state === "all") {
+ sheet.insertRule(`.task[data-state=deleted] { display: none }`);
+ } else {
+ sheet.insertRule(`.task:not([data-state=${state}]) { display: none }`);
+ }
+ sheet.insertRule(`:root { --view-state-indicator-color: ${viewColors[state]}; }`);
+ sheet.removeRule(2);
+ sheet.removeRule(2);
+ currentViewState = state;
+ if (this.currentTask()?.getAttribute("data-state") !== state) {
+ this.firstVisibleTask()?.focus();
+ }
+ },
+
+ setUntaggedView: function () {
+ if (currentTagView !== null) {
+ this.resetTagView();
+ }
+ for (const task of document.getElementsByClassName("task")) {
+ if (task.getElementsByClassName("tag").length === 0) {
+ task.classList.remove("hide");
+ } else {
+ task.classList.add("hide");
+ }
+ }
+ },
+
+ undo: function () {
+ const ret = ui.undo();
+ if (ret && ret instanceof HTMLElement) ret.focus();
+ },
+ redo: function () {
+ const ret = ui.redo();
+ if (ret && ret instanceof HTMLElement) ret.focus();
+ },
+ };
+}
+const browserUI = BrowserUI();
+
+const scrollIncrement = 60;