mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
37 lines
1.0 KiB
TypeScript
37 lines
1.0 KiB
TypeScript
|
import { CommandRuntime, CommandDeclaration } from '../lib/services/CommandService';
|
||
|
const { _ } = require('lib/locale');
|
||
|
const Note = require('lib/models/Note');
|
||
|
const ExternalEditWatcher = require('lib/services/ExternalEditWatcher');
|
||
|
const { bridge } = require('electron').remote.require('./bridge');
|
||
|
|
||
|
interface Props {
|
||
|
noteId: string
|
||
|
}
|
||
|
|
||
|
export const declaration:CommandDeclaration = {
|
||
|
name: 'startExternalEditing',
|
||
|
label: () => _('Edit in external editor'),
|
||
|
iconName: 'fa-share-square',
|
||
|
};
|
||
|
|
||
|
export const runtime = ():CommandRuntime => {
|
||
|
return {
|
||
|
execute: async (props:Props) => {
|
||
|
try {
|
||
|
const note = await Note.load(props.noteId);
|
||
|
ExternalEditWatcher.instance().openAndWatch(note);
|
||
|
} catch (error) {
|
||
|
bridge().showErrorMessageBox(_('Error opening note in editor: %s', error.message));
|
||
|
}
|
||
|
|
||
|
// await comp.saveNoteAndWait(comp.formNote);
|
||
|
},
|
||
|
isEnabled: (props:any) => {
|
||
|
return !!props.noteId;
|
||
|
},
|
||
|
mapStateToProps: (state:any) => {
|
||
|
return { noteId: state.selectedNoteIds.length === 1 ? state.selectedNoteIds[0] : null };
|
||
|
},
|
||
|
};
|
||
|
};
|