@6thquake/react-material
Version:
React components that implement Google's Material Design.
202 lines (171 loc) • 6.53 kB
JavaScript
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
var _react = _interopRequireDefault(require("react"));
var _propTypes = _interopRequireDefault(require("prop-types"));
var _SelectInput = _interopRequireDefault(require("./SelectInput"));
var _styles = require("../styles");
var _ArrowDropDown = _interopRequireDefault(require("@material-ui/icons/ArrowDropDown"));
var _Input = _interopRequireDefault(require("../Input"));
// @inheritedComponent Input
/**
* @ignore - internal component.
*/
function AsyncSelectRoot(props) {
var autoWidth = props.autoWidth,
children = props.children,
classes = props.classes,
displayEmpty = props.displayEmpty,
IconComponent = props.IconComponent,
input = props.input,
inputProps = props.inputProps,
MenuProps = props.MenuProps,
multiple = props.multiple,
onClose = props.onClose,
onOpen = props.onOpen,
open = props.open,
comparison = props.comparison,
readOnly = props.readOnly,
renderValue = props.renderValue,
SelectDisplayProps = props.SelectDisplayProps,
other = (0, _objectWithoutProperties2.default)(props, ["autoWidth", "children", "classes", "displayEmpty", "IconComponent", "input", "inputProps", "MenuProps", "multiple", "onClose", "onOpen", "open", "comparison", "readOnly", "renderValue", "SelectDisplayProps"]);
var inputComponent = _SelectInput.default;
return _react.default.cloneElement(input, (0, _extends2.default)({
// Most of the logic is implemented in `SelectInput`.
// The `Select` component is a simple API wrapper to expose something better to play with.
inputComponent: inputComponent,
inputProps: (0, _extends2.default)({
children: children,
IconComponent: IconComponent,
type: undefined
}, {
autoWidth: autoWidth,
displayEmpty: displayEmpty,
MenuProps: MenuProps,
multiple: multiple,
onClose: onClose,
onOpen: onOpen,
open: open,
comparison: comparison,
readOnly: readOnly,
renderValue: renderValue,
SelectDisplayProps: SelectDisplayProps
}, inputProps, {
classes: inputProps ? (0, _styles.mergeClasses)({
baseClasses: classes,
newClasses: inputProps.classes,
Component: AsyncSelectRoot
}) : classes
}, input ? input.props.inputProps : {})
}, other));
}
AsyncSelectRoot.propTypes = {
/**
* If true, the width of the popover will automatically be set according to the items inside the
* menu, otherwise it will be at least the width of the select input.
*/
autoWidth: _propTypes.default.bool,
/**
* The option elements to populate the select with.
* Can be some `MenuItem` when `native` is false and `option` when `native` is true.
*/
children: _propTypes.default.node,
/**
* Override or extend the styles applied to the component.
* See [CSS API](#css-api) below for more details.
*/
classes: _propTypes.default.object.isRequired,
/**
* If `true`, the selected item is displayed even if its value is empty.
* You can only use it when the `native` property is `false` (default).
*/
displayEmpty: _propTypes.default.bool,
/**
* The icon that displays the arrow.
*/
IconComponent: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.func, _propTypes.default.object]),
/**
* An `Input` element; does not have to be a material-ui specific `Input`.
*/
input: _propTypes.default.element,
/**
* Attributes applied to the `input` element.
* When `native` is `true`, the attributes are applied on the `select` element.
*/
inputProps: _propTypes.default.object,
/**
* Properties applied to the `Menu` element.
*/
MenuProps: _propTypes.default.object,
/**
* If true, `value` must be an array and the menu will support multiple selections.
* You can only use it when the `native` property is `false` (default).
*/
multiple: _propTypes.default.bool,
/**
* If `true`, the component will be using a native `select` element.
*/
native: _propTypes.default.bool,
/**
* Callback function fired when a menu item is selected.
*
* @param {object} event The event source of the callback.
* You can pull out the new value by accessing `event.target.value`.
* @param {object} [child] The react element that was selected when `native` is `false` (default).
*/
onChange: _propTypes.default.func,
/**
* Callback fired when the component requests to be closed.
* Use in controlled mode (see open).
*
* @param {object} event The event source of the callback
*/
onClose: _propTypes.default.func,
/**
* Callback fired when the component requests to be opened.
* Use in controlled mode (see open).
*
* @param {object} event The event source of the callback
*/
onOpen: _propTypes.default.func,
/**
* Control `select` open state.
* You can only use it when the `native` property is `false` (default).
*/
open: _propTypes.default.bool,
/**
* Render the selected value.
* You can only use it when the `native` property is `false` (default).
*
* @param {*} value The `value` provided to the component.
* @returns {ReactElement}
*/
renderValue: _propTypes.default.func,
/**
* Properties applied to the clickable div element.
*/
SelectDisplayProps: _propTypes.default.object,
/**
* The input value.
* This property is required when the `native` property is `false` (default).
*/
value: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.number, _propTypes.default.object, _propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.object, _propTypes.default.number]))])
};
AsyncSelectRoot.defaultProps = {
autoWidth: false,
displayEmpty: false,
IconComponent: _ArrowDropDown.default,
input: _react.default.createElement(_Input.default, null),
multiple: false,
native: false
};
AsyncSelectRoot.muiName = 'AsyncSelectRoot';
var _default = (0, _styles.withStyles)({
name: 'MuiAsyncSelectRoot'
})(AsyncSelectRoot);
exports.default = _default;