2015-06-05 11:06:36 +02:00
|
|
|
'use strict';
|
|
|
|
|
2015-05-29 01:54:56 +02:00
|
|
|
import React from 'react';
|
|
|
|
|
2015-06-05 11:06:36 +02:00
|
|
|
import AlertMixin from '../../mixins/alert_mixin';
|
2015-05-29 01:54:56 +02:00
|
|
|
|
|
|
|
let InputTextArea = React.createClass({
|
2015-06-09 16:10:38 +02:00
|
|
|
propTypes: {
|
|
|
|
submitted: React.PropTypes.bool,
|
|
|
|
required: React.PropTypes.string,
|
|
|
|
defaultValue: React.PropTypes.string
|
|
|
|
},
|
2015-05-29 01:54:56 +02:00
|
|
|
|
2015-06-05 11:06:36 +02:00
|
|
|
mixins: [AlertMixin],
|
2015-05-29 01:54:56 +02:00
|
|
|
|
|
|
|
getInitialState() {
|
2015-06-05 11:06:36 +02:00
|
|
|
return {
|
|
|
|
value: this.props.defaultValue,
|
|
|
|
alerts: null // needed in AlertMixin
|
2015-05-29 01:54:56 +02:00
|
|
|
};
|
|
|
|
},
|
|
|
|
handleChange(event) {
|
|
|
|
this.setState({value: event.target.value});
|
|
|
|
},
|
|
|
|
render() {
|
2015-06-05 11:06:36 +02:00
|
|
|
let className = 'form-control input-text-ascribe textarea-ascribe-message';
|
2015-05-29 01:54:56 +02:00
|
|
|
|
|
|
|
let alerts = (this.props.submitted) ? null : this.state.alerts;
|
|
|
|
return (
|
|
|
|
<div className="form-group">
|
|
|
|
{alerts}
|
|
|
|
<textarea className={className}
|
|
|
|
defaultValue={this.props.defaultValue}
|
|
|
|
required={this.props.required}
|
|
|
|
onChange={this.handleChange}></textarea>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default InputTextArea;
|