mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
33 lines
1.0 KiB
TypeScript
33 lines
1.0 KiB
TypeScript
import { CommandDeclaration, CommandRuntime } from '../../../lib/services/CommandService';
|
|
const { _ } = require('lib/locale');
|
|
const { stateUtils } = require('lib/reducer.js');
|
|
const Setting = require('lib/models/Setting');
|
|
|
|
export const declaration:CommandDeclaration = {
|
|
name: 'toggleEditors',
|
|
label: () => _('Toggle editors'),
|
|
iconName: 'fa-columns',
|
|
};
|
|
|
|
export const runtime = ():CommandRuntime => {
|
|
return {
|
|
execute: async (props:any) => {
|
|
// A bit of a hack, but for now don't allow changing code view
|
|
// while a note is being saved as it will cause a problem with
|
|
// TinyMCE because it won't have time to send its content before
|
|
// being switch to Ace Editor.
|
|
if (props.hasNotesBeingSaved) return;
|
|
Setting.toggle('editor.codeView');
|
|
},
|
|
isEnabled: (props:any):boolean => {
|
|
return !props.hasNotesBeingSaved && props.selectedNoteIds.length === 1;
|
|
},
|
|
mapStateToProps: (state:any):any => {
|
|
return {
|
|
hasNotesBeingSaved: stateUtils.hasNotesBeingSaved(state),
|
|
selectedNoteIds: state.selectedNoteIds,
|
|
};
|
|
},
|
|
};
|
|
};
|