-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRadioButtonComponent.jsx
94 lines (81 loc) · 3.13 KB
/
RadioButtonComponent.jsx
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import React from 'react';
import { Input, Radio, Button, Icon, Switch, Checkbox, Row, Col } from 'antd';
export default class RadioButtonComponent extends React.Component {
constructor(props) {
super(props);
this.state = {
value:"0",
options:{0:"",1:""}
}
}
addRadio=(e)=>{
let value = Object.keys(this.state.options)[Object.keys(this.state.options).length - 1]
this.setState({ options: { ...this.state.options, [Number(value) + 1]: "" } },()=>{
this.props.setData('options',this.state.options)
})
}
changeRadio=(e,key)=>{
this.setState({ value:Object.values(this.state.options)[0],options: { ...this.state.options, [key]: e.target.value } },()=>{
this.props.setData('options',this.state.options)
// this.props.setData('value',this.state.value)
})
}
onChange = e => {
this.setState({
value: e.target.value
},()=>{
this.props.setData('value',e.target.value)
});
}
editChange = e => {
this.setState({
value: e.target.value
},()=>{
this.props.setData('value',e.target.value)
});
}
componentDidMount() {
if (!Object.keys(this.props.data).length)
this.props.setAllData(this.state);
}
componentDidUpdate() {
if (!Object.keys(this.props.data).length)
this.props.setAllData(this.state);
}
render() {
return ( <>
<div>
{ this.props.data.options? this.props.viewMode?<>
<Radio.Group onChange={this.onChange} style={{marginLeft:10}} defaultValue={this.props.data.value} >
{Object.keys(this.props.data.options).map((item, key) => { if(item!=="") return <Radio value={this.props.data.options[item]} key={key} > <Input
style={{width:200,border:"none"}}
contentEditable
readOnly={this.props.viewMode}
value={this.props.data.options[item]}
/> </Radio> })}
</Radio.Group>
</>:<>
<Radio.Group onChange={this.editChange} defaultvalue={this.props.data.value}>
{
Object.keys(this.props.data.options).map((item,key)=>{
return <Radio key={key} value={this.props.data.options[item]}>
<Input
className="theInputRadio"
style={{width:200,border:"none"}}
placeholder={`Value ${key}`}
contentEditable
readOnly={this.props.viewMode}
defaultValue={this.props.data.options[item]}
onChange={(e)=>this.changeRadio(e,item)}
/>
</Radio>
})
}
</Radio.Group>
<Icon type="arrow-down" style={{fontSize:23,position:"relative",right:10}} onClick={(e)=>this.addRadio(e)} />
</>:null
}
</div>
</>);
}
}