Browse Source

富文本编辑器

dev01 1 year ago
parent
commit
ab41ffbef5
3 changed files with 59 additions and 0 deletions
  1. 57 0
      src/components/editor/index.js
  2. 0 0
      src/components/editor/index.scss
  3. 2 0
      src/pages/user/user.js

+ 57 - 0
src/components/editor/index.js

@@ -0,0 +1,57 @@
+import '@wangeditor/editor/dist/css/style.css'
+import Taro, { Component } from '@tarojs/taro'
+import { View, Text, Image, ScrollView } from '@tarojs/components'
+import { Editor, Toolbar } from '@wangeditor/editor-for-react'
+import { IDomEditor, IEditorConfig, IToolbarConfig } from '@wangeditor/editor'
+import './index.scss'
+
+
+
+class MyEditor extends Component {
+
+  state = {
+    editor: null,
+    html: "<p>hello</p>",
+  }
+
+  // 及时销毁 editor ,重要!
+  // useEffect(() => {
+  //   return () => {
+  //     if (editor == null) return
+  //     editor.destroy()
+  //     setEditor(null)
+  //   }
+  // }, [editor])
+
+  render() {
+    const toolbarConfig = {}
+    const editorConfig = {                         
+      placeholder: '请输入内容...',
+    }
+    return (
+      <View>
+        <View style={{ border: '1px solid #ccc', zIndex: 100 }}>
+          <Toolbar
+            editor={editor}
+            defaultConfig={toolbarConfig}
+            mode="default"
+            style={{ borderBottom: '1px solid #ccc' }}
+          />
+          <Editor
+            defaultConfig={editorConfig}
+            value={html}
+            onCreated={setEditor}
+            onChange={editor => setHtml(editor.getHtml())}
+            mode="default"
+            style={{ height: '500px', overflowY: 'hidden' }}
+          />
+        </View>
+        <View style={{ marginTop: '15px' }}>
+          {html}
+        </View>
+      </View>
+    )
+  }
+}
+
+export default MyEditor

+ 0 - 0
src/components/editor/index.scss


+ 2 - 0
src/pages/user/user.js

@@ -4,6 +4,7 @@ import { Loading } from '@components'
 import { connect } from '@tarojs/redux'
 import * as actions from '@actions/user'
 import { getWindowHeight } from '@utils/style'
+import MyEditor from '../../components/editor'
 import './user.scss'
 
 const RECOMMEND_SIZE = 20
@@ -39,6 +40,7 @@ class User extends Component {
           className='home__wrap'
           style={{ height: getWindowHeight() }}
         >
+          {/* <MyEditor /> */}
           <View className='exit'>退出登录</View>
         </ScrollView>
       </View>