Notes/src/public/app/widgets/buttons/launcher/today_launcher.js
2022-12-18 23:25:35 +01:00

16 lines
471 B
JavaScript

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;
}
}