我正在尝试创建一个 CKEditor5 自定义元素插件 - 主要用于自定义格式/样式 - 嵌套 div 等。管理能够注入/格式化元素,我可以输入它们。但是,如果我尝试将文本复制并粘贴到自定义元素中,则会出现太多递归错误。
MyWidget 插件:
export default class MyWidgetPlugin extends Plugin {
init() {
const editor = this.editor;
editor.model.schema.register('my-widget', {
inheritAllFrom: '$root',
isLimit: true,
});
editor.conversion.elementToElement({ model: 'my-widget', view: 'my-widget' });
editor.commands.add('myWidget', new MyWidgetCommand(editor));
}
}
MyWidget 命令:
class MyWidgetCommand extends Command {
execute() {
const editor = this.editor;
const block = first(this.editor.model.document.selection.getSelectedBlocks());
this.editor.model.change(writer => {
const myWidget = writer.createElement('my-widget')
writer.insert ( myWidget, block, 'after');
writer.appendElement( 'paragraph', myWidget );
});
}
}
插入一个小部件会将其注入编辑器:
<my-widget>
<p></p>
</my-widget>
我可以打字很好,但我不能粘贴。我猜我的架构错了……玩了很多不同的选择……但无济于事。