king
2021-12-21 2eaada6f6f71abfc90ccaeb6e3c471e42ae427da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import React, {Component} from 'react'
import PropTypes from 'prop-types'
import { is, fromJS } from 'immutable'
import { Modal } from 'antd'
import { MoreOutlined } from '@ant-design/icons'
 
 
import MenusForm from './menus'
import './index.scss'
 
class NodesWrap extends Component {
  static propTpyes = {
    card: PropTypes.object,
    updateMenus: PropTypes.func
  }
 
  state = {
    visible: false,
    nodes: [],
  }
 
  shouldComponentUpdate (nextProps, nextState) {
    return !is(fromJS(this.state), fromJS(nextState))
  }
 
  trigger = () => {
    const { card } = this.props
 
    this.setState({
      visible: true,
      nodes: card.nodes || []
    })
  }
 
  submit = () => {
    this.setState({
      visible: false
    })
    this.props.updateMenus(this.state.nodes)
  }
 
  update = (nodes) => {
    this.setState({nodes})
  }
 
  render() {
    const { visible, nodes, appType } = this.state
 
    return (
      <>
        <MoreOutlined style={{color: '#1890ff'}} title="节点组" onClick={this.trigger}/>
        <Modal
          title="节点组"
          wrapClassName="nodes-field-modal"
          visible={visible}
          width={900}
          maskClosable={false}
          onOk={this.submit}
          onCancel={() => { this.setState({ visible: false })}}
          destroyOnClose
        >
          <MenusForm menus={nodes} appType={appType} update={this.update}/>
        </Modal>
      </>
    )
  }
}
 
export default NodesWrap