mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
21 lines
520 B
TypeScript
21 lines
520 B
TypeScript
import { CommandDeclaration, CommandRuntime } from '@joplin/lib/services/CommandService';
|
|
import { _ } from '@joplin/lib/locale';
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'toggleVisiblePanes',
|
|
label: () => _('Toggle editor layout'),
|
|
iconName: 'icon-layout ',
|
|
};
|
|
|
|
export const runtime = (comp: any): CommandRuntime => {
|
|
return {
|
|
execute: async () => {
|
|
comp.props.dispatch({
|
|
type: 'NOTE_VISIBLE_PANES_TOGGLE',
|
|
});
|
|
},
|
|
|
|
enabledCondition: 'markdownEditorVisible && oneNoteSelected',
|
|
};
|
|
};
|