mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-21 05:19:42 +08:00
66 lines
1.3 KiB
JavaScript
66 lines
1.3 KiB
JavaScript
import React, { Component } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { connect } from 'react-redux'
|
|
import wangEditor from 'wangeditor'
|
|
import { Tabs } from 'antd'
|
|
import { getResParams } from '../../../actions/addInterface.js'
|
|
|
|
const editor = new wangEditor('#res-cover')
|
|
|
|
@connect(
|
|
state => {
|
|
return {
|
|
resParams: state.addInterface.resParams
|
|
}
|
|
},
|
|
{
|
|
getResParams
|
|
}
|
|
)
|
|
|
|
class ResParams extends Component {
|
|
static propTypes = {
|
|
resParams: PropTypes.string,
|
|
getResParams: PropTypes.func
|
|
}
|
|
|
|
constructor(props) {
|
|
super(props)
|
|
}
|
|
|
|
initResParams () {
|
|
const { resParams } = this.props
|
|
if (resParams) {
|
|
editor.txt.html(resParams)
|
|
}
|
|
}
|
|
|
|
componentDidMount () {
|
|
const reg = /(<p>)|(<\/p>)| |(<br>)|\s+|<div>|<\/div>/g
|
|
editor.customConfig.menus = []
|
|
editor.customConfig.onchange = html => {
|
|
html = html.replace(reg, '')
|
|
this.props.getResParams(html)
|
|
}
|
|
setTimeout(() => {
|
|
this.initResParams()
|
|
}, 400)
|
|
editor.create()
|
|
}
|
|
|
|
render () {
|
|
const TabPane = Tabs.TabPane
|
|
return (
|
|
<section className="res-params-box">
|
|
<Tabs defaultActiveKey="1">
|
|
<TabPane tab="返回参数" key="1">
|
|
<div id="res-cover"></div>
|
|
</TabPane>
|
|
</Tabs>
|
|
</section>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default ResParams
|