2020-11-13 19:09:28 +02:00
|
|
|
import { CommandDeclaration, CommandRuntime, CommandContext } from '@joplin/lib/services/CommandService';
|
|
|
|
import { _ } from '@joplin/lib/locale';
|
2021-09-04 19:11:29 +02:00
|
|
|
import { AppState } from '../../../app.reducer';
|
2020-11-13 19:09:28 +02:00
|
|
|
|
|
|
|
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,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|