1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-30 21:52:08 +02:00
onion/js/components/ascribe_forms/input_textarea_toggable.js

79 lines
2.1 KiB
JavaScript
Raw Normal View History

2015-06-09 13:29:22 +02:00
'use strict';
import React from 'react';
import TextareaAutosize from 'react-textarea-autosize';
2015-09-10 11:35:39 +02:00
2015-06-09 13:29:22 +02:00
let InputTextAreaToggable = React.createClass({
propTypes: {
autoFocus: React.PropTypes.bool,
disabled: React.PropTypes.bool,
rows: React.PropTypes.number.isRequired,
required: React.PropTypes.bool,
defaultValue: React.PropTypes.string,
placeholder: React.PropTypes.string,
onBlur: React.PropTypes.func,
onChange: React.PropTypes.func
},
2015-06-09 13:29:22 +02:00
getInitialState() {
return {
2015-09-18 14:50:08 +02:00
value: null
2015-06-09 13:29:22 +02:00
};
},
2015-09-10 11:35:39 +02:00
2015-09-23 14:12:33 +02:00
componentDidMount() {
if (this.props.autoFocus) {
this.refs.textarea.focus();
}
2015-09-23 14:12:33 +02:00
this.setState({
value: this.props.defaultValue
});
},
2015-09-22 17:13:06 +02:00
componentDidUpdate() {
// If the initial value of state.value is null, we want to set props.defaultValue
// as a value. In all other cases TextareaAutosize.onChange is updating.handleChange already
if(this.state.value === null && this.props.defaultValue) {
this.setState({
value: this.props.defaultValue
2015-09-18 14:50:08 +02:00
});
}
},
2015-06-09 13:29:22 +02:00
handleChange(event) {
2015-06-22 23:32:41 +02:00
this.setState({value: event.target.value});
this.props.onChange(event);
2015-06-09 13:29:22 +02:00
},
2015-09-10 11:35:39 +02:00
2015-06-09 13:29:22 +02:00
render() {
let className = 'form-control ascribe-textarea';
let textarea = null;
2015-09-10 11:35:39 +02:00
if(!this.props.disabled) {
2015-06-09 13:29:22 +02:00
className = className + ' ascribe-textarea-editable';
textarea = (
<TextareaAutosize
ref='textarea'
2015-06-09 13:29:22 +02:00
className={className}
value={this.state.value}
rows={this.props.rows}
2015-07-14 11:42:09 +02:00
maxRows={10}
2015-06-09 13:29:22 +02:00
required={this.props.required}
onChange={this.handleChange}
2015-06-22 23:32:41 +02:00
onBlur={this.props.onBlur}
placeholder={this.props.placeholder} />
2015-06-09 13:29:22 +02:00
);
2015-09-10 11:35:39 +02:00
} else {
2015-06-09 13:29:22 +02:00
textarea = <pre className="ascribe-pre">{this.state.value}</pre>;
}
2015-09-10 11:35:39 +02:00
2015-06-22 23:32:41 +02:00
return textarea;
2015-06-09 13:29:22 +02:00
}
});
2015-06-22 23:32:41 +02:00
export default InputTextAreaToggable;