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';
|
2020-11-16 13:03:44 +02:00
|
|
|
import ExternalEditWatcher from '@joplin/lib/services/ExternalEditWatcher';
|
2020-07-03 23:32:39 +02:00
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
export const declaration: CommandDeclaration = {
|
2020-07-03 23:32:39 +02:00
|
|
|
name: 'stopExternalEditing',
|
|
|
|
label: () => _('Stop external editing'),
|
|
|
|
iconName: 'fa-stop',
|
|
|
|
};
|
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
export const runtime = (): CommandRuntime => {
|
2020-07-03 23:32:39 +02:00
|
|
|
return {
|
2020-11-12 21:13:28 +02:00
|
|
|
execute: async (context: CommandContext, noteId: string = null) => {
|
2020-10-18 22:52:10 +02:00
|
|
|
noteId = noteId || stateUtils.selectedNoteId(context.state);
|
2020-11-25 16:40:25 +02:00
|
|
|
void ExternalEditWatcher.instance().stopWatching(noteId);
|
2020-07-03 23:32:39 +02:00
|
|
|
},
|
2023-07-16 18:42:42 +02:00
|
|
|
enabledCondition: 'oneNoteSelected && !noteIsReadOnly',
|
2020-07-03 23:32:39 +02:00
|
|
|
};
|
|
|
|
};
|