Quilljs toolbar

2.1k Views Asked by At

I have the issue with creating toolbar dynamically. The code is the next:

$onChanges (bind) {
    if (bind.selected.currentValue) {
        window.setTimeout(() => {
            this.quill = new Quill(`#editor-${this.component.id}`, {
                theme: 'snow',
                modules: {
                    toolbar: `#toolbar-container-${this.component.id}`
                },
                placeholder: 'Put some text here'
            });
        }, 1);
    } else {
        this.quill = null;
    }
}
<div id="{{'editor-' + vm.component.id}}"></div>

<div ng-show="vm.component" id="{{'toolbar-container-' + vm.component.id}}">
  <span class="ql-formats">
      <select class="ql-font">
          <option selected>Sans Serif</option>
          <option value="inconsolata">Inconsolata</option>
          <option value="roboto">Roboto</option>
          <option value="mirza">Mirza</option>
          <option value="arial">Arial</option>
      </select>
      <select class="ql-size"></select>
  </span>
          <span class="ql-formats">
      <button class="ql-bold"></button>
      <button class="ql-italic"></button>
      <button class="ql-underline"></button>
  </span>
          <span class="ql-formats">
      <select class="ql-color"></select>
      <select class="ql-background"></select>
  </span>
          <span class="ql-formats">
      <button class="ql-list" value="ordered"></button>
      <button class="ql-list" value="bullet"></button>
  </span>
          <span class="ql-formats">
      <select class="ql-align"></select>
  </span>
          <span class="ql-formats">
      <button class="ql-clean"></button>
  </span>
          <span class="ql-formats">
      <button class="ql-link"></button>
      <button class="ql-image"></button>
      <button class="ql-video"></button>
  </span>
</div>

The #editor and the #toolbar NODES is in the different components.

And i create new instance of the Quill on focus the component.

As well i do it for creating multiple instances of editor and use the toolbar in the single other place.

But on focusing on the editor I got the error

Uncaught TypeError: Cannot read property 'innerHTML' of null
    at IconPicker.selectItem (quill.js:9444)
    at new IconPicker (quill.js:9435)
    at eval (quill.js:6569)
    at Array.map (<anonymous>)
    at SnowTheme.buildPickers (quill.js:6564)
    at SnowTheme.extendToolbar (quill.js:9602)
    at SnowTheme.addModule (quill.js:6533)
    at eval (quill.js:5443)
    at Array.forEach (<anonymous>)
    at SnowTheme.init (quill.js:5441)

And when I try to add the new editor then i got the same error message.

Please provide me with the info, what I am doing wrong? Will appreciate any help about quilljs.

0

There are 0 best solutions below