2020-11-05 18:58:23 +02:00
|
|
|
import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplinapp/lib/services/CommandService';
|
|
|
|
import { _ } from '@joplinapp/lib/locale';
|
|
|
|
import { stateUtils } from '@joplinapp/lib/reducer';
|
|
|
|
const ExternalEditWatcher = require('@joplinapp/lib/services/ExternalEditWatcher');
|
2020-07-03 23:32:39 +02:00
|
|
|
|
|
|
|
export const declaration:CommandDeclaration = {
|
|
|
|
name: 'stopExternalEditing',
|
|
|
|
label: () => _('Stop external editing'),
|
|
|
|
iconName: 'fa-stop',
|
|
|
|
};
|
|
|
|
|
|
|
|
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);
|
|
|
|
ExternalEditWatcher.instance().stopWatching(noteId);
|
2020-07-03 23:32:39 +02:00
|
|
|
},
|
2020-10-18 22:52:10 +02:00
|
|
|
enabledCondition: 'oneNoteSelected',
|
2020-07-03 23:32:39 +02:00
|
|
|
};
|
|
|
|
};
|