forked from zadam/trilium
-
Notifications
You must be signed in to change notification settings - Fork 29
任务管理器
baddate edited this page Feb 3, 2022
·
2 revisions
任务管理器管理未完成的(TODO)任务和已完成的任务(非空的doneDate属性)。尚未完成的任务将按位置和任意标签进一步分类-每当您更改任务说明中的标签属性时,该任务就会自动移至适当的位置。
任务管理器还与日志笔记集成 - 笔记被克隆到todoDate笔记和doneDate笔记的日志中(前缀为"TODO"或"DONE")。
在TODO笔记中创建了新任务,该笔记具有指向任务模板的"child:template"关系(请参阅属性继承)。
任务模板定义了几个提升属性 - todoDate,doneData,标签,位置。重要的是,它还定义了~runOnAttributeChange
关系-在属性更改时运行的事件处理程序。例如,当我们填写doneDate属性时,该脚本会执行-意味着任务已完成,应移至“完成”笔记,并从TODO,位置和标签中删除。
还有一个"button"笔记,其中包含简单的脚本,该脚本在TODO笔记中添加了一个用于创建新笔记(任务)的按钮。
api.addButtonToToolbar({
title: 'New task',
icon: 'check',
shortcut: 'alt+n',
action: async () => {
// creating notes is backend (server) responsibility so we need to pass
// the control there
const taskNoteId = await api.runOnServer(async () => {
const todoRootNote = await api.getNoteWithLabel('taskTodoRoot');
const {note} = await api.createNote(todoRootNote.noteId, 'new task', '');
return note.noteId;
});
// we got an ID of newly created note and we want to immediatelly display it
await api.activateNewNote(taskNoteId);
}
});
在上面的演示截图中,您可能会注意到TODO任务为红色,DONE任务为绿色。
这可以通过以下CSS代码笔记来完成,它定义了额外的CSS类:
span.fancytree-node.todo .fancytree-title {
color: red !important;
}
span.fancytree-node.done .fancytree-title {
color: green !important;
}
该代码笔记具有appCss
标签,Trilium在启动时会识别该标签,并将其作为CSS加载到应用程序中。
此功能的第二部分基于上述事件处理程序,该事件处理程序根据任务状态将#cssClass
标签分配给"done"或"todo"的任务。
返回 概览