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