2020-07-03 23:32:39 +02:00
|
|
|
import { CommandRuntime, CommandDeclaration } from '../../../lib/services/CommandService';
|
|
|
|
const { _ } = require('lib/locale');
|
|
|
|
|
|
|
|
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 {
|
|
|
|
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,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|