TextField.js
1.6 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
import React,{PropTypes} from 'react';
import ReactDOM from 'react-dom';
import cx from 'classnames';
import s from '../FormRender.scss';
class TextField extends React.Component {
constructor(props) {
super(props);
}
static propTypes = {
formField:PropTypes.object,
field:PropTypes.object,
validateState:PropTypes.string,
inlineFlag:PropTypes.bool
}
static defaultProps={
inlineFlag:false,
validateState:''
}
render(){
const {formField,validateState,inlineFlag,field={},type}=this.props,self=this;
const options=JSON.parse(formField.options);
return(
<div className={cx(s.field_wrap,'form-group',{
'has-success':validateState=='success',
'has-warning':validateState=='warning',
'has-error':validateState=='error',
'row':inlineFlag
})}>
<label className={cx('control-label',{
'col-sm-3':inlineFlag
})}>{formField.display_name}</label>
<div className={cx(s.input_wrap,{
'col-sm-9':inlineFlag
})} >
<input type="text" name={formField.name} className={cx('form-control')} placeholder={options.tooltip}
onChange={field&&field.onChange} disabled={'readOnly'==type} value={field.value} />
<span className={cx(s.input_help,'help-block')}><small>{field.touched?field.error:''}</small></span>
</div>
</div>
)
}
}
export default TextField;