mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
import ButtonWidget from "./button_widget.js";
|
|
import appContext from "../../services/app_context.js";
|
|
import froca from "../../services/froca.js";
|
|
|
|
export default class OpenNoteButtonWidget extends ButtonWidget {
|
|
targetNote(noteId) {
|
|
froca.getNote(noteId).then(note => {
|
|
if (!note) {
|
|
console.log(`Note ${noteId} has not been found. This might happen on the first run before the target note is created.`);
|
|
|
|
if (!this.retried) {
|
|
this.retried = true;
|
|
|
|
setTimeout(() => this.targetNote(noteId), 15000); // should be higher than timeout for createMissingSpecialNotes
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
this.icon(note.getIcon());
|
|
this.title(() => {
|
|
const n = froca.getNoteFromCache(noteId);
|
|
|
|
// always fresh, always decoded (when protected session is available)
|
|
return n.title;
|
|
});
|
|
|
|
this.refreshIcon();
|
|
});
|
|
|
|
this.onClick(() => appContext.tabManager.openTabWithNoteWithHoisting(noteId, true));
|
|
|
|
return this;
|
|
}
|
|
|
|
initialRenderCompleteEvent() {
|
|
// we trigger refresh above
|
|
}
|
|
}
|