mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
4a88d6ff7a
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
import { CommandContext, CommandDeclaration, CommandRuntime } from '@joplin/lib/services/CommandService';
|
|
import { _ } from '@joplin/lib/locale';
|
|
import setLayoutItemProps from '../../ResizableLayout/utils/setLayoutItemProps';
|
|
import layoutItemProp from '../../ResizableLayout/utils/layoutItemProp';
|
|
import { AppState } from '../../../app.reducer';
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'toggleSideBar',
|
|
label: () => _('Toggle sidebar'),
|
|
iconName: 'fas fa-bars',
|
|
};
|
|
|
|
export const runtime = (): CommandRuntime => {
|
|
return {
|
|
execute: async (context: CommandContext) => {
|
|
const layout = (context.state as AppState).mainLayout;
|
|
|
|
const newLayout = setLayoutItemProps(layout, 'sideBar', {
|
|
visible: !layoutItemProp(layout, 'sideBar', 'visible'),
|
|
});
|
|
|
|
// Toggling the sidebar will affect the size of most other on-screen components.
|
|
// Dispatching a window resize event is a bit of a hack, but it ensures that any
|
|
// component that watches for resizes will be accurately notified
|
|
window.dispatchEvent(new Event('resize'));
|
|
|
|
context.dispatch({
|
|
type: 'MAIN_LAYOUT_SET',
|
|
value: newLayout,
|
|
});
|
|
},
|
|
};
|
|
};
|