티스토리 뷰

 

QuillEditor에서 HTML모드가 없어서 code-block를 HTML 모드로 커스텀 하였다.

 

QuillEditor.css

.ql-container
, .ql-editor {
    height: 500px;
}

*[quill__html]{
  display: none;
  width: 100%;
  margin: 0;
  background: rgb(29, 29, 29);
  box-sizing: border-box;
  color: rgb(204, 204, 204);
  outline: none;
  padding: 12px 15px;
  line-height: 24px;
  font-family: Consolas, Menlo, Monaco, "Courier New", monospace;
  position: absolute;
  top: 0;
  bottom: 0;
  border: none;
}

*[quill__html *= '-active-']{
  display: initial;
}

 

QuillEditor.js

import React, { useState, useMemo } from 'react';
import ReactQuill from 'react-quill';

import 'react-quill/dist/quill.snow.css';
import './QuillEditor.css';


// Reference https://quilljs.com/docs/quickstart/
const QuillEditor = () => {

  // html_textArea
  const htmlTextArea = document.createElement('textarea');
  const attrHtmlTextArea = document.createAttribute('quill__html');
  htmlTextArea.setAttributeNode(attrHtmlTextArea);

  /**
   * html 제어
   */
  function htmlHandler() {

    const activeTextArea = (htmlTextArea.getAttribute('quill__html').indexOf('-active-') > -1);

    if (activeTextArea) {

      //html editor to quill
      this.quill.pasteHTML(htmlTextArea.value);

    } else {

      if (!this.quill.container.querySelector('.ql-custom')) {
        // textArea 삽입
        const quillCustomDiv = this.quill.addContainer('ql-custom');
        quillCustomDiv.appendChild(htmlTextArea);
      }

      //quill to html editor
      const html = this.quill.container.querySelector('.ql-editor').innerHTML;
      htmlTextArea.value = html;
    }
    
    htmlTextArea.setAttribute('quill__html', activeTextArea ? '' : '-active-');
  }

  const [value, setValue] = useState('');

  /**
   * QuillEditor 모듈 구성
   */
  const modules = useMemo(() => ({
    toolbar: {
      container: [
        [{ 'font': [] }],
        // [{ header: [1, 2, 3, false] }],                   // custom button values
        [{ 'size': ['small', false, 'large', 'huge'] }],  // custom dropdown
        ['bold', 'italic', 'underline', 'strike'],        // toggled buttons
        [{ 'color': [] }, { 'background': [] }],          // dropdown with defaults from theme
        [{ list: 'ordered' }, { list: 'bullet' }, { 'align': [] }],
        ['link', 'image', 'code-block'],
        ['clean']                                         // remove formatting button
      ],
      handlers: {
        'code-block': htmlHandler
      }
    }
  }), [])

  console.log(value);

  return (
    <ReactQuill theme='snow' value={value} modules={modules} placeholder={'Write something or insert a HTML'} onChange={setValue} />
  );
}

export default QuillEditor;
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
링크
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함