+function UI() {
+ const undoLog: string[][] = [];
+ const redoLog: string[][] = [];
+ function perform(forward: string, reverse: string) {
+ undoLog.push([reverse, forward]);
+ return log.recordAndApply(`${clock.now()} ${forward}`);
+ }
+ return {
+ addTask: function (description: string): Element {
+ const now = clock.now();
+ undoLog.push([`State ${now} deleted`, `State ${now} todo`]);
+ return <Element>log.recordAndApply(`${now} Create ${description}`);
+ },
+ addTag: function (createTimestamp: string, tag: string) {
+ return perform(`Tag ${createTimestamp} ${tag}`, `Untag ${createTimestamp} ${tag}`);
+ },
+ edit: function (createTimestamp: string, newDescription: string, oldDescription: string) {
+ return perform(`Edit ${createTimestamp} ${newDescription}`, `Edit ${createTimestamp} ${oldDescription}`);
+ },
+ editContent: function (createTimestamp: string, newContent: string, oldContent: string) {
+ return perform(`EditContent ${createTimestamp} ${newContent}`, `EditContent ${createTimestamp} ${oldContent}`);
+ },
+ removeTag: function (createTimestamp: string, tag: string) {
+ return perform(`Untag ${createTimestamp} ${tag}`, `Tag ${createTimestamp} ${tag}`);
+ },
+ setPriority: function (createTimestamp: string, newPriority: number, oldPriority: number) {
+ return perform(`Priority ${createTimestamp} ${newPriority}`, `Priority ${createTimestamp} ${oldPriority}`);
+ },
+ setState: function (createTimestamp: string, newState: string, oldState: string) {
+ return perform(`State ${createTimestamp} ${newState}`, `State ${createTimestamp} ${oldState}`);
+ },
+ undo: function () {
+ const entry = undoLog.pop();
+ if (entry) {
+ redoLog.push(entry);
+ return log.recordAndApply(`${clock.now()} ${entry[0]}`);
+ }
+ },
+ redo: function () {
+ const entry = redoLog.pop();
+ if (entry) {
+ undoLog.push(entry);
+ return log.recordAndApply(`${clock.now()} ${entry[1]}`);
+ }
+ },
+ };
+}
+const ui = UI();
+
+enum CommitOrAbort {
+ Commit,
+ Abort,
+}
+
+function BrowserUI() {
+ const viewColors: { [key: string]: string } = {
+ all: "Gold",
+ cancelled: "Red",
+ deleted: "Black",
+ done: "LawnGreen",
+ "someday-maybe": "DeepSkyBlue",
+ todo: "White",
+ waiting: "MediumOrchid",
+ };
+ var currentTagView: string | null = null;
+ var currentViewState = "todo";
+ var taskFocusedBeforeJumpingToInput: HTMLElement | null = null;
+ var lastTagNameEntered = "";
+ return {
+ addTask: function (event: KeyboardEvent) {
+ const input = <HTMLInputElement>document.getElementById("taskName");
+ if (input.value.match(/^ *$/)) return;
+ const task = ui.addTask(input.value);
+ if (currentViewState === "todo" || currentViewState === "all") {
+ task instanceof HTMLElement && task.focus();
+ } else if (this.returnFocusAfterInput()) {
+ } else {
+ this.firstVisibleTask()?.focus();
+ }
+ input.value = "";
+ if (event.getModifierState("Control")) {
+ this.makeBottomPriority(task);
+ }
+ },
+
+ beginEdit: function (event: Event) {
+ const task = this.currentTask();
+ if (!task) return;
+ const input = document.createElement("input");
+ const desc = task.getElementsByClassName("desc")[0];
+ const oldDescription = desc.textContent!;
+ task.setAttribute("data-description", oldDescription);
+ input.value = oldDescription;
+ input.addEventListener("blur", this.completeEdit, { once: true });
+ desc.textContent = "";
+ task.insertBefore(input, task.firstChild);
+ input.focus();
+ event.preventDefault();
+ },
+
+ beginEditContent: function (event: Event) {
+ const task = this.currentTask();
+ if (!task) return;
+ const input = document.createElement("textarea");
+ const content = task.getElementsByClassName("content")[0];
+ const oldContent = content?.textContent ?? "";
+ task.setAttribute("data-content", oldContent);
+ input.value = oldContent;
+ input.addEventListener("blur", this.completeContentEdit, { once: true });
+ if (content) content.textContent = "";
+ task.appendChild(input);
+ input.focus();
+ event.preventDefault();
+ },
+
+ beginTagEdit: function (event: Event) {
+ const task = this.currentTask();
+ if (!task) return;
+ const input = document.createElement("input");
+ input.classList.add("tag");
+ input.addEventListener("blur", this.completeTagEdit, { once: true });
+ input.value = lastTagNameEntered;
+ task.appendChild(input);
+ input.focus();
+ input.select();
+ event.preventDefault();
+ },
+
+ completeEdit: function (event: Event, resolution: CommitOrAbort = CommitOrAbort.Commit) {
+ const input = event.target as HTMLInputElement;
+ const task = input.parentElement!;
+ const desc = task.getElementsByClassName("desc")[0];
+ const oldDescription = task.getAttribute("data-description")!;
+ const newDescription = input.value;
+ input.removeEventListener("blur", this.completeEdit);
+ task.removeChild(input);
+ task.removeAttribute("data-description");
+ task.focus();
+ if (resolution === CommitOrAbort.Abort || newDescription.match(/^ *$/) || newDescription === oldDescription) {
+ desc.textContent = oldDescription;
+ } else {
+ ui.edit(task.getAttribute("id")!, newDescription, oldDescription);
+ }
+ },
+
+ completeContentEdit: function (event: Event, resolution: CommitOrAbort = CommitOrAbort.Commit) {
+ const input = event.target as HTMLInputElement;
+ const task = input.parentElement!;
+ const content = task.getElementsByClassName("content")[0];
+ const oldContent = task.getAttribute("data-content")!;
+ const newContent = input.value;
+ input.removeEventListener("blur", this.completeContentEdit);
+ task.removeChild(input);
+ task.removeAttribute("data-content");
+ task.focus();
+ if (resolution === CommitOrAbort.Abort || newContent === oldContent) {
+ if (content) content.textContent = oldContent;
+ } else {
+ ui.editContent(task.getAttribute("id")!, newContent, oldContent);
+ }
+ },
+
+ completeTagEdit: function (event: Event, resolution: CommitOrAbort = CommitOrAbort.Commit) {
+ const input = event.target as HTMLInputElement;
+ const task = input.parentElement!;
+ const newTagName = input.value;
+ input.removeEventListener("blur", this.completeTagEdit);
+ task.removeChild(input);
+ task.focus();
+ if (resolution === CommitOrAbort.Commit && !newTagName.match(/^ *$/) && !model.hasTag(task, newTagName)) {
+ ui.addTag(task.getAttribute("id")!, newTagName);
+ lastTagNameEntered = newTagName;
+ }
+ },
+
+ currentTag: function (): Element | null {
+ var target = document.activeElement;
+ if (!target) return null;
+ if (target.classList.contains("task")) {
+ const tags = target.getElementsByClassName("tag");
+ target = tags[tags.length - 1];
+ }
+ if (!target || !target.classList.contains("tag")) return null;
+ return target;
+ },
+
+ currentTask: function (): HTMLElement | null {
+ var target = document.activeElement;
+ if (!target) return null;
+ if (target.classList.contains("tag")) target = target.parentElement!;
+ return target as HTMLElement;
+ },
+
+ 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 &&
+ (state === currentViewState || (currentViewState === "all" && state !== "deleted")) &&
+ !task.classList.contains("hide")
+ ) {
+ return task;
+ }
+ }
+ },
+
+ focusTaskNameInput: function (event: Event) {
+ taskFocusedBeforeJumpingToInput = this.currentTask();