美文网首页
reactjs集成富文本编辑器simditor

reactjs集成富文本编辑器simditor

作者: sleepforests | 来源:发表于2017-06-01 11:01 被阅读7415次

    最近在一个项目中需要完成一个富文本编辑的功能,项目的主要依赖情况如下:

    "dependencies": {
        "antd": "^2.8.2",
        "classnames": "^2.2.5",
        "jquery": "^3.2.1",
        "lodash": "^4.13.1",
        "moment": "^2.14.1",
        "query-string": "^3.0.1",
        "rc-form": "^0.17.2",
        "react": "^15.1.0",
        "react-addons-transition-group": "^15.1.0",
        "react-cookie": "^1.0.5",
        "react-dom": "^15.1.0",
        "react-redux": "^4.4.5",
        "react-router": "^2.4.1",
        "react-router-redux": "^4.0.5",
        "react-router-scroll": "^0.2.0",
        "redux": "^3.5.2",
        "redux-actions": "^0.10.0",
        "redux-immutablejs": "^0.0.8",
        "redux-promise": "^0.5.3",
        "redux-thunk": "^2.1.0",
        "reselect": "^2.5.1",
        "simditor": "^2.3.6",
        "simditor-html": "^1.1.1",
        "whatwg-fetch": "^1.0.0"
      },
    

    下面介绍下集成simditor的过程:

    1、在html页面加入了js引用

    <script src="https://cdnjs.cloudflare.com/ajax/libs/js-beautify/1.6.14/beautify-html.min.js"></script>
    

    2、js代码引入

    import Simditor from 'simditor';
    import $ from 'jquery';
    import '../../../../node_modules/simditor/styles/simditor.css';
    import '../../../../node_modules/simditor-html/styles/simditor-html.css';
    require( '../../../../node_modules/simditor-html/lib/simditor-html.js');
    

    3、初始化代码

    componentDidMount() {  
            let id = 'content_' + this.props.type;
            var textbox = ReactDOM.findDOMNode(this.refs[id]);
            this.editor = new Simditor({
                textarea: $(textbox),
                toolbar: [
                    'title',
                    'bold',
                    'italic',
                    'underline',
                    'strikethrough',
                    'fontScale',
                    'color',
                    'ol',
                    'ul',
                    'blockquote',
                    'code',
                    'table',
                    'link',
                    'image',
                    'indent',
                    'outdent',
                    'alignment',
                    'hr',
                    '|', 
                    'html'
                ],
                upload: {
                    url: URLS.image_upload_url, //文件上传的接口地址
                    params: null, //键值对,指定文件上传接口的额外参数,上传的时候随文件一起提交
                    fileKey: 'file', //服务器端获取文件数据的参数名
                    connectionCount: 3,
                    leaveConfirm: '正在上传文件'
                },
            });
            this.editor.on("valuechanged", (e, src) => {
               // todo 
            });
        }
    

    4、render方法 ,其中handleSubmit是保存的ajax处理

    render() {
            let title = this.props.title; 
            let id = 'content_' + this.props.type;
            let val = this.props.val; 
            return (
                <div>
                    <div style={{marignTop: 10, marginBottom: 10}}>
                        <Button onClick={this.handleSubmit} htmlType="button" type="danger">保存『{title}』内容</Button>
                    </div>
                    <textarea className="form-control" ref={id} rows="30">{val}</textarea>
                </div>
            );
        }
    

    5、效果如图

    QQ20170601-105809@2x.png

    6、webpack调整

     externals: {
            'html_beautify':'html_beautify',
            'antd':true,
            "react": "React",
            "react-dom": "ReactDOM"
        },
    

    这个增加了 『html_beautify』这个到externals里面,不然编译不过。具体的一些细节可以查看下externals的用法,这里把react,react-dom都提取出来通过单独的js文件加载减少js文件包大小。

    相关文章

      网友评论

          本文标题:reactjs集成富文本编辑器simditor

          本文链接:https://www.haomeiwen.com/subject/lwisfxtx.html