You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-16 00:14:34 +02:00
All: Use Lerna to manage monorepo
This commit is contained in:
20
packages/app-desktop/commands/stopExternalEditing.ts
Normal file
20
packages/app-desktop/commands/stopExternalEditing.ts
Normal file
@ -0,0 +1,20 @@
|
||||
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');
|
||||
|
||||
export const declaration:CommandDeclaration = {
|
||||
name: 'stopExternalEditing',
|
||||
label: () => _('Stop external editing'),
|
||||
iconName: 'fa-stop',
|
||||
};
|
||||
|
||||
export const runtime = ():CommandRuntime => {
|
||||
return {
|
||||
execute: async (context:CommandContext, noteId:string = null) => {
|
||||
noteId = noteId || stateUtils.selectedNoteId(context.state);
|
||||
ExternalEditWatcher.instance().stopWatching(noteId);
|
||||
},
|
||||
enabledCondition: 'oneNoteSelected',
|
||||
};
|
||||
};
|
Reference in New Issue
Block a user