mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
33 lines
876 B
TypeScript
33 lines
876 B
TypeScript
|
import { CommandRuntime, CommandDeclaration } from '../../../lib/services/CommandService';
|
||
|
const { _ } = require('lib/locale');
|
||
|
|
||
|
export const declaration:CommandDeclaration = {
|
||
|
name: 'focusElementSideBar',
|
||
|
label: () => _('Sidebar'),
|
||
|
};
|
||
|
|
||
|
export const runtime = (comp:any):CommandRuntime => {
|
||
|
return {
|
||
|
execute: async ({ sidebarVisibility }:any) => {
|
||
|
if (sidebarVisibility) {
|
||
|
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();
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
isEnabled: (props:any):boolean => {
|
||
|
return props.sidebarVisibility;
|
||
|
},
|
||
|
mapStateToProps: (state:any):any => {
|
||
|
return {
|
||
|
sidebarVisibility: state.sidebarVisibility,
|
||
|
};
|
||
|
},
|
||
|
};
|
||
|
};
|