2022-08-04 23:00:32 +02:00
|
|
|
import FlexContainer from "./flex_container.js";
|
|
|
|
import froca from "../../services/froca.js";
|
|
|
|
import ButtonWidget from "../buttons/button_widget.js";
|
2022-08-05 16:44:26 +02:00
|
|
|
import CalendarWidget from "../buttons/calendar.js";
|
|
|
|
import appContext from "../../services/app_context.js";
|
2022-08-05 19:15:28 +02:00
|
|
|
import SpacerWidget from "../spacer.js";
|
|
|
|
import BookmarkButtons from "../bookmark_buttons.js";
|
|
|
|
import ProtectedSessionStatusWidget from "../buttons/protected_session_status.js";
|
|
|
|
import SyncStatusWidget from "../sync_status.js";
|
2022-08-04 23:00:32 +02:00
|
|
|
|
|
|
|
export default class ShortcutContainer extends FlexContainer {
|
|
|
|
constructor() {
|
|
|
|
super('column');
|
|
|
|
|
|
|
|
this.id('shortcut-container');
|
|
|
|
this.css('height', '100%');
|
|
|
|
this.filling();
|
|
|
|
|
|
|
|
this.load();
|
|
|
|
}
|
|
|
|
|
|
|
|
async load() {
|
|
|
|
this.children = [];
|
|
|
|
|
|
|
|
const visibleShortcutsRoot = await froca.getNote('lb_visibleshortcuts');
|
|
|
|
|
|
|
|
for (const shortcut of await visibleShortcutsRoot.getChildNotes()) {
|
2022-08-05 16:44:26 +02:00
|
|
|
if (shortcut.getLabelValue("command")) {
|
|
|
|
this.child(new ButtonWidget()
|
|
|
|
.title(shortcut.title)
|
|
|
|
.icon(shortcut.getIcon())
|
|
|
|
.command(shortcut.getLabelValue("command")));
|
|
|
|
} else if (shortcut.hasRelation('targetNote')) {
|
|
|
|
this.child(new ButtonWidget()
|
|
|
|
.title(shortcut.title)
|
|
|
|
.icon(shortcut.getIcon())
|
|
|
|
.onClick(() => appContext.tabManager.openTabWithNoteWithHoisting(shortcut.getRelationValue('targetNote'), true)));
|
|
|
|
} else {
|
|
|
|
const builtinWidget = shortcut.getLabelValue("builtinWidget");
|
|
|
|
|
|
|
|
if (builtinWidget) {
|
|
|
|
if (builtinWidget === 'calendar') {
|
|
|
|
this.child(new CalendarWidget(shortcut.title, shortcut.getIcon()));
|
2022-08-05 19:15:28 +02:00
|
|
|
} else if (builtinWidget === 'spacer') {
|
|
|
|
this.child(new SpacerWidget(40, 10));
|
|
|
|
} else if (builtinWidget === 'pluginButtons') {
|
|
|
|
this.child(new FlexContainer("column")
|
|
|
|
.id("plugin-buttons")
|
|
|
|
.contentSized());
|
|
|
|
} else if (builtinWidget === 'bookmarks') {
|
|
|
|
this.child(new BookmarkButtons());
|
|
|
|
} else if (builtinWidget === 'protectedSession') {
|
|
|
|
this.child(new ProtectedSessionStatusWidget());
|
|
|
|
} else if (builtinWidget === 'syncStatus') {
|
|
|
|
this.child(new SyncStatusWidget());
|
2022-08-05 16:44:26 +02:00
|
|
|
} else {
|
|
|
|
console.log(`Unrecognized builtin widget ${builtinWidget} for shortcut ${shortcut.noteId} "${shortcut.title}"`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-08-04 23:00:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.$widget.empty();
|
|
|
|
this.renderChildren();
|
|
|
|
|
|
|
|
this.handleEventInChildren('initialRenderComplete');
|
|
|
|
}
|
|
|
|
|
|
|
|
entitiesReloadedEvent({loadResults}) {
|
2022-08-05 16:44:26 +02:00
|
|
|
if (loadResults.getNoteIds().find(noteId => noteId.startsWith("lb_"))
|
|
|
|
|| loadResults.getBranches().find(branch => branch.branchId.startsWith("lb_"))
|
|
|
|
|| loadResults.getAttributes().find(attr => attr.noteId.startsWith("lb_"))) {
|
2022-08-04 23:00:32 +02:00
|
|
|
this.load();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|