2020-11-13 19:09:28 +02:00
|
|
|
import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
2020-11-07 17:59:37 +02:00
|
|
|
import { _ } from '@joplin/lib/locale';
|
2020-11-13 19:09:28 +02:00
|
|
|
import layoutItemProp from '../../ResizableLayout/utils/layoutItemProp';
|
2021-09-04 19:11:29 +02:00
|
|
|
import { AppState } from '../../../app.reducer';
|
2020-07-03 23:32:39 +02:00
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
export const declaration: CommandDeclaration = {
|
2020-07-03 23:32:39 +02:00
|
|
|
name: 'focusElementSideBar',
|
|
|
|
label: () => _('Sidebar'),
|
2020-09-13 18:21:11 +02:00
|
|
|
parentLabel: () => _('Focus'),
|
2020-07-03 23:32:39 +02:00
|
|
|
};
|
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
export const runtime = (comp: any): CommandRuntime => {
|
2020-07-03 23:32:39 +02:00
|
|
|
return {
|
2020-11-13 19:09:28 +02:00
|
|
|
execute: async (context: CommandContext) => {
|
2021-01-12 14:28:55 +02:00
|
|
|
const sidebarVisible = layoutItemProp((context.state as AppState).mainLayout, 'sideBar', 'visible');
|
2020-10-18 22:52:10 +02:00
|
|
|
|
2021-01-12 14:28:55 +02:00
|
|
|
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
|
|
|
};
|
|
|
|
};
|