1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/packages/app-desktop/gui/MainScreen/commands/toggleLayoutMoveMode.ts
2021-09-04 18:11:29 +01:00

21 lines
640 B
TypeScript

import { CommandDeclaration, CommandRuntime, CommandContext } from '@joplin/lib/services/CommandService';
import { _ } from '@joplin/lib/locale';
import { AppState } from '../../../app.reducer';
export const declaration: CommandDeclaration = {
name: 'toggleLayoutMoveMode',
label: () => _('Change application layout'),
};
export const runtime = (): CommandRuntime => {
return {
execute: async (context: CommandContext, value: boolean = null) => {
const newValue = value !== null ? value : !(context.state as AppState).layoutMoveMode;
context.dispatch({
type: 'LAYOUT_MOVE_MODE_SET',
value: newValue,
});
},
};
};