目录
一、组件代码
二、参考文档
由于Next与react有些差别,直接调用组件会报无法找到文档的错误,于是我们只有考虑动态导入了解决问题。因为富文本编辑器一般作用与form页面对SEO意义不大,所以这里可以考虑暂时关闭SSR。
一、组件代码
/**
* @author Dragon Wu
* @since 2024/6/11 14:36
*/
import React, {useEffect, useState} from 'react';
import dynamic from 'next/dynamic';
import 'react-quill/dist/quill.snow.css';
import styles from "@/styles/publishTender.module.less";
const ReactQuill = dynamic(() => import('react-quill'), {ssr: false});
const TenderEditor: React.FC<{ defaultValue: string, onChange: Function }> = React.memo(({defaultValue, onChange}) => {
const [editorValue, setEditorValue] = useState(defaultValue);
const handleChange = (content) => {
setEditorValue(content);
onChange(content);
};
useEffect(() => {
handleChange(defaultValue)
}, [defaultValue]);
return (<>
<ReactQuill
modules={{
toolbar: [
['bold', 'italic', 'underline', 'strike'], // toggled buttons
['blockquote', 'code-block'],
['link', 'image', 'video', 'formula'],
[{ 'header': 1 }, { 'header': 2 }], // custom button values
[{ 'list': 'ordered'}, { 'list': 'bullet' }, { 'list': 'check' }],
[{ 'script': 'sub'}, { 'script': 'super' }], // superscript/subscript
[{ 'indent': '-1'}, { 'indent': '+1' }], // outdent/indent
[{ 'direction': 'rtl' }], // text direction
[{ 'size': ['small', false, 'large', 'huge'] }], // custom dropdown
[{ 'header': [1, 2, 3, 4, 5, 6, false] }],
[{ 'color': [] }, { 'background': [] }], // dropdown with defaults from theme
// [{ 'font': [] }],
[{ 'align': [] }],
['clean'] // remove formatting button
],
}}
value={editorValue}
onChange={handleChange}
theme="snow"
placeholder="输入详情信息"
className={styles.editor}
/>
</>)
});
TenderEditor.displayName = "TenderEditor";
export default TenderEditor;
正常渲染,没有再报错:
二、参考文档
next.js - React Quill , unable to access import of Quill.import - Stack Overflow
react富文本编辑器 react-quill简单使用 - 简书