mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
35 lines
963 B
JavaScript
35 lines
963 B
JavaScript
import React from 'react';
|
|
|
|
import AlertMixin from '../../mixins/alert_mixin'
|
|
|
|
let InputText = React.createClass({
|
|
|
|
mixins : [AlertMixin],
|
|
|
|
getInitialState() {
|
|
return {value: null,
|
|
alerts: null // needed in AlertMixin
|
|
};
|
|
},
|
|
handleChange(event) {
|
|
this.setState({value: event.target.value});
|
|
},
|
|
render() {
|
|
let className = "form-control input-text-ascribe";
|
|
let alerts = (this.props.submitted) ? null : this.state.alerts;
|
|
return (
|
|
<div className="form-group">
|
|
{alerts}
|
|
<input className={className}
|
|
placeholder={this.props.placeHolder}
|
|
required={this.props.required}
|
|
type={this.props.type}
|
|
onChange={this.handleChange}
|
|
onBlur={this.props.onBlur}/>
|
|
</div>
|
|
);
|
|
|
|
}
|
|
});
|
|
|
|
export default InputText; |