quill
Version:
Your powerful, rich text editor
30 lines • 961 B
JavaScript
import Picker from './picker.js';
class ColorPicker extends Picker {
constructor(select, label) {
super(select);
this.label.innerHTML = label;
this.container.classList.add('ql-color-picker');
Array.from(this.container.querySelectorAll('.ql-picker-item')).slice(0, 7).forEach(item => {
item.classList.add('ql-primary');
});
}
buildItem(option) {
const item = super.buildItem(option);
item.style.backgroundColor = option.getAttribute('value') || '';
return item;
}
selectItem(item, trigger) {
super.selectItem(item, trigger);
const colorLabel = this.label.querySelector('.ql-color-label');
const value = item ? item.getAttribute('data-value') || '' : '';
if (colorLabel) {
if (colorLabel.tagName === 'line') {
colorLabel.style.stroke = value;
} else {
colorLabel.style.fill = value;
}
}
}
}
export default ColorPicker;
//# sourceMappingURL=color-picker.js.map