mirror of
https://github.com/zadam/trilium.git
synced 2025-12-17 05:39:55 +01:00
16 lines
473 B
TypeScript
16 lines
473 B
TypeScript
import NoteLauncher from "./note_launcher.js";
|
|
import dateNotesService from "../../../services/date_notes.js";
|
|
import appContext from "../../../components/app_context.js";
|
|
|
|
export default class TodayLauncher extends NoteLauncher {
|
|
async getTargetNoteId() {
|
|
const todayNote = await dateNotesService.getTodayNote();
|
|
|
|
return todayNote?.noteId;
|
|
}
|
|
|
|
getHoistedNoteId() {
|
|
return appContext.tabManager.getActiveContext()?.hoistedNoteId;
|
|
}
|
|
}
|