2018-03-26 00:46:45 +05:30
|
|
|
// @flow
|
2017-08-23 00:19:50 +05:30
|
|
|
import React from 'react';
|
2018-03-26 00:46:45 +05:30
|
|
|
import TextareaAutosize from 'react-textarea-autosize';
|
2016-05-22 22:55:38 +05:30
|
|
|
|
|
|
|
import classNames from 'classnames';
|
|
|
|
|
2016-07-29 22:44:52 +05:30
|
|
|
import { uniqueId, omit } from 'functions';
|
2018-03-26 00:46:45 +05:30
|
|
|
import { SKIN_DARK, COLOR_GREEN } from 'components/ui';
|
2016-05-22 22:55:38 +05:30
|
|
|
|
|
|
|
import styles from './form.scss';
|
|
|
|
import FormInputComponent from './FormInputComponent';
|
|
|
|
|
2018-03-26 00:46:45 +05:30
|
|
|
import type { Skin, Color } from 'components/ui';
|
|
|
|
import type { MessageDescriptor } from 'react-intl';
|
2016-05-22 22:55:38 +05:30
|
|
|
|
2018-03-26 00:46:45 +05:30
|
|
|
type TextareaAutosizeProps = {
|
|
|
|
onHeightChange?: (number, TextareaAutosizeProps) => void,
|
|
|
|
useCacheForDOMMeasurements?: bool,
|
|
|
|
minRows?: number,
|
|
|
|
maxRows?: number,
|
|
|
|
inputRef?: (HTMLTextAreaElement) => void,
|
|
|
|
} | HTMLTextAreaElement;
|
|
|
|
|
|
|
|
export default class TextArea extends FormInputComponent<{
|
|
|
|
placeholder?: string | MessageDescriptor,
|
|
|
|
label?: string | MessageDescriptor,
|
|
|
|
error?: string,
|
|
|
|
skin: Skin,
|
|
|
|
color: Color,
|
|
|
|
} | TextareaAutosizeProps> {
|
|
|
|
static displayName = 'TextArea';
|
2016-05-30 10:10:59 +05:30
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
color: COLOR_GREEN,
|
2018-03-26 00:46:45 +05:30
|
|
|
skin: SKIN_DARK,
|
2016-05-22 22:55:38 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
2016-05-30 10:10:59 +05:30
|
|
|
const { color, skin } = this.props;
|
|
|
|
let { label } = this.props;
|
2016-05-22 22:55:38 +05:30
|
|
|
|
2016-07-29 22:44:52 +05:30
|
|
|
const props = omit({
|
2016-05-22 22:55:38 +05:30
|
|
|
type: 'text',
|
2018-03-26 00:46:45 +05:30
|
|
|
...this.props,
|
|
|
|
}, ['label', 'error', 'skin', 'color']);
|
2016-05-22 22:55:38 +05:30
|
|
|
|
|
|
|
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}>
|
2018-03-26 00:46:45 +05:30
|
|
|
<TextareaAutosize inputRef={this.setEl}
|
2016-05-22 22:55:38 +05:30
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|