2020-07-03 23:32:39 +02:00
|
|
|
import { CommandDeclaration, CommandRuntime } from '../../../lib/services/CommandService';
|
|
|
|
const { _ } = require('lib/locale');
|
|
|
|
|
|
|
|
export const declaration:CommandDeclaration = {
|
|
|
|
name: 'toggleVisiblePanes',
|
|
|
|
label: () => _('Toggle editor layout'),
|
2020-09-15 15:01:07 +02:00
|
|
|
iconName: 'icon-layout ',
|
2020-07-03 23:32:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export const runtime = (comp:any):CommandRuntime => {
|
|
|
|
return {
|
|
|
|
execute: async () => {
|
|
|
|
comp.props.dispatch({
|
|
|
|
type: 'NOTE_VISIBLE_PANES_TOGGLE',
|
|
|
|
});
|
|
|
|
},
|
|
|
|
isEnabled: (props:any):boolean => {
|
|
|
|
return props.settingEditorCodeView && props.selectedNoteIds.length === 1;
|
|
|
|
},
|
|
|
|
mapStateToProps: (state:any):any => {
|
|
|
|
return {
|
|
|
|
selectedNoteIds: state.selectedNoteIds,
|
|
|
|
settingEditorCodeView: state.settings['editor.codeView'],
|
|
|
|
};
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|