gpt4 book ai didi

jquery - 集成在 GrapesJS 编辑器中的内联 CKeditor

转载 作者:行者123 更新时间:2023-12-05 00:45:29 25 4
gpt4 key购买 nike

我正在一个实现了 GrapesJS 的编辑器应用程序中工作。它的编辑器和功能运行良好。我已将内联 CKeditor 集成到 GrapesJS 编辑器中,并且几乎没有问题。

  1. 显示了多个内联编辑选项
  2. 有时编辑器选项位置不正确
  3. 主要问题:显示内嵌选项,但未反射(reflect)所选文本。我的意思是我们可以单击这些内联选项来格式化编辑器内容,但它不会反射(reflect)在编辑器中。

在这里我分享一些编写的代码:

const editor = grapesjs.init({
container: '#gjs',
fromElement: 1,
height: '100%',
storageManager: { type: 0 },
plugins: ['gjs-plugin-ckeditor']
});

editor.setCustomRte({
enable: function(el, rte) {
// If already exists just focus
if (rte) {
this.focus(el, rte); // implemented later
return rte;
}

// CKEditor initialization
rte = CKEDITOR.inline(el, {
// Your configurations...
toolbar: [
{ name: 'styles', items: ['Font', 'FontSize' ] },
['Bold', 'Italic', 'Underline', 'Strike'],
{name: 'paragraph', items : [ 'NumberedList', 'BulletedList']},
{name: 'links', items: ['Link', 'Unlink']},
{name: 'colors', items: [ 'TextColor', 'BGColor' ]},
],
uiColor: '#9AB8F3', // Inline editor color
startupFocus: true,
extraAllowedContent: '*(*);*{*}', // Allows any class and any inline style
allowedContent: true, // Disable auto-formatting, class removing, etc.
enterMode: CKEDITOR.ENTER_BR,
// extraPlugins: 'sharedspace,justify,colorbutton,panelbutton,font',

// sharedSpaces: {
// top: editor.RichTextEditor.getToolbarEl(),
// }
});

this.focus(el, rte); // implemented later
return rte;
},
focus(el, rte) {
// Do nothing if already focused
if (rte && rte.focusManager.hasFocus) {
return;
}
el.contentEditable = true;
rte && rte.focus();
},
disable(el, rte) {
el.contentEditable = false;
if (rte && rte.focusManager)
rte.focusManager.blur(true);
}
});

这里是 JSFiddle您可以在其中检查工作和代码。

版本:

grapesjs - 0.16.18

ckeditor - 标准 - 4.14.1

预期的行为是什么?

在应用内联 CKeditor 选项中的内联格式选项时,它应该反射(reflect)在选定的文本中。

详细描述错误:

我已经在grapesJS 编辑器中集成了CKeditor 用于内联编辑。目前,当我选择文本对其进行格式化时,内联 CKeditor 选项与其他几个选项一起显示在黑色工具栏中。我对此感到困惑。主要问题是,即使我使用任何内联格式选项,格式也不会反射(reflect)在所选文本中。无法通过 CKeditor 内联选项执行任何操作,例如文本格式、列表、图片上传、链接等。

目前的行为是什么?

主要问题是即使我使用任何内联选项,格式也不会反射(reflect)在所选文本中。无法通过 CKeditor 内联选项执行任何操作,例如文本格式、列表、图片上传、链接等。

enter image description here

最佳答案

如您所见,我没有收到 SO 的任何回复。我也在 Github 上报告了这个问题,在那里我看到了类似问题的响应。几天后,我得到了回复,对我来说效果很好。因此,我希望与大家分享该回复,这可能对像我这样的其他人有所帮助。

我的第一个问题:显示多个内联编辑选项

The GrapesJS CKEditor plugin already registers CKEditor as acustom RTE, so calling editor.setCustomRte is actually setting it up twice.

我已删除 editor.setCustomRte block &它工作得很好。如果你想提供 CKEditor 选项,这应该在 pluginsOpts 完成。水平如图here .

这是我的第二个问题:有时编辑器选项定位不正确

这在删除 editor.setCustomRte 后也得到了修复 block 。

而且,我在集成时遇到的最后一个主要问题:内联格式未反射(reflect)在所选文本中

The GrapesJS CKEditor plugin is dependent on the Standard-All CKEditor version, not using the Standard CKEditor version. Use https://cdn.ckeditor.com/4.14.1/standard-all/ckeditor.js it will fix.

这是一个有效的 fiddle您可以引用 Inline CKEditor 与 GrapesJS 的集成

enter image description here

额外说明:删除 editor.setCustomRte 后我遇到了另一个问题 block - 这是我的第一个问题的修复。它看起来像:

ckeditor.js:270 Uncaught Error: [CKEDITOR.resourceManager.load] Resource name "sharedspace" was not found at "https://cdn.ckeditor.com/4.14.1/standard/plugins/sharedspace/plugin.js?t=K5H9".
at CKEDITOR.resourceManager.<anonymous> (ckeditor.js:270)
at e (ckeditor.js:265)
at Array.x (ckeditor.js:265)
at w (ckeditor.js:265)
at HTMLScriptElement.CKEDITOR.env.ie.e.$.onerror (ckeditor.js:266)

如果您遇到类似的错误,请注意这是因为您使用的 CKEditor 类型/版本。我使用的是 Standard CKEditor version这就是问题所在。将其更改为 Standard-All CKEditor version 后,问题已解决。

Grapedrop是一个网站,您可以在其中创建帐户并检查 GrapesJS 的几乎所有属性。

这是 CKEditor 中使用的额外插件列表:

dialogui,dialog,a11yhelp,dialogadvtab,basicstyles,bidi,blockquote,
notification,button,toolbar,clipboard,panelbutton,panel,floatpanel,
colorbutton,colordialog,templates,menu,contextmenu,copyformatting,div,
resize,elementspath,enterkey,entities,exportpdf,popup,filetools,
filebrowser,find,fakeobjects,flash,floatingspace,listblock,richcombo,font,
forms,format,horizontalrule,htmlwriter,iframe,wysiwygarea,image,indent,
indentblock,indentlist,smiley,justify,menubutton,language,link,list,
liststyle,magicline,maximize,newpage,pagebreak,pastetext,pastetools,
pastefromgdocs,pastefromword,preview,print,removeformat,save,selectall,
showblocks,showborders,sourcearea,specialchar,scayt,stylescombo,tab,table,
tabletools,tableselection,undo,lineutils,widgetselection,widget,
notificationaggregator,uploadwidget,uploadimage,wsc

enter image description here

CKEditor Inline custom toolbar根据需要添加选项

更新: CKEditor Inline standard-all 版本仅适用于少数 HTML 标签行 <div> , <p> , <h1> - <h6> .此内联编辑器不会针对 strong 等元素弹出, i , span等。这是一个 solution针对上述问题。

关于jquery - 集成在 GrapesJS 编辑器中的内联 CKeditor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63499261/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com