2020-11-05 18:58:23 +02:00
|
|
|
import { CommandRuntime, CommandDeclaration } from '@joplinapp/lib/services/CommandService';
|
|
|
|
import { _ } from '@joplinapp/lib/locale';
|
2020-07-03 23:32:39 +02:00
|
|
|
|
|
|
|
export const declaration:CommandDeclaration = {
|
|
|
|
name: 'focusElementSideBar',
|
|
|
|
label: () => _('Sidebar'),
|
2020-09-13 18:21:11 +02:00
|
|
|
parentLabel: () => _('Focus'),
|
2020-07-03 23:32:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export const runtime = (comp:any):CommandRuntime => {
|
|
|
|
return {
|
2020-11-05 18:58:23 +02:00
|
|
|
execute: async (context:any) => {
|
2020-10-18 22:52:10 +02:00
|
|
|
const sideBarVisible = !!context.state.sidebarVisibility;
|
|
|
|
|
|
|
|
if (sideBarVisible) {
|
2020-07-03 23:32:39 +02:00
|
|
|
const item = comp.selectedItem();
|
|
|
|
if (item) {
|
|
|
|
const anchorRef = comp.anchorItemRefs[item.type][item.id];
|
|
|
|
if (anchorRef) anchorRef.current.focus();
|
|
|
|
} else {
|
|
|
|
const anchorRef = comp.firstAnchorItemRef('folder');
|
|
|
|
if (anchorRef) anchorRef.current.focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-10-18 22:52:10 +02:00
|
|
|
|
|
|
|
enabledCondition: 'sideBarVisible',
|
2020-07-03 23:32:39 +02:00
|
|
|
};
|
|
|
|
};
|