'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.styles = undefined; var _extends2 = require('babel-runtime/helpers/extends'); var _extends3 = _interopRequireDefault(_extends2); var _objectWithoutProperties2 = require('babel-runtime/helpers/objectWithoutProperties'); var _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2); var _getPrototypeOf = require('babel-runtime/core-js/object/get-prototype-of'); var _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf); var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck'); var _classCallCheck3 = _interopRequireDefault(_classCallCheck2); var _createClass2 = require('babel-runtime/helpers/createClass'); var _createClass3 = _interopRequireDefault(_createClass2); var _possibleConstructorReturn2 = require('babel-runtime/helpers/possibleConstructorReturn'); var _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2); var _inherits2 = require('babel-runtime/helpers/inherits'); var _inherits3 = _interopRequireDefault(_inherits2); var _react = require('react'); var _react2 = _interopRequireDefault(_react); var _classnames = require('classnames'); var _classnames2 = _interopRequireDefault(_classnames); var _debounce = require('lodash/debounce'); var _debounce2 = _interopRequireDefault(_debounce); var _reactEventListener = require('react-event-listener'); var _reactEventListener2 = _interopRequireDefault(_reactEventListener); var _withStyles = require('../styles/withStyles'); var _withStyles2 = _interopRequireDefault(_withStyles); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } var rowsHeight = 24; var styles = exports.styles = { root: { position: 'relative', // because the shadow has position: 'absolute', width: '100%' }, textarea: { width: '100%', height: '100%', resize: 'none', font: 'inherit', padding: 0, cursor: 'inherit', boxSizing: 'border-box', lineHeight: 'inherit', border: 'none', outline: 'none', background: 'transparent' }, shadow: { resize: 'none', // Overflow also needed to here to remove the extra row // added to textareas in Firefox. overflow: 'hidden', // Visibility needed to hide the extra text area on ipads visibility: 'hidden', position: 'absolute', height: 'auto', whiteSpace: 'pre-wrap' } }; var babelPluginFlowReactPropTypes_proptype_Props = { /** * Useful to extend the style applied to components. */ classes: require('prop-types').object, /** * @ignore */ className: require('prop-types').string, /** * @ignore */ defaultValue: require('prop-types').oneOfType([require('prop-types').string, require('prop-types').number]), /** * @ignore */ disabled: require('prop-types').bool, /** * @ignore */ onChange: require('prop-types').func, /** * Number of rows to display when multiline option is set to true. */ rows: require('prop-types').oneOfType([require('prop-types').string, require('prop-types').number]), /** * Maximum number of rows to display when multiline option is set to true. */ rowsMax: require('prop-types').oneOfType([require('prop-types').string, require('prop-types').number]), /** * Use that property to pass a ref callback to the native textarea element. */ textareaRef: require('prop-types').func, /** * @ignore */ value: require('prop-types').oneOfType([require('prop-types').string, require('prop-types').number]) }; /** * @ignore - internal component. */ var Textarea = function (_React$Component) { (0, _inherits3.default)(Textarea, _React$Component); function Textarea() { var _ref; var _temp, _this, _ret; (0, _classCallCheck3.default)(this, Textarea); for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } return _ret = (_temp = (_this = (0, _possibleConstructorReturn3.default)(this, (_ref = Textarea.__proto__ || (0, _getPrototypeOf2.default)(Textarea)).call.apply(_ref, [this].concat(args))), _this), _this.state = { height: null }, _this.handleResize = (0, _debounce2.default)(function (event) { _this.syncHeightWithShadow(event); }, 166), _this.handleRefInput = function (node) { _this.input = node; if (_this.props.textareaRef) { _this.props.textareaRef(node); } }, _this.handleRefSinglelineShadow = function (node) { _this.singlelineShadow = node; }, _this.handleRefShadow = function (node) { _this.shadow = node; }, _this.handleChange = function (event) { _this.value = event.target.value; if (typeof _this.props.value === 'undefined' && _this.shadow) { // The component is not controlled, we need to update the shallow value. _this.shadow.value = _this.value; _this.syncHeightWithShadow(event); } if (_this.props.onChange) { _this.props.onChange(event); } }, _temp), (0, _possibleConstructorReturn3.default)(_this, _ret); } (0, _createClass3.default)(Textarea, [{ key: 'componentWillMount', value: function componentWillMount() { // expects the components it renders to respond to 'value' // so that it can check whether they are dirty this.value = this.props.value || this.props.defaultValue || ''; this.setState({ height: Number(this.props.rows) * rowsHeight }); } }, { key: 'componentDidMount', value: function componentDidMount() { this.syncHeightWithShadow(null); } }, { key: 'componentWillReceiveProps', value: function componentWillReceiveProps(nextProps) { if (nextProps.value !== this.props.value || Number(nextProps.rowsMax) !== Number(this.props.rowsMax)) { this.syncHeightWithShadow(null, nextProps); } } }, { key: 'componentWillUnmount', value: function componentWillUnmount() { this.handleResize.cancel(); } }, { key: 'syncHeightWithShadow', value: function syncHeightWithShadow(event) { var props = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this.props; if (this.shadow && this.singlelineShadow) { // The component is controlled, we need to update the shallow value. if (typeof this.props.value !== 'undefined') { this.shadow.value = props.value == null ? '' : String(props.value); } var lineHeight = this.singlelineShadow.scrollHeight; var newHeight = this.shadow.scrollHeight; // Guarding for jsdom, where scrollHeight isn't present. // See https://github.com/tmpvar/jsdom/issues/1013 if (newHeight === undefined) { return; } if (Number(props.rowsMax) >= Number(props.rows)) { newHeight = Math.min(Number(props.rowsMax) * lineHeight, newHeight); } newHeight = Math.max(newHeight, lineHeight); if (this.state.height !== newHeight) { this.setState({ height: newHeight }); } } } }, { key: 'render', value: function render() { var _props = this.props, classes = _props.classes, className = _props.className, defaultValue = _props.defaultValue, onChange = _props.onChange, rows = _props.rows, rowsMax = _props.rowsMax, textareaRef = _props.textareaRef, value = _props.value, other = (0, _objectWithoutProperties3.default)(_props, ['classes', 'className', 'defaultValue', 'onChange', 'rows', 'rowsMax', 'textareaRef', 'value']); return _react2.default.createElement( 'div', { className: classes.root, style: { height: this.state.height } }, _react2.default.createElement(_reactEventListener2.default, { target: 'window', onResize: this.handleResize }), _react2.default.createElement('textarea', { ref: this.handleRefSinglelineShadow, className: (0, _classnames2.default)(classes.shadow, classes.textarea), tabIndex: -1, rows: '1', readOnly: true, 'aria-hidden': 'true', value: '' }), _react2.default.createElement('textarea', { ref: this.handleRefShadow, className: (0, _classnames2.default)(classes.shadow, classes.textarea), tabIndex: -1, rows: rows, 'aria-hidden': 'true', readOnly: true, defaultValue: defaultValue, value: value }), _react2.default.createElement('textarea', (0, _extends3.default)({ rows: rows, className: (0, _classnames2.default)(classes.textarea, className), defaultValue: defaultValue, value: value, onChange: this.handleChange }, other, { ref: this.handleRefInput })) ); } }]); return Textarea; }(_react2.default.Component); Textarea.defaultProps = { rows: 1 }; exports.default = (0, _withStyles2.default)(styles, { name: 'MuiTextarea' })(Textarea);