ant design pro 富文本编辑器

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_25252769/article/details/83960025

问题:本来找到这个react-lz-editor插件(先安装这个),以为万事大吉,谁知道被Upload坑了很久,凌晨三点才写完,心累啊

BUG:Upload的onChange方法response中没有上传成功的返回值,百度了很久,依然无法解决,试了N种方法,全都不行(耽误了我很久以至于凌晨三点才写完),最后只能采用onSuccess,在该函数种有返回值。

完整代码:

import React, { PureComponent, Fragment } from 'react';
import LzEditor from 'react-lz-editor'
import moment from 'moment';
import { connect } from 'dva';
import { Card, Table, Tabs, Form, message, Row, Input, Select, Button ,InputNumber ,Modal ,Pagination ,Icon ,Upload ,Popconfirm ,DatePicker} from 'antd';

import PageHeaderLayout from '../../layouts/PageHeaderLayout';

import styles from './NewArticle.less';
import stylesUtil from '../../utils/utils.less';

import { emptyVal, defaultPageSize } from '../../utils/utils';

const FormItem = Form.Item;
const TabsPane = Tabs.TabPane;
const { Option } = Select;

const formItemLayout = {
  labelCol: {
    xs: { span: 24 },
    sm: { span: 3 },
  },
  wrapperCol: {
    xs: { span: 24 },
    sm: { span: 21 },
  },
};

@connect(({ newArticle, loading ,}) => ({
  newArticle,
  loading: loading.models.newArticle,
  submitting: loading.effects['form/submitAdvancedForm'],
}))
@Form.create()
export default class WriteArticle extends PureComponent {
  state = {
    htmlContent: '<h3>请输入</h3>',
    content:'',
    fileList: [],
    preBannerVisible: false,
    previewImage: '',
    fileList1: [],
    upImgUrl:'',

    category:0,
    unit:''
  };

  componentDidMount() {

  }

  receiveHtml=(content)=> {
    console.log("recieved HTML content", content);
    this.setState({
      fileList:[],
      content:content
    });
  }
  uploadSuccess=(res)=>{ //文本 富文本上传图片成功的回调函数
    console.log(res)
    let url = 'https://xxx.com.cn/'
    let arr = this.state.fileList
    let obj={
      uid: res.url,
      name: 'image.png',
      status: 'done',
      url: url+res.url,
    }
    arr.push(obj)
    this.setState({ fileList: [...arr] });  //注意-------------同样的代码,有的不要加...解构,有的需要,很懵逼。
  }
  handleChange=(res)=>{
    console.log(res)
  }
  beforeUpload=()=>{}
  onValidateForm = () => { //转化为分钟
    const { validateFields } = this.props.form;
    const { unit ,content} = this.state
    validateFields((err, values) => {
      values.banner = this.state.upImgUrl
      if(unit == 2){
        values.minute = values.minute*60
      }
      if(unit == 3){
        values.minute = values.minute*60*24
      }
      values.content = content
      console.log(values)
      if (!err) {
        this.props.dispatch({
          type: 'newArticle/newOne',
          payload: values,
        }).then(()=>{
          this.props.form.setFields({title:""})
        })
      }
    });
  }

  handleSuccess = (e) => { //banner图的成功回调函数 返回的不是全路径,我需要自己拼接
    let arr = [{
      uid: '-1',
      name: 'banner.png',
      status: 'done',
      url: 'https://xxx.com.cn/'+e.url,
    }]
    this.setState({
      fileList1:arr,
      upImgUrl:'https://xxx.com.cn/'+e.url
    })
    if(e.code ==201){
      message.success(e.msg)
    }else if(e.code ==404){
      message.error(e.msg)
    }
  }
  remove = (res) => { //没用到
    console.log(res)
    // this.props.dispatch({
    //   type: 'sponsorMeeting/delImg',
    //   payload: {
    //     id: res.uid,
    //     meetingId: this.state.meetingId,
    //     uploadType:this.state.uploadType
    //   },
    // }).then(()=>{
    //   message.success('删除成功')
    // })
  }
  handlePreview = (file) => { //预览方法
    this.setState({
      previewImage: file.url || file.thumbUrl,
      preBannerVisible: true,
    });
  }
  handleImgCancel = () => this.setState({ preBannerVisible: false }) //关闭banner预览

  selectCategory=(category)=>{ //选择类型
    console.log(category)
    this.setState({
      category:category
    })
  }
  
