Как я могу создать собственный атрибут стиля в React-Quill?Я хочу добавить функциональность выравнивания в мой блот Twitter.Я пытаюсь использовать дисплей Flex и обосновать свойство контента для выравнивания.Я не могу это реализовать.
Вот как я пытался создать пользовательский атрибут:
const Parchment = Quill.import('parchment');
const config = {
scope: Parchment.Scope.BLOCK,
whitelist: ['flex', 'block', 'inline-block'],
};
const DisplayAttribute = new Parchment.Attributor.Attribute('display', 'display', config);
const DisplayClass = new Parchment.Attributor.Class('display', 'ql-display', config);
const DisplayStyle = new Parchment.Attributor.Style('display', 'display', config);
const configII = {
scope: Parchment.Scope.BLOCK,
whitelist: ['flex-start', 'center', 'flex-end'],
};
const JustifyContentAttribute = new Parchment.Attributor.Attribute('justify-content', 'justify-content', configII);
const JustifyContentClass = new Parchment.Attributor.Class('justify-content', 'ql-justify-content', configII);
const JustifyContentStyle = new Parchment.Attributor.Style('justify-content', 'justify-content', configII);
Quill.register({
'attributors/attribute/display': DisplayAttribute
});
Quill.register({
'attributors/class/display': DisplayClass
});
Quill.register({
'attributors/style/display': DisplayStyle
});
Quill.register({
'formats/display': DisplayClass
});
Quill.register({
'attributors/attribute/justify-content': JustifyContentAttribute
});
Quill.register({
'attributors/class/justify-content': JustifyContentClass
});
Quill.register({
'attributors/style/justify-content': JustifyContentStyle
});
Quill.register({
'formats/justify-content': JustifyContentClass
});
А вот и мой блот в Твиттере:
import ReactQuill from 'react-quill';
// eslint-disable-next-line prefer-destructuring
const Quill = ReactQuill.Quill;
const BlockEmbed = Quill.import('blots/block/embed');
const ATTRIBUTES = ['display', 'justify-content'];
class TwitterBlot extends BlockEmbed {
static create(obj) {
const node = super.create();
node.setAttribute('contenteditable', 'false');
node.setAttribute('id', obj.id);
node.dataset.id = obj.id;
node.dataset.url = obj.url;
node.dataset.html = obj.html;
node.dataset.type = obj.type;
node.setAttribute('display', 'flex');
node.setAttribute('justify-content', 'flex-start');
const innerDiv = document.createElement('div');
innerDiv.innerHTML = obj.html;
innerDiv.classList.add('disablePointerEvents');
if (obj.type === 'timeline') {
const timelineCss = `
height: 600px;
width: 500px;
overflow-x: hidden;
overflow-y: scroll;
border: 1px solid #ccc;
`;
innerDiv.setAttribute('style', timelineCss);
}
// node.setAttribute('style', 'display: flex; justify-content: center;');
node.appendChild(innerDiv);
return node;
}
static value(domNode) {
return {
id: domNode.dataset.id,
url: domNode.dataset.url,
html: domNode.dataset.html,
type: domNode.dataset.type,
};
}
formats() {
twttr.widgets.load();
}
static formats(domNode) {
// We still need to report unregistered embed formats
return ATTRIBUTES.reduce((formats, attribute) => {
if (domNode.hasAttribute(attribute)) {
// eslint-disable-next-line no-param-reassign
formats[attribute] = domNode.getAttribute(attribute);
}
return formats;
}, {});
}
format(name, value) {
if (ATTRIBUTES.indexOf(name) > -1) {
if (value) {
this.domNode.setAttribute(name, value);
} else {
this.domNode.removeAttribute(name);
}
} else {
super.format(name, value);
}
}
}
TwitterBlot.blotName = 'tweet';
TwitterBlot.tagName = 'div';
TwitterBlot.className = 'tweet';
export default TwitterBlot;
Я просто пытаюсь проверить это, изменив выравнивание при функции onClick блока Blot
handleEmbedsFormat(e) {
DisplayAttribute.add(e.target, 'flex');
JustifyContentAttribute.add(e.target, 'center');
console.log('---e', e.target);
}
Я могу выровнять блот, используя обычные методы DOM и inline-стили.Но эти изменения не отражаются в моей дельте.Поэтому я пытался создать собственный атрибут.Я не нашел примеров по этому поводу.
Может ли кто-нибудь указать мне правильное направление?