티스토리 뷰
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;
'프로그래밍 > Front end' 카테고리의 다른 글
[Front end] SNS 로그인 연동(네이버, 카카오) with React (1) | 2021.03.26 |
---|---|
[Front end] 간단한 React 구동 Shell 스크립트 (0) | 2021.03.24 |
[Front end] React QuillEditor image url & api callBack (1) | 2021.02.16 |
[Front end] React yarn eject error Cannot find module '@babel/plugin-syntax-jsx' (0) | 2021.02.10 |
[Front end] React Proxy 설정 and 멀티 (0) | 2021.02.05 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
링크
TAG
- Tomcat
- sort algorithm
- 리액트
- 리눅스 명령어
- Maven
- 프로그래머스
- 자바스크립트
- Java
- 성능분석
- SQL
- 경력관리
- 제주도 3박4일 일정
- effective java
- 이직
- 프로그래머
- spring
- 오라클 내장 함수
- 자바
- javascript
- 회고
- Collection
- 소프트웨어공학
- 정렬 알고리즘
- 오라클
- 제주도 여행
- Eclipse
- React
- 리액트 16
- Linux 명령어
- 개발환경
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함