dev01 1 year ago
parent
commit
f05293aaa4

+ 3 - 3
src/app.js

@@ -10,9 +10,9 @@ import './app.scss'
 
 // 如果需要在 h5 环境中开启 React Devtools
 // 取消以下注释:
-// if (process.env.NODE_ENV !== 'production' && process.env.TARO_ENV === 'h5')  {
-//   require('nerv-devtools')
-// }
+if (process.env.NODE_ENV !== 'production' && process.env.TARO_ENV === 'h5')  {
+  require('nerv-devtools')
+}
 
 const store = configStore()
 

BIN
src/assets/editor/bold.png


BIN
src/assets/editor/center.png


BIN
src/assets/editor/italic.png


BIN
src/assets/editor/left.png


BIN
src/assets/editor/line.png


BIN
src/assets/editor/right.png


+ 133 - 9
src/components/editor/index.js

@@ -1,21 +1,145 @@
 import Taro, { Component } from '@tarojs/taro'
-import { View, Text, Image, ScrollView } from '@tarojs/components'
-import './index.scss'
+import { View, Text, Image, Textarea } from "@tarojs/components";
+import uploadLeftIcon from '../../assets/editor/left.png'
+import uploadCenterIcon from '../../assets/editor/center.png'
+import uploadRightIcon from '../../assets/editor/right.png'
+import uploadBoldIcon from '../../assets/editor/bold.png'
+import uploadItalicIcon from '../../assets/editor/italic.png'
+import uploadUnderlineIcon from '../../assets/editor/line.png'
+import './index.scss';
+class RuiEditor extends Component {
 
-class MyEditor extends Component {
+  static defaultProps = {
+    placeholder: '文字内容...',
+  }
+
+
+  componentDidMount() {
+    const { keys, placeholder } = this.props
+    // H5环境需要监听编辑器
+    this.hasWeappOrWeb(() => {
+      let _this = this;
+      // let editor = document.getElementById('editor');
+      let editor = document.getElementsByClassName('rui-div-editor')[keys]
+      editor.addEventListener("focus", function () {
+        if (this.innerHTML == '文字内容...') {
+          this.innerHTML = '';
+        }
+      })
+      editor.addEventListener("input", function () {
+        _this.getChangeValue(_this.getWebEndHtml());
+      });
+      editor.addEventListener("blur", function () {
+        if (this.innerHTML == '') {
+          this.innerHTML = placeholder;
+        }
+      })
+    })
+  }
 
-  state = {
+  shouldComponentUpdate(nextProps) {
+    const { keys } = this.props
+    let editor = document.getElementsByClassName('rui-div-editor')[keys]
+    return nextProps.placeholder !== editor.innerHTML
+  }
 
+  componentDidUpdate() {
+    const { placeholder, keys } = this.props
+    let editor = document.getElementsByClassName('rui-div-editor')[keys]
+    if (placeholder !== editor.innerHTML) {
+      editor.innerHTML = placeholder
+    }
   }
 
+  hasWeappOrWeb(callbackweb) {
+    callbackweb.call(this)
+  }
 
   render() {
-    return (
-      <View>
+    return <View className="rui-editor-com-content">
+      {/* 富文本编辑器导航 */}
+      {this.getEditorNavbarHtml()}
 
-      </View>
-    )
+      {/* 富文本编辑器输入框 */}
+      {this.getEditorHtml()}
+    </View>;
+  }
+  // H5改变完成获取富文本的内容输出
+  getWebEndHtml() {
+    const { keys } = this.props
+    let editor = document.getElementsByClassName('rui-div-editor')[keys]
+    // let editor = document.getElementById('editor');
+    // return `<div>${editor.innerHTML}</div>`;
+    return editor.innerHTML;
+  }
+  // 格式化等操作导航
+  getEditorNavbarHtml() {
+    // let { editNavs } = this.state;
+    const editNavs = [
+      {
+        icon: uploadLeftIcon,
+        event: this.hasWeappOrWeb.bind(this, this.format.bind(this, 'justifyRight'))
+      },
+      {
+        icon: uploadCenterIcon,
+        event: this.hasWeappOrWeb.bind(this, this.format.bind(this, 'justifyCenter'))
+      },
+      {
+        icon: uploadRightIcon,
+        event: this.hasWeappOrWeb.bind(this, this.format.bind(this, 'justifyLeft'))
+      },
+      {
+        icon: uploadBoldIcon,
+        event: this.format.bind(this, 'bold')
+      },
+      {
+        icon: uploadItalicIcon,
+        event: this.format.bind(this, 'italic')
+      },
+      {
+        icon: uploadUnderlineIcon,
+        event: this.format.bind(this, 'underline')
+      },
+    ]
+    return <View className="rui-flex-sb rui-mb15">
+      {
+        editNavs.map((item, index) => <Image
+          src={item.icon}
+          key={item + index}
+          onClick={item.event.bind(this)}
+          className="rui-fa rui-icon35"></Image>)
+      }
+    </View>
+  }
+  // 加粗、居【左中右】等格式化
+  format(name, value) {
+    if (!name) return;
+    this.hasWeappOrWeb.call(this, () => {
+      document.execCommand(name, false, value)
+    })
+  }
+  // 将改变的值通过onInput传出组件
+  getChangeValue(value) {
+    let { onInput = () => { } } = this.props;
+    onInput.call(this, {
+      detail: {
+        html: value
+      }
+    });
+  }
+  // 获取富文本编辑器代码
+  getEditorHtml() {
+    let { placeholder } = this.props;
+    return <View className="rui-editor">
+      <div className="rui-div-editor"
+        id="editor"
+        suppressContentEditableWarning="true"
+        contentEditable="true"
+        dangerouslySetInnerHTML={{ __html: placeholder }}
+      />
+      {/* >{placeholder}</div> */}
+    </View>
   }
 }
 
-export default MyEditor
+export default RuiEditor;

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

@@ -0,0 +1,44 @@
+.rui-editor-com-content {
+  // width: 617px;
+  // height: 330px;
+  background: #F4F4F4;
+  border-radius: 10px;
+  margin: 0 auto;
+  box-sizing: border-box;
+  padding: 15px;
+
+  .rui-editor {
+    font-style: normal;
+    width: 100%;
+    // height: 240px;
+    min-height: 240px;
+    // overflow-y: auto;
+  }
+
+  .rui-div-editor {
+    font-family: '-apple-system,SF UI Text,Arial,PingFang SC,Hiragino Sans GB,Microsoft YaHei,WenQuanYi Micro Hei,sans-serif';
+    font-variant-ligatures: no-common-ligatures;
+    white-space: pre-wrap;
+    word-break: break-word !important;
+    caret-color: #000;
+    font-family: inherit;
+    font-size: 30px;
+    -webkit-font-smoothing: antialiased;
+    -moz-osx-font-smoothing: antialiased;
+    font-weight: 400;
+    outline: 0px solid transparent;
+    min-height: 240px;
+    padding: 10px 0;
+  }
+}
+
+.rui-mb15 {
+  border-bottom: 1px solid #d9d9d9;
+}
+
+.rui-fa {
+  width: 40px;
+  height: 40px;
+  margin: 0 30px;
+
+}

+ 7 - 10
src/components/imagePicker/index.js

@@ -83,11 +83,11 @@ export default class ImagePicker extends Component {
             },
             fail: (error) => {
               // 处理上传失败的情况
-              Taro.showToast({
-                title: '上传失败',
-                icon: 'none',
-                mask: true
-              })
+              // Taro.showToast({
+              //   title: '上传失败',
+              //   icon: 'none',
+              //   mask: true
+              // })
             },
           });
         });
