mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
30 lines
809 B
TypeScript
30 lines
809 B
TypeScript
import { CommandRuntime, CommandDeclaration } from '@joplin/lib/services/CommandService';
|
|
import { _ } from '@joplin/lib/locale';
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'focusElementSideBar',
|
|
label: () => _('Sidebar'),
|
|
parentLabel: () => _('Focus'),
|
|
};
|
|
|
|
export const runtime = (comp: any): CommandRuntime => {
|
|
return {
|
|
execute: async (context: any) => {
|
|
const sideBarVisible = !!context.state.sidebarVisibility;
|
|
|
|
if (sideBarVisible) {
|
|
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();
|
|
}
|
|
}
|
|
},
|
|
|
|
enabledCondition: 'sideBarVisible',
|
|
};
|
|
};
|