UNPKG

semantic-ui-react

Version:
284 lines (207 loc) 10.1 kB
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var _slicedToArray2 = require('babel-runtime/helpers/slicedToArray'); var _slicedToArray3 = _interopRequireDefault(_slicedToArray2); var _extends2 = require('babel-runtime/helpers/extends'); var _extends3 = _interopRequireDefault(_extends2); 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 _includes2 = require('lodash/includes'); var _includes3 = _interopRequireDefault(_includes2); var _map2 = require('lodash/map'); var _map3 = _interopRequireDefault(_map2); var _isNil2 = require('lodash/isNil'); var _isNil3 = _interopRequireDefault(_isNil2); var _get2 = require('lodash/get'); var _get3 = _interopRequireDefault(_get2); var _react = require('react'); var _react2 = _interopRequireDefault(_react); var _classnames = require('classnames'); var _classnames2 = _interopRequireDefault(_classnames); var _lib = require('../../lib'); var _Button = require('../../elements/Button'); var _Button2 = _interopRequireDefault(_Button); var _Icon = require('../../elements/Icon'); var _Icon2 = _interopRequireDefault(_Icon); var _Label = require('../../elements/Label'); var _Label2 = _interopRequireDefault(_Label); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * An Input is a field used to elicit a response from a user. * @see Button * @see Form * @see Icon * @see Label */ var Input = function (_Component) { (0, _inherits3.default)(Input, _Component); function Input() { var _ref; var _temp, _this, _ret; (0, _classCallCheck3.default)(this, Input); 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 = Input.__proto__ || Object.getPrototypeOf(Input)).call.apply(_ref, [this].concat(args))), _this), _this.handleChange = function (e) { var onChange = _this.props.onChange; var value = (0, _get3.default)(e, 'target.value'); onChange(e, (0, _extends3.default)({}, _this.props, { value: value })); }, _this.focus = function () { _this.inputRef.focus(); }, _this.handleInputRef = function (c) { return _this.inputRef = c; }, _temp), (0, _possibleConstructorReturn3.default)(_this, _ret); } (0, _createClass3.default)(Input, [{ key: 'render', value: function render() { var _props = this.props, action = _props.action, actionPosition = _props.actionPosition, children = _props.children, className = _props.className, disabled = _props.disabled, error = _props.error, fluid = _props.fluid, focus = _props.focus, icon = _props.icon, iconPosition = _props.iconPosition, input = _props.input, inverted = _props.inverted, label = _props.label, labelPosition = _props.labelPosition, loading = _props.loading, onChange = _props.onChange, size = _props.size, tabIndex = _props.tabIndex, transparent = _props.transparent, type = _props.type; var classes = (0, _classnames2.default)('ui', size, (0, _lib.useKeyOnly)(disabled, 'disabled'), (0, _lib.useKeyOnly)(error, 'error'), (0, _lib.useKeyOnly)(fluid, 'fluid'), (0, _lib.useKeyOnly)(focus, 'focus'), (0, _lib.useKeyOnly)(inverted, 'inverted'), (0, _lib.useKeyOnly)(loading, 'loading'), (0, _lib.useKeyOnly)(transparent, 'transparent'), (0, _lib.useValueAndKey)(actionPosition, 'action') || (0, _lib.useKeyOnly)(action, 'action'), (0, _lib.useValueAndKey)(iconPosition, 'icon') || (0, _lib.useKeyOnly)(icon, 'icon'), (0, _lib.useValueAndKey)(labelPosition, 'labeled') || (0, _lib.useKeyOnly)(label, 'labeled'), 'input', className); var unhandled = (0, _lib.getUnhandledProps)(Input, this.props); var ElementType = (0, _lib.getElementType)(Input, this.props); // Heads up! We should pass `type` prop manually because `Input` component handles it var _partitionHTMLInputPr = (0, _lib.partitionHTMLInputProps)((0, _extends3.default)({}, unhandled, { type: type })), _partitionHTMLInputPr2 = (0, _slicedToArray3.default)(_partitionHTMLInputPr, 2), htmlInputProps = _partitionHTMLInputPr2[0], rest = _partitionHTMLInputPr2[1]; if (onChange) htmlInputProps.onChange = this.handleChange; htmlInputProps.ref = this.handleInputRef; // tabIndex if (!(0, _isNil3.default)(tabIndex)) htmlInputProps.tabIndex = tabIndex;else if (disabled) htmlInputProps.tabIndex = -1; // Render with children // ---------------------------------------- if (!(0, _isNil3.default)(children)) { // add htmlInputProps to the `<input />` child var childElements = (0, _map3.default)(_react.Children.toArray(children), function (child) { if (child.type !== 'input') return child; return (0, _react.cloneElement)(child, (0, _extends3.default)({}, htmlInputProps, child.props)); }); return _react2.default.createElement( ElementType, (0, _extends3.default)({}, rest, { className: classes }), childElements ); } // Render Shorthand // ---------------------------------------- var actionElement = _Button2.default.create(action, function (elProps) { return { className: (0, _classnames2.default)( // all action components should have the button className !(0, _includes3.default)(elProps.className, 'button') && 'button') }; }); var iconElement = _Icon2.default.create(icon); var labelElement = _Label2.default.create(label, function (elProps) { return { className: (0, _classnames2.default)( // all label components should have the label className !(0, _includes3.default)(elProps.className, 'label') && 'label', // add 'left|right corner' (0, _includes3.default)(labelPosition, 'corner') && labelPosition) }; }); return _react2.default.createElement( ElementType, (0, _extends3.default)({}, rest, { className: classes }), actionPosition === 'left' && actionElement, iconPosition === 'left' && iconElement, labelPosition !== 'right' && labelElement, (0, _lib.createHTMLInput)(input || type, htmlInputProps), actionPosition !== 'left' && actionElement, iconPosition !== 'left' && iconElement, labelPosition === 'right' && labelElement ); } }]); return Input; }(_react.Component); Input.defaultProps = { type: 'text' }; Input._meta = { name: 'Input', type: _lib.META.TYPES.ELEMENT }; process.env.NODE_ENV !== "production" ? Input.propTypes = { /** An element type to render as (string or function). */ as: _lib.customPropTypes.as, /** An Input can be formatted to alert the user to an action they may perform. */ action: _react.PropTypes.oneOfType([_react.PropTypes.bool, _lib.customPropTypes.itemShorthand]), /** An action can appear along side an Input on the left or right. */ actionPosition: _react.PropTypes.oneOf(['left']), /** Primary content. */ children: _react.PropTypes.node, /** Additional classes. */ className: _react.PropTypes.string, /** An Input field can show that it is disabled. */ disabled: _react.PropTypes.bool, /** An Input field can show the data contains errors. */ error: _react.PropTypes.bool, /** Take on the size of it's container. */ fluid: _react.PropTypes.bool, /** An Input field can show a user is currently interacting with it. */ focus: _react.PropTypes.bool, /** Optional Icon to display inside the Input. */ icon: _react.PropTypes.oneOfType([_react.PropTypes.bool, _lib.customPropTypes.itemShorthand]), /** An Icon can appear inside an Input on the left or right. */ iconPosition: _react.PropTypes.oneOf(['left']), /** Shorthand for creating the HTML Input. */ input: _lib.customPropTypes.itemShorthand, /** Format to appear on dark backgrounds. */ inverted: _react.PropTypes.bool, /** Optional Label to display along side the Input. */ label: _lib.customPropTypes.itemShorthand, /** A Label can appear outside an Input on the left or right. */ labelPosition: _react.PropTypes.oneOf(['left', 'right', 'left corner', 'right corner']), /** An Icon Input field can show that it is currently loading data. */ loading: _react.PropTypes.bool, /** * Called on change. * * @param {SyntheticEvent} event - React's original SyntheticEvent. * @param {object} data - All props and proposed value. */ onChange: _react.PropTypes.func, /** An Input can vary in size. */ size: _react.PropTypes.oneOf(_lib.SUI.SIZES), /** An Input can receive focus. */ tabIndex: _react.PropTypes.oneOfType([_react.PropTypes.number, _react.PropTypes.string]), /** Transparent Input has no background. */ transparent: _react.PropTypes.bool, /** The HTML input type. */ type: _react.PropTypes.string } : void 0; Input.handledProps = ['action', 'actionPosition', 'as', 'children', 'className', 'disabled', 'error', 'fluid', 'focus', 'icon', 'iconPosition', 'input', 'inverted', 'label', 'labelPosition', 'loading', 'onChange', 'size', 'tabIndex', 'transparent', 'type']; Input.create = (0, _lib.createShorthandFactory)(Input, function (type) { return { type: type }; }); exports.default = Input;