如何在Quill编辑器中向内容添加不可编辑的标记

问题描述 投票:7回答:1

我想添加一些预制的标签,如

<div class="label"> Label Text <span>x</span><div>

到主播编辑器中的html内容。添加这样的标签本身不应该是一个问题。但是我不希望用户能够编辑标签内的文本。甚至不允许将光标放在标签内。删除时,应删除整个div。在某种意义上,整个标签应该像一个图像。可能吗 ?

reactjs wysiwyg wysihtml5 quill
1个回答
3
投票

您应该能够通过编写自己的Blot来实现这一目标:

class Label extends Parchment.Embed {
  static create(value) {
    const node = super.create(value);
    node.innerText = value;
    // Remember to set this so users can't edit
    // the label's content
    node.contentEditable = 'false';
    this._addRemovalButton(node);
    return node;
  }

  static value(node) {
    // Only return the text of the first child
    // node (ie the text node), otherwise the
    // value includes the contents of the button
    return node.childNodes[0].textContent;
  }

  static _addRemovalButton(node) {
    const button = document.createElement('button');
    button.innerText = 'x';
    button.onclick = () => node.remove();
    button.contentEditable = 'false';
    node.appendChild(button);

    // Extra span forces the cursor to the end of
    // the label, otherwise it appears inside the
    // removal button
    const span = document.createElement('span');
    span.innerText = ' ';
    node.appendChild(span);
  }
}
Label.blotName = 'label';
Label.tagName = 'SPAN';
Label.className = 'ql-label';

你用羽毛笔register它:

Quill.register(Label);

最后,你可以用类似于image或其他embeds的方式使用它:

quill.updateContents(
  new Delta().insert({ label: 'foo' })
);

注意:您需要的任何样式都可以使用.ql-label类:

.ql-label {
  background-color: lightgrey;
  padding: 0.3em;
  margin: 0 0.2em;
}

.ql-label button {
  margin-left: 0.3em;
}

最后终于:一个working example

© www.soinside.com 2019 - 2024. All rights reserved.