2022-12-01 13:07:23 +01:00
|
|
|
import appContext from "./app_context.js";
|
|
|
|
import shortcutService from "../services/shortcuts.js";
|
|
|
|
import server from "../services/server.js";
|
|
|
|
import Component from "./component.js";
|
2022-12-01 13:24:34 +01:00
|
|
|
import froca from "../services/froca.js";
|
2022-12-01 13:07:23 +01:00
|
|
|
|
|
|
|
export default class ShortcutComponent extends Component {
|
|
|
|
constructor() {
|
2022-12-01 13:24:34 +01:00
|
|
|
super();
|
|
|
|
|
2022-12-01 13:07:23 +01:00
|
|
|
server.get('keyboard-shortcuts-for-notes').then(shortcutAttributes => {
|
2022-12-01 13:24:34 +01:00
|
|
|
for (const attr of shortcutAttributes) {
|
|
|
|
this.bindNoteShortcutHandler(attr);
|
2022-12-01 13:07:23 +01:00
|
|
|
}
|
2022-12-01 13:24:34 +01:00
|
|
|
});
|
2022-12-01 13:07:23 +01:00
|
|
|
}
|
|
|
|
|
2023-06-05 16:26:05 +02:00
|
|
|
bindNoteShortcutHandler(labelOrRow) {
|
|
|
|
const handler = () => appContext.tabManager.getActiveContext().setNote(labelOrRow.noteId);
|
|
|
|
const namespace = labelOrRow.attributeId;
|
2022-12-01 13:24:34 +01:00
|
|
|
|
2023-06-05 16:26:05 +02:00
|
|
|
if (labelOrRow.isDeleted) { // only applicable if row
|
2022-12-01 13:24:34 +01:00
|
|
|
shortcutService.removeGlobalShortcut(namespace);
|
|
|
|
} else {
|
2023-06-05 16:26:05 +02:00
|
|
|
shortcutService.bindGlobalShortcut(labelOrRow.value, handler, namespace);
|
2022-12-01 13:24:34 +01:00
|
|
|
}
|
|
|
|
}
|
2022-12-01 13:07:23 +01:00
|
|
|
|
2022-12-01 13:24:34 +01:00
|
|
|
async entitiesReloadedEvent({loadResults}) {
|
2023-06-05 16:12:02 +02:00
|
|
|
for (const attr of loadResults.getAttributeRows()) {
|
2022-12-01 13:24:34 +01:00
|
|
|
if (attr.type === 'label' && attr.name === 'keyboardShortcut') {
|
|
|
|
const note = await froca.getNote(attr.noteId);
|
|
|
|
// launcher shortcuts are handled specifically
|
|
|
|
if (note && note.type !== 'launcher') {
|
|
|
|
this.bindNoteShortcutHandler(attr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-12-01 13:07:23 +01:00
|
|
|
}
|
|
|
|
}
|