accounts-frontend/src/components/ui/form/TextArea.jsx

82 lines
2.1 KiB
React
Raw Normal View History

2016-05-22 22:55:38 +05:30
import React, { PropTypes } from 'react';
import classNames from 'classnames';
import { uniqueId } from 'functions';
import styles from './form.scss';
import FormInputComponent from './FormInputComponent';
export default class TextArea extends FormInputComponent {
static displayName = 'TextArea';
static propTypes = {
placeholder: PropTypes.oneOfType([
PropTypes.shape({
id: PropTypes.string
}),
PropTypes.string
]),
label: PropTypes.oneOfType([
PropTypes.shape({
id: PropTypes.string
}),
PropTypes.string
]),
error: PropTypes.string,
skin: PropTypes.oneOf(['dark', 'light']),
color: PropTypes.oneOf(['green', 'blue', 'red', 'lightViolet', 'darkBlue', 'violet'])
};
render() {
let { color = 'green', skin = 'dark', label } = this.props;
const props = {
type: 'text',
...this.props
};
if (label) {
if (!props.id) {
props.id = uniqueId('textarea');
}
label = this.formatMessage(label);
label = (
<label className={styles.textFieldLabel} htmlFor={props.id}>
{label}
</label>
);
}
props.placeholder = this.formatMessage(props.placeholder);
return (
<div className={styles.formRow}>
{label}
<div className={styles.textAreaContainer}>
<textarea ref={this.setEl}
className={classNames(
styles.textArea,
styles[`${skin}TextField`],
styles[`${color}TextField`]
)}
{...props}
/>
</div>
{this.renderError()}
</div>
);
}
getValue() {
return this.el.value;
}
focus() {
this.el.focus();
setTimeout(this.el.focus.bind(this.el), 10);
}
}