2020-11-07 17:59:37 +02:00
|
|
|
import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
|
|
|
import { _ } from '@joplin/lib/locale';
|
|
|
|
import { stateUtils } from '@joplin/lib/reducer';
|
|
|
|
const Note = require('@joplin/lib/models/Note');
|
|
|
|
const ExternalEditWatcher = require('@joplin/lib/services/ExternalEditWatcher');
|
2020-10-09 19:35:46 +02:00
|
|
|
const bridge = require('electron').remote.require('./bridge').default;
|
2020-07-03 23:32:39 +02:00
|
|
|
|
|
|
|
export const declaration:CommandDeclaration = {
|
|
|
|
name: 'startExternalEditing',
|
|
|
|
label: () => _('Edit in external editor'),
|
2020-09-15 15:01:07 +02:00
|
|
|
iconName: 'icon-share',
|
2020-07-03 23:32:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export const runtime = ():CommandRuntime => {
|
|
|
|
return {
|
2020-10-18 22:52:10 +02:00
|
|
|
execute: async (context:CommandContext, noteId:string = null) => {
|
|
|
|
noteId = noteId || stateUtils.selectedNoteId(context.state);
|
|
|
|
|
2020-07-03 23:32:39 +02:00
|
|
|
try {
|
2020-10-18 22:52:10 +02:00
|
|
|
const note = await Note.load(noteId);
|
2020-07-03 23:32:39 +02:00
|
|
|
ExternalEditWatcher.instance().openAndWatch(note);
|
|
|
|
} catch (error) {
|
|
|
|
bridge().showErrorMessageBox(_('Error opening note in editor: %s', error.message));
|
|
|
|
}
|
|
|
|
},
|
2020-10-18 22:52:10 +02:00
|
|
|
enabledCondition: 'oneNoteSelected',
|
2020-07-03 23:32:39 +02:00
|
|
|
};
|
|
|
|
};
|