@@ -135,11 +135,8 @@ export default class ImagePicker extends Component {
     const { imageUrls, token } = this.state;
     const urls = imageUrls.map((url) => `http://zhcq.jishutao.com/gw/user/logo/${id}?token=${token}&t=${time}`);
     Taro.previewImage({
-      urls,
       current: urls[index],
-      fail: (error) => {
-        // 处理预览失败的情况
-      },
+      urls,
     });
   }
 
@@ -154,7 +151,7 @@ export default class ImagePicker extends Component {
               className='upload-item-img'
               src={`http://zhcq.jishutao.com/gw/user/logo/${id}?token=${token}&t=${time}`}
               mode='aspectFit'
-              onClick={() => this.handlePreview(index)}
+              // onClick={() => this.handlePreview(index)}
             />
             <View className='upload-item-delete'
               onClick={this.handleDelete.bind(this, index)}

+ 28 - 2
src/pages/user/reportdetail.js

@@ -5,6 +5,7 @@ import { connect } from '@tarojs/redux'
 import * as actions from '@actions/report'
 import { getWindowHeight } from '@utils/style'
 import ImagePicker from '../../components/imagePicker'
+import RuiEditor from '../../components/editor'
 import './templatedetail.scss'
 
 @connect(state => state.home, { ...actions, })
@@ -47,6 +48,10 @@ class ReportDetail extends Component {
     this.getQuery()
   }
 
+  componentWillUnmount() {
+
+  }
+
   // 详情接口
   getData() {
     this.setState({ loading: true })
@@ -95,7 +100,7 @@ class ReportDetail extends Component {
       Taro.hideLoading()
       const chaplist = this.state.data.chapters
       chaplist.forEach(function (item, index) {
-        if (item.title == title) {
+        if (index == i) {
           item.content = res
         }
       })
@@ -308,6 +313,18 @@ class ReportDetail extends Component {
       chapters: data
     })
   }
+  // 修改章节内容
+  onChaoContent = (i, e) => {
+    const data = this.state.chapters
+    data.forEach(function (item, index) {
+      if (index == i) {
+        item.content = e.detail.html
+      }
+    })
+    this.setState({
+      chapters: data
+    })
+  }
   // 二级确认
   toggleVisible = () => {
     this.setState({
@@ -553,7 +570,16 @@ class ReportDetail extends Component {
                   }}
                 />
               </View>
-              <View className='home-item-editor' contenteditable="true">{item.content || "请填写内容..."}</View>
+              <View className='home-item-editor'>
+                <RuiEditor
+                  keys={index}
+                  placeholder={item.content || '文字内容...'}
+                  onInput={e => {
+                    this.onChaoContent(index, e)
+                  }}
+                />
+              </View>
+              {/* <View className='home-item-editor' contenteditable="true">{item.content || "请填写内容..."}</View> */}
               <View className='home-item-bottom'>
                 <Button
                   size='mini'

+ 2 - 2
src/pages/user/templatedetail.scss

@@ -81,8 +81,8 @@
     &-editor {
       min-height: 150px;
       font-size: 30px;
-      border: 1px solid #d9d9d9;
-      padding: 15px;
+      // border: 1px solid #d9d9d9;
+      // padding: 15px;
       margin-top: 15px;
 
     }

+ 21 - 19
src/pages/user/templatelist.js

@@ -1,6 +1,5 @@
 import Taro, { Component } from '@tarojs/taro'
 import { View, Text, Button } from '@tarojs/components'
-import { Popup, } from '@components'
 import './templatelist.scss'
 
 export default class TemplateList extends Component {
@@ -21,6 +20,14 @@ export default class TemplateList extends Component {
     })
   }
 
+  // 确认删除
+  delChap = () => {
+    this.props.deleteTemplate(this.state.selected)
+    this.setState({
+      visible: false
+    })
+  }
+
   render() {
     const { list = [] } = this.props
     const popupStyle = { transform: `translateY(${Taro.pxTransform(-100)})` }
@@ -65,25 +72,20 @@ export default class TemplateList extends Component {
               </View>
             )
         }
-        <Popup
-          visible={this.state.visible}
-          onClose={this.toggleVisible}
-        // compStyle={popupStyle}
-        >
-          <View className='spec'>
-            <View className='spec-title'>温馨提示</View>
-            <View className='spec-info'>确认删除吗?</View>
-            <View className='spec-bottom'>
-              <Button size='default' type='primary'
-                onClick={() => {
-                  this.props.deleteTemplate(this.state.selected)
-                  this.toggleVisible()
-                }}
-              >确认</Button>
-              <Button size='default' onClick={() => { this.toggleVisible() }}>取消</Button>
+
+        {/* 二级确认 */}
+        {this.state.visible &&
+          <View className='mask'>
+            <View className='count'>
+              <View className='title' style={{ margin: "60px 0" }}>确认删除吗?</View>
+              <View className='count_foot'>
+                <Button onClick={this.toggleVisible}>取消</Button>
+                <Button style={{ marginTop: 0 }}
+                  onClick={this.delChap}
+                >确认</Button>
+              </View>
             </View>
-          </View>
-        </Popup>
+          </View>}
       </View>
     )
   }

+ 64 - 0
src/pages/user/templatelist.scss

@@ -86,4 +86,68 @@
   }
 
   &-bottom {}
+}
+
+
+/* 遮罩层样式 */
+.mask {
+  position: fixed;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  background: rgba(0, 0, 0, 0.5);
+  z-index: 998;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+
+  .count {
+    width: 70%;
+    background: #fff;
+    border-radius: 15px;
+
+    .title {
+      font-size: 36px;
+      display: flex;
+      flex-direction: row;
+      align-items: center;
+      justify-content: center;
+      margin-top: 20px;
+
+    }
+
+    &_top {
+      padding: 30px;
+      margin: 40px 0;
+
+      &_input {
+        border-bottom: 1px solid #d9d9d9;
+        font-size: 32px;
+
+      }
+
+      &_date {
+        border-bottom: 1px solid #d9d9d9;
+        font-size: 32px;
+        margin-top: 30px;
+      }
+
+      &_dates {
+        border-bottom: 1px solid #d9d9d9;
+        font-size: 32px;
+        margin-top: 30px;
+        color: #757575;
+      }
+
+    }
+
+    &_foot {
+      display: flex;
+      flex-direction: row;
+
+    }
+
+  }
+
 }