153 lines
3.6 KiB
JavaScript
153 lines
3.6 KiB
JavaScript
import _extends from 'babel-runtime/helpers/extends';
|
|
import _objectWithoutProperties from 'babel-runtime/helpers/objectWithoutProperties';
|
|
// @inheritedComponent ButtonBase
|
|
|
|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classNames from 'classnames';
|
|
import withStyles from '../styles/withStyles';
|
|
import ButtonBase from '../ButtonBase';
|
|
|
|
export const styles = theme => ({
|
|
root: {
|
|
transition: theme.transitions.create(['color', 'padding-top'], {
|
|
duration: theme.transitions.duration.short
|
|
}),
|
|
paddingTop: theme.spacing.unit,
|
|
paddingBottom: 10,
|
|
paddingLeft: 12,
|
|
paddingRight: 12,
|
|
minWidth: 80,
|
|
maxWidth: 168,
|
|
color: theme.palette.text.secondary,
|
|
flex: '1'
|
|
},
|
|
selected: {
|
|
paddingTop: 6,
|
|
color: theme.palette.primary.main
|
|
},
|
|
selectedIconOnly: {
|
|
paddingTop: theme.spacing.unit * 2
|
|
},
|
|
wrapper: {
|
|
display: 'inline-flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
width: '100%',
|
|
flexDirection: 'column'
|
|
},
|
|
label: {
|
|
fontFamily: theme.typography.fontFamily,
|
|
fontSize: theme.typography.pxToRem(theme.typography.fontSize - 2),
|
|
opacity: 1,
|
|
transition: 'font-size 0.2s, opacity 0.2s',
|
|
transitionDelay: '0.1s'
|
|
},
|
|
selectedLabel: {
|
|
fontSize: theme.typography.pxToRem(theme.typography.fontSize)
|
|
},
|
|
hiddenLabel: {
|
|
opacity: 0,
|
|
transitionDelay: '0s'
|
|
}
|
|
});
|
|
|
|
class BottomNavigationAction extends React.Component {
|
|
constructor(...args) {
|
|
var _temp;
|
|
|
|
return _temp = super(...args), this.handleChange = event => {
|
|
const { onChange, value, onClick } = this.props;
|
|
|
|
if (onChange) {
|
|
onChange(event, value);
|
|
}
|
|
|
|
if (onClick) {
|
|
onClick(event);
|
|
}
|
|
}, _temp;
|
|
}
|
|
|
|
render() {
|
|
const _props = this.props,
|
|
{
|
|
classes,
|
|
className: classNameProp,
|
|
icon,
|
|
label,
|
|
onChange,
|
|
onClick,
|
|
selected,
|
|
showLabel: showLabelProp,
|
|
value
|
|
} = _props,
|
|
other = _objectWithoutProperties(_props, ['classes', 'className', 'icon', 'label', 'onChange', 'onClick', 'selected', 'showLabel', 'value']);
|
|
|
|
const className = classNames(classes.root, {
|
|
[classes.selected]: selected,
|
|
[classes.selectedIconOnly]: !showLabelProp && !selected
|
|
}, classNameProp);
|
|
|
|
const labelClassName = classNames(classes.label, {
|
|
[classes.selectedLabel]: selected,
|
|
[classes.hiddenLabel]: !showLabelProp && !selected
|
|
});
|
|
|
|
return React.createElement(
|
|
ButtonBase,
|
|
_extends({ className: className, focusRipple: true, onClick: this.handleChange }, other),
|
|
React.createElement(
|
|
'span',
|
|
{ className: classes.wrapper },
|
|
icon,
|
|
React.createElement(
|
|
'span',
|
|
{ className: labelClassName },
|
|
label
|
|
)
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
BottomNavigationAction.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
/**
|
|
* Useful to extend the style applied to components.
|
|
*/
|
|
classes: PropTypes.object.isRequired,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
className: PropTypes.string,
|
|
/**
|
|
* The icon element.
|
|
*/
|
|
icon: PropTypes.node,
|
|
/**
|
|
* The label element.
|
|
*/
|
|
label: PropTypes.node,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
onChange: PropTypes.func,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
onClick: PropTypes.func,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
selected: PropTypes.bool,
|
|
/**
|
|
* If `true`, the BottomNavigationAction will show its label.
|
|
*/
|
|
showLabel: PropTypes.bool,
|
|
/**
|
|
* You can provide your own value. Otherwise, we fallback to the child position index.
|
|
*/
|
|
value: PropTypes.any
|
|
} : {};
|
|
|
|
export default withStyles(styles, { name: 'MuiBottomNavigationAction' })(BottomNavigationAction); |