1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-21 09:38:01 +02:00
joplin/packages/app-desktop/gui/Sidebar/commands/focusElementSideBar.ts

42 lines
1.5 KiB
TypeScript

import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
import { _ } from '@joplin/lib/locale';
import layoutItemProp from '../../ResizableLayout/utils/layoutItemProp';
import { AppState } from '../../../app.reducer';
import { focus } from '@joplin/lib/utils/focusHandler';
export const declaration: CommandDeclaration = {
name: 'focusElementSideBar',
label: () => _('Sidebar'),
parentLabel: () => _('Focus'),
};
export interface RuntimeProps {
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
getSelectedItem(): any;
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
getFirstAnchorItemRef(type: string): any;
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
anchorItemRefs: any;
}
export const runtime = (props: RuntimeProps): CommandRuntime => {
return {
execute: async (context: CommandContext) => {
const sidebarVisible = layoutItemProp((context.state as AppState).mainLayout, 'sideBar', 'visible');
if (sidebarVisible) {
const item = props.getSelectedItem();
if (item) {
const anchorRef = props.anchorItemRefs.current[item.type][item.id];
if (anchorRef) focus('focusElementSideBar1', anchorRef.current);
} else {
const anchorRef = props.getFirstAnchorItemRef('folder');
if (anchorRef) focus('focusElementSideBar2', anchorRef.current);
}
}
},
enabledCondition: 'sideBarVisible',
};
};