@material-ui/core
Version:
React components that implement Google's Material Design.
188 lines (168 loc) • 5.32 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/objectWithoutPropertiesLoose";
// @inheritedComponent Input
import React from 'react';
import PropTypes from 'prop-types';
import { componentPropType } from '@material-ui/utils';
import NativeSelectInput from './NativeSelectInput';
import withStyles from '../styles/withStyles';
import formControlState from '../FormControl/formControlState';
import withFormControlContext from '../FormControl/withFormControlContext';
import ArrowDropDownIcon from '../internal/svg-icons/ArrowDropDown';
import Input from '../Input';
export const styles = theme => ({
/* Styles applied to the `Input` component `root` class. */
root: {
position: 'relative',
width: '100%'
},
/* Styles applied to the `Input` component `select` class. */
select: {
'-moz-appearance': 'none',
// Reset
'-webkit-appearance': 'none',
// Reset
// When interacting quickly, the text can end up selected.
// Native select can't be selected either.
userSelect: 'none',
paddingRight: 32,
borderRadius: 0,
// Reset
height: '1.1875em',
// Reset (19px), match the native input line-height
width: 'calc(100% - 32px)',
minWidth: 16,
// So it doesn't collapse.
cursor: 'pointer',
'&:focus': {
// Show that it's not an text input
background: theme.palette.type === 'light' ? 'rgba(0, 0, 0, 0.05)' : 'rgba(255, 255, 255, 0.05)',
borderRadius: 0 // Reset Chrome style
},
// Remove IE 11 arrow
'&::-ms-expand': {
display: 'none'
},
'&$disabled': {
cursor: 'default'
},
'&[multiple]': {
height: 'auto'
}
},
/* Styles applied to the `Input` component if `variant="filled"`. */
filled: {
width: 'calc(100% - 44px)'
},
/* Styles applied to the `Input` component if `variant="outlined"`. */
outlined: {
width: 'calc(100% - 46px)',
borderRadius: theme.shape.borderRadius
},
/* Styles applied to the `Input` component `selectMenu` class. */
selectMenu: {
width: 'auto',
// Fix Safari textOverflow
height: 'auto',
// Reset
textOverflow: 'ellipsis',
whiteSpace: 'nowrap',
overflow: 'hidden',
minHeight: '1.1875em' // Reset (19px), match the native input line-height
},
/* Styles applied to the `Input` component `disabled` class. */
disabled: {},
/* Styles applied to the `Input` component `icon` class. */
icon: {
// We use a position absolute over a flexbox in order to forward the pointer events
// to the input.
position: 'absolute',
right: 0,
top: 'calc(50% - 12px)',
// Center vertically
color: theme.palette.action.active,
'pointer-events': 'none' // Don't block pointer events on the select under the icon.
}
});
/**
* An alternative to `<Select native />` with a much smaller bundle size footprint.
*/
function NativeSelect(props) {
const {
children,
classes,
IconComponent,
input,
inputProps,
muiFormControl
} = props,
other = _objectWithoutPropertiesLoose(props, ["children", "classes", "IconComponent", "input", "inputProps", "muiFormControl", "variant"]);
const fcs = formControlState({
props,
muiFormControl,
states: ['variant']
});
return React.cloneElement(input, _extends({
// Most of the logic is implemented in `NativeSelectInput`.
// The `Select` component is a simple API wrapper to expose something better to play with.
inputComponent: NativeSelectInput,
inputProps: _extends({
children,
classes,
IconComponent,
variant: fcs.variant,
type: undefined
}, inputProps, input ? input.props.inputProps : {})
}, other));
}
process.env.NODE_ENV !== "production" ? NativeSelect.propTypes = {
/**
* The option elements to populate the select with.
* Can be some `<option>` elements.
*/
children: PropTypes.node,
/**
* Override or extend the styles applied to the component.
* See [CSS API](#css-api) below for more details.
*/
classes: PropTypes.object.isRequired,
/**
* The icon that displays the arrow.
*/
IconComponent: componentPropType,
/**
* An `Input` element; does not have to be a material-ui specific `Input`.
*/
input: PropTypes.element,
/**
* Attributes applied to the `select` element.
*/
inputProps: PropTypes.object,
/**
* @ignore
*/
muiFormControl: PropTypes.object,
/**
* 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`.
*/
onChange: PropTypes.func,
/**
* The input value.
*/
value: PropTypes.oneOfType([PropTypes.string, PropTypes.number, PropTypes.bool, PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.string, PropTypes.number, PropTypes.bool]))]),
/**
* The variant to use.
*/
variant: PropTypes.oneOf(['standard', 'outlined', 'filled'])
} : void 0;
NativeSelect.defaultProps = {
IconComponent: ArrowDropDownIcon,
input: React.createElement(Input, null)
};
NativeSelect.muiName = 'Select';
export default withStyles(styles, {
name: 'MuiNativeSelect'
})(withFormControlContext(NativeSelect));