DropdownField.js
2.7 KB
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
import React,{PropTypes} from 'react';
import ReactDOM from 'react-dom';
import cx from 'classnames';
import s from './CustomForm.scss';
import DropdownPicker from '../DropdownPicker';
class DropdownField extends React.Component {
constructor(props) {
super(props);
this.changeDropdown=this.changeDropdown.bind(this);
}
static propTypes = {
displayName:PropTypes.string,
field:PropTypes.object,
validateState:PropTypes.string,
inlineFlag:PropTypes.bool,
placeholder:PropTypes.string,
options:PropTypes.array,
multiselect:PropTypes.bool,
labelKey:PropTypes.string,
valueKey:PropTypes.string,
onChange:PropTypes.func
}
static defaultProps={
inlineFlag:false,
multiselect:false,
labelKey:'label',
valueKey:'value',
options:[]
}
validationState(field){
if(field.error&&field.touched){
return 'error';
}else if(field.touched)
return '';
}
changeDropdown(value,object){
const {field,onChange}=this.props;
if(onChange){
onChange(value,object);
}else{
field.onChange(value,object);
}
}
render(){
const {displayName,options,inlineFlag,field,placeholder,multiselect,labelKey,valueKey}=this.props,self=this;
let validateState=this.props.validateState?this.props.validateState:this.validationState(field);
let styleLabel={};
if(!displayName||displayName.length<1){
styleLabel={display:'none'};
}
return(
<div className={cx(s.field_wrap,'form-group',{
'has-success':validateState=='success',
'has-warning':validateState=='warning',
'has-error':validateState=='error',
'row':inlineFlag
})}>
<label style={styleLabel} className={cx('control-label',{
'col-sm-3':inlineFlag
})}>{displayName}</label>
<div className={cx(s.input_wrap,{
'col-sm-9':inlineFlag
})} >
<DropdownPicker value={field.value} choices={options}
placeholder={placeholder} onChange={this.changeDropdown}
multi={multiselect}
labelKey={labelKey} valueKey={valueKey}
error={validateState=='error'} />
<span className={cx(s.input_help,'help-block')}><small>{field.touched?field.error:''}</small></span>
</div>
</div>
)
}
}
export default DropdownField;