  selectUnit=(n)=>{ //选择单位
    console.log(n)
    this.setState({
      unit:n
    })
  }
  showCategory(){//根据选择类型 显示表单
    const { getFieldDecorator} = this.props.form;
    const selectAfter = (
      <Select defaultValue="1" style={{ width: 80 }} onChange={this.selectUnit}>
        <Option value="1">分钟</Option>
        <Option value="2">小时</Option>
        <Option value="3">天</Option>
      </Select>
    );
    
    if(this.state.category == 1){
      return ;
    }else if(this.state.category == 2){
      return (
        <Form.Item label='公共推文推送日期' {...formItemLayout}>
        {getFieldDecorator('date', {
          rules: [{ required: true, message: '请输入' }],
          initialValue:'' ,
        })(
          <DatePicker
            format="YYYY-MM-DD"
            disabledDate={this.disabledDate}
          />
        )}
      </Form.Item>
      )
    }else if(this.state.category == 3){
      return (
        <Form.Item label='个性化推文推送时间' {...formItemLayout}>
        {getFieldDecorator('minute', {
          rules: [{ required: true, message: '请输入' },{
          pattern: /^[1-9]\d*$/, message: '请输入正整数!'}
        ],
          initialValue:'',
        })(
          <Input addonBefore='入组后' addonAfter={selectAfter} />
        )}
      </Form.Item>
      )
    }
  }
  disabledDate(current) { //禁用时间
    return current < moment().endOf('day').subtract(1, "days");
  }


  render() {
    const { newArticle: { data ,lookimg }, loading, form } = this.props;
   
    const { validateFields ,getFieldDecorator} = form;
    const { preBannerVisible, previewImage, fileList1 ,fileList} = this.state;
    console.log(data,fileList)
    const upload = {
      name: 'file',
      action: "https://xxx.com.cn/MeetingPhoto",//上传接口,成功后返回该图片服务器地址
      listType: 'picture',
      headers: {
        authorization: 'authorization-text',
      },
      fileList: [...this.state.fileList],
      onSuccess:this.uploadSuccess,
      onChange: this.handleChange,
      supportServerRender:true,
      multiple: false,
      beforeUpload: this.beforeUpload,
      showUploadList: true
    }
    
      const uploadButton = (
        <div>
          <Icon type="plus" />
          <div className="ant-upload-text">上传</div>
        </div>
      );
      
    return (
      <PageHeaderLayout>
        <Card bordered={false}> 
          <Form onSubmit={this.onValidateForm}>
            <Form.Item label='Banner图' {...formItemLayout}>
            {getFieldDecorator('banner', {
              rules: [{ required: true, message: '请输入' }],
              initialValue:'' ,
            })(
              <Upload 
                name='file'
                accept='image/*'
                action="https://xxx.cn/MeetingPhoto"
                fileList={fileList1}
                onSuccess={this.handleSuccess}
                onPreview={this.handlePreview}
                onRemove={this.remove}
                listType="picture-card">
                  {fileList1.length > 0 ? null : uploadButton} //限制上传个数
              </Upload>           
            )}
          </Form.Item>
          <Form.Item label='文章标题' {...formItemLayout}>
            {getFieldDecorator('title', {
              rules: [{ required: true, message: '请输入' }],
              initialValue:'' ,
            })(
              <Input></Input>
            )}
          </Form.Item>
          <Form.Item label='文章类型' {...formItemLayout}>
            {getFieldDecorator('categoryId', {
              rules: [{ required: true, message: '请输入' }],
              initialValue:'' ,
            })(
              <Select onChange={this.selectCategory}>
                <Option value="1">医生推文</Option>
                <Option value="2">公共推文</Option>
                <Option value="3">个性化推文</Option>
              </Select>
            )}
          </Form.Item>
          {this.showCategory()}
          <Form.Item label='作者' {...formItemLayout}>
            {getFieldDecorator('author', {
              rules: [{ required: true, message: '请输入' }],
              initialValue:'' ,
            })(
              <Input></Input>
            )}
          </Form.Item>
          <Form.Item label='内容' {...formItemLayout}>
            {getFieldDecorator('content', {
              rules: [{ required: true, message: '请输入' }],
              initialValue:this.state.content,
            })(
              <LzEditor 
              active={true} 
              importContent={this.state.htmlContent}
              cbReceiver={this.receiveHtml} 
              uploadProps={upload}
              video={false}
              audio={false}
              lang="ch"/>
            )}
          </Form.Item> 
          <FormItem>
            <Button type="primary" htmlType="submit" style={{float:'right'}}>确认发布</Button>
          </FormItem>  
        </Form>
        {//下面是预览的弹窗}
        <Modal visible={preBannerVisible} footer={null} onCancel={this.handleImgCancel}>
          <img alt="example" style={{ width: '100%' }} src={previewImage} />
        </Modal>
      </Card>
      </PageHeaderLayout>
    );
  }
}

不是我偷懒不解释,全部代码都在这了,慢慢看吧,有一个上传接口(返回图片途径),然后就按照这个修修改改就可以了

追加:录文章时,上传图片,有时会出现上传完成后,弹出两次确认图片弹窗,然后页面卡死,操作不了,此问题暂未解决。

游戏篇:最近沉迷修仙(自由幻想),王者荣耀都没玩了,不能再修仙了,眼睛很疼。

猜你喜欢

转载自blog.csdn.net/qq_25252769/article/details/83960025