2020-11-07 15:59:37 +00:00
|
|
|
import { CommandDeclaration, CommandRuntime } from '@joplin/lib/services/CommandService';
|
|
|
|
import { _ } from '@joplin/lib/locale';
|
2020-07-03 21:32:39 +00:00
|
|
|
|
2020-11-12 19:13:28 +00:00
|
|
|
export const declaration: CommandDeclaration = {
|
2020-07-03 21:32:39 +00:00
|
|
|
name: 'toggleVisiblePanes',
|
|
|
|
label: () => _('Toggle editor layout'),
|
2020-09-15 13:01:07 +00:00
|
|
|
iconName: 'icon-layout ',
|
2020-07-03 21:32:39 +00:00
|
|
|
};
|
|
|
|
|
2020-11-12 19:13:28 +00:00
|
|
|
export const runtime = (comp: any): CommandRuntime => {
|
2020-07-03 21:32:39 +00:00
|
|
|
return {
|
|
|
|
execute: async () => {
|
|
|
|
comp.props.dispatch({
|
|
|
|
type: 'NOTE_VISIBLE_PANES_TOGGLE',
|
|
|
|
});
|
|
|
|
},
|
2020-10-18 20:52:10 +00:00
|
|
|
|
|
|
|
enabledCondition: 'markdownEditorVisible && oneNoteSelected',
|
2020-07-03 21:32:39 +00:00
|
|
|
};
|
|
|
|
};
|