作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Angular 和 ngx-quill。我有一个自定义工具栏按钮,它将插入具有某些属性的文本。我想在单击该文本时选择该文本。
这是我到目前为止所拥有的:
export class InsertDemographic extends Embed {
static blotName: string = "demographic";
static tagName: string = "span";
static className: string = "demographic";
static create(demographic: Demographic) {
let node = super.create();
node.setAttribute('data-demographic_id', demographic.id);
node.innerHTML = `[${demographic.name.replace(" ","_")}]`;
node.addEventListener("click", () => {
console.log(this);
/* const range = this.quill.getSelection(true);
this.quill.setSelection(range.index - 1, 1, 'user'); */
});
return node;
}
static value(node){
return {
name: node.textContent.replace(/[\[\]]/g,""),
id: node.dataset.demographic_id
} as Demographic;
}
}
我添加了一个单击事件监听器,它应该获取当前的 quill 实例以获取和设置选择。注释代码可以工作,但我不知道如何获取 quill 实例!
最佳答案
简短的回答
这是获取 Quill
的实用方法来自任何子节点的实例:
function findQuill(node) {
while (node) {
const quill = Quill.find(node);
if (quill instanceof Quill) return quill;
node = node.parentElement;
}
}
长答案
Quill
来自污点本身的实例感觉就像与 Quill 战斗,这有点反模式。有时,更“Quill-y”的做事方式可能是使用模块:
import Module from 'quill/core/module';
export class Demographics extends Module {
constructor(quill, options) {
super(quill, options);
quill.root.addEventListener('click', (event) => this.handleClick(event));
}
handleClick(event) {
const node = event.target;
const demographic = node.closest('.demographic');
if (!demographic) return;
const blot = Quill.find(node);
const index = this.quill.getIndex(blot);
const length = blot.length();
this.quill.setSelection(index, length);
}
}
我整理了一个
working example (为简单起见,使用
strong
标签)。
关于angular - 如何在 Embed 印迹扩展中获取 quill 实例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64705524/
我是一名优秀的程序员,十分优秀!