2023-02-13 21:16:33 +02:00
|
|
|
import { CommandRuntime, CommandDeclaration } from '@joplin/lib/services/CommandService';
|
|
|
|
import { _ } from '@joplin/lib/locale';
|
|
|
|
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
|
|
name: 'pasteAsText',
|
|
|
|
label: () => _('Paste as text'),
|
|
|
|
};
|
|
|
|
|
2024-04-05 13:16:49 +02:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
2023-02-13 21:16:33 +02:00
|
|
|
export const runtime = (comp: any): CommandRuntime => {
|
|
|
|
return {
|
|
|
|
execute: async () => {
|
|
|
|
comp.editorRef.current.execCommand({ name: 'pasteAsText' });
|
|
|
|
},
|
|
|
|
enabledCondition: 'oneNoteSelected && richTextEditorVisible',
|
|
|
|
};
|
|
|
|
};
|