import React, {Component} from 'react'
|
import PropTypes from 'prop-types'
|
import { is, fromJS } from 'immutable'
|
import { Modal } from 'antd'
|
import { FormOutlined } from '@ant-design/icons'
|
|
import asyncComponent from '@/utils/asyncComponent'
|
import './index.scss'
|
|
const Editor = asyncComponent(() => import('@/components/editor'))
|
|
class EditorContentComponent extends Component {
|
static propTpyes = {
|
config: PropTypes.any,
|
updateConfig: PropTypes.func
|
}
|
|
state = {
|
visible: false,
|
html: null
|
}
|
|
shouldComponentUpdate (nextProps, nextState) {
|
return !is(fromJS(this.props), fromJS(nextProps)) || !is(fromJS(this.state), fromJS(nextState))
|
}
|
|
trigger = () => {
|
const { config } = this.props
|
|
this.setState({
|
visible: true,
|
html: config.html || null
|
})
|
}
|
|
verifySubmit = () => {
|
const { config } = this.props
|
const { html } = this.state
|
|
this.setState({
|
visible: false
|
})
|
this.props.updateConfig({...config, html})
|
}
|
|
onChange = (val) => {
|
this.setState({
|
html: val
|
})
|
}
|
|
render () {
|
const { config } = this.props
|
const { visible, html } = this.state
|
|
if (!config) return null
|
|
return (
|
<div className="model-menu-edit-content-wrap">
|
{config.wrap.datatype === 'static' ? <FormOutlined title="内容编辑" onClick={() => this.trigger()} /> :
|
<FormOutlined title="内容编辑" style={{color: '#eeeeee', cursor: 'not-allowed'}}/>}
|
<Modal
|
wrapClassName="popview-modal model-menu-edit-content-form"
|
title="内容编辑"
|
visible={visible}
|
width={950}
|
maskClosable={false}
|
okText="提交"
|
onOk={this.verifySubmit}
|
onCancel={() => { this.setState({ visible: false }) }}
|
destroyOnClose
|
>
|
<Editor defaultValue={html} onChange={this.onChange} />
|
</Modal>
|
</div>
|
)
|
}
|
}
|
|
export default EditorContentComponent
|