king
2023-03-24 deab3ddf1990cd25b4692d1358ac9d50856644f0
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
import React, {Component} from 'react'
import PropTypes from 'prop-types'
import { Modal } from 'antd'
import { ClockCircleOutlined } from '@ant-design/icons'
 
import ClockForm from './settingform'
import './index.scss'
 
class ClockComponent extends Component {
  static propTpyes = {
    updateConfig: PropTypes.func
  }
 
  state = {
    visible: false
  }
 
  trigger = () => {
    this.setState({
      visible: true
    })
  }
 
  submit = () => {
    const { config } = this.props
 
    this.verifyRef.handleConfirm().then(res => {
      this.setState({
        visible: false
      })
      this.props.updateConfig({...config, timer: res.timer, timerRepeats: res.timerRepeats, clearField: res.clearField || '', clearValue: res.clearValue || ''})
    })
  }
 
  render () {
    const { config } = this.props
    const { visible, loading } = this.state
 
    return (
      <div className={'clock-component-wrap' + (config.timer ? ' tip-sign' : '')}>
        <ClockCircleOutlined title="定时器" onClick={this.trigger} />
        <Modal
          title="定时器设置"
          visible={visible}
          width={500}
          maskClosable={false}
          confirmLoading={loading}
          onOk={this.submit}
          onCancel={() => this.setState({ visible: false })}
          destroyOnClose
        >
          <ClockForm config={config} inputSubmit={this.submit} wrappedComponentRef={(inst) => this.verifyRef = inst}/>
        </Modal>
      </div>
    )
  }
}
 
export default ClockComponent