}
},
+ removeTag: function (createTimestamp: string, tagName: string) {
+ const task = this.getTask(createTimestamp);
+ if (!task) return null;
+ const tag = this.hasTag(task, tagName);
+ if (!tag) return;
+ task.removeChild(tag);
+ if (task instanceof HTMLElement) task.focus();
+ },
+
setPriority: function (createTimestamp: string, priority: number): Element | null {
const target = this.getTask(createTimestamp);
if (!target) return null;
const [createTimestamp, tag] = splitN(data, " ", 1);
return Model.addTag(createTimestamp, tag);
}
+ if (command == "Untag") {
+ const [createTimestamp, tag] = splitN(data, " ", 1);
+ return Model.removeTag(createTimestamp, tag);
+ }
},
record: function (entry: string) {
return <Element>log.recordAndApply(`${now} Create ${description}`);
},
addTag: function (createTimestamp: string, tag: string) {
- // TODO: undo
+ undoLog.push(`Untag ${createTimestamp} ${tag}`);
return log.recordAndApply(`${clock.now()} Tag ${createTimestamp} ${tag}`);
},
edit: function (createTimestamp: string, newDescription: string, oldDescription: string) {
undoLog.push(`Edit ${createTimestamp} ${oldDescription}`);
return log.recordAndApply(`${clock.now()} Edit ${createTimestamp} ${newDescription}`);
},
+ removeTag: function (createTimestamp: string, tag: string) {
+ undoLog.push(`Tag ${createTimestamp} ${tag}`);
+ return log.recordAndApply(`${clock.now()} Untag ${createTimestamp} ${tag}`);
+ },
setPriority: function (createTimestamp: string, newPriority: number, oldPriority: number) {
undoLog.push(`Priority ${createTimestamp} ${oldPriority}`);
return log.recordAndApply(`${clock.now()} Priority ${createTimestamp} ${newPriority}`);
}
},
+ removeTag: function () {
+ const tag = document.activeElement;
+ if (!tag || !tag.classList.contains("tag")) return;
+ ui.removeTag(tag.parentElement!.getAttribute("data-created")!, tag.textContent!);
+ },
+
returnFocusAfterInput: function (): boolean {
if (taskFocusedBeforeJumpingToInput) {
taskFocusedBeforeJumpingToInput.focus();
if (event.key == "s") return browserUI.setState("someday-maybe");
if (event.key == "w") return browserUI.setState("waiting");
if (event.key == "X") return browserUI.setState("deleted");
+ if (event.key == "x") return browserUI.removeTag();
if (event.key == "u") return browserUI.undo();
if (event.key == "e") return browserUI.beginEdit(event);
if (event.key == "t") return browserUI.beginTagEdit(event);