1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/packages/app-desktop/commands/replaceMisspelling.ts

30 lines
1.2 KiB
TypeScript

import CommandService, { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
import { AppState } from '../app.reducer';
import bridge from '../services/bridge';
import { isInsideContainer } from '@joplin/lib/dom';
export const declaration: CommandDeclaration = {
name: 'replaceMisspelling',
};
export const runtime = (): CommandRuntime => {
return {
execute: async (context: CommandContext, suggestion: string) => {
const state = context.state as AppState;
const modalDialogVisible = !!Object.keys(state.visibleDialogs).length;
// If we're inside one of the editors, we need to use their own
// replaceSelection command to set the suggested word. Outside of
// it, we can use the Chrome built-in replaceMisspelling function,
// which will work in any standard text input.
const activeElement = document.activeElement;
if (!modalDialogVisible && (isInsideContainer(activeElement, 'codeMirrorEditor') || isInsideContainer(activeElement, 'tox-edit-area__iframe'))) {
await CommandService.instance().execute('replaceSelection', suggestion);
} else {
bridge().window().webContents.replaceMisspelling(suggestion);
}
},
};
};