129 lines
No EOL
4.9 KiB
JavaScript
129 lines
No EOL
4.9 KiB
JavaScript
"use strict";
|
|
'use client';
|
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
var React = _interopRequireWildcard(require("react"));
|
|
var _reactIs = require("react-is");
|
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
var _clsx = _interopRequireDefault(require("clsx"));
|
|
var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
|
|
var _zeroStyled = require("../zero-styled");
|
|
var _memoTheme = _interopRequireDefault(require("../utils/memoTheme"));
|
|
var _DefaultPropsProvider = require("../DefaultPropsProvider");
|
|
var _bottomNavigationClasses = require("./bottomNavigationClasses");
|
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
const useUtilityClasses = ownerState => {
|
|
const {
|
|
classes
|
|
} = ownerState;
|
|
const slots = {
|
|
root: ['root']
|
|
};
|
|
return (0, _composeClasses.default)(slots, _bottomNavigationClasses.getBottomNavigationUtilityClass, classes);
|
|
};
|
|
const BottomNavigationRoot = (0, _zeroStyled.styled)('div', {
|
|
name: 'MuiBottomNavigation',
|
|
slot: 'Root'
|
|
})((0, _memoTheme.default)(({
|
|
theme
|
|
}) => ({
|
|
display: 'flex',
|
|
justifyContent: 'center',
|
|
height: 56,
|
|
backgroundColor: (theme.vars || theme).palette.background.paper
|
|
})));
|
|
const BottomNavigation = /*#__PURE__*/React.forwardRef(function BottomNavigation(inProps, ref) {
|
|
const props = (0, _DefaultPropsProvider.useDefaultProps)({
|
|
props: inProps,
|
|
name: 'MuiBottomNavigation'
|
|
});
|
|
const {
|
|
children,
|
|
className,
|
|
component = 'div',
|
|
onChange,
|
|
showLabels = false,
|
|
value,
|
|
...other
|
|
} = props;
|
|
const ownerState = {
|
|
...props,
|
|
component,
|
|
showLabels
|
|
};
|
|
const classes = useUtilityClasses(ownerState);
|
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(BottomNavigationRoot, {
|
|
as: component,
|
|
className: (0, _clsx.default)(classes.root, className),
|
|
ref: ref,
|
|
ownerState: ownerState,
|
|
...other,
|
|
children: React.Children.map(children, (child, childIndex) => {
|
|
if (! /*#__PURE__*/React.isValidElement(child)) {
|
|
return null;
|
|
}
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
if ((0, _reactIs.isFragment)(child)) {
|
|
console.error(["MUI: The BottomNavigation component doesn't accept a Fragment as a child.", 'Consider providing an array instead.'].join('\n'));
|
|
}
|
|
}
|
|
const childValue = child.props.value === undefined ? childIndex : child.props.value;
|
|
return /*#__PURE__*/React.cloneElement(child, {
|
|
selected: childValue === value,
|
|
showLabel: child.props.showLabel !== undefined ? child.props.showLabel : showLabels,
|
|
value: childValue,
|
|
onChange
|
|
});
|
|
})
|
|
});
|
|
});
|
|
process.env.NODE_ENV !== "production" ? BottomNavigation.propTypes /* remove-proptypes */ = {
|
|
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
// └─────────────────────────────────────────────────────────────────────┘
|
|
/**
|
|
* The content of the component.
|
|
*/
|
|
children: _propTypes.default.node,
|
|
/**
|
|
* Override or extend the styles applied to the component.
|
|
*/
|
|
classes: _propTypes.default.object,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
className: _propTypes.default.string,
|
|
/**
|
|
* The component used for the root node.
|
|
* Either a string to use a HTML element or a component.
|
|
*/
|
|
component: _propTypes.default.elementType,
|
|
/**
|
|
* Callback fired when the value changes.
|
|
*
|
|
* @param {React.SyntheticEvent} event The event source of the callback. **Warning**: This is a generic event not a change event.
|
|
* @param {any} value We default to the index of the child.
|
|
*/
|
|
onChange: _propTypes.default.func,
|
|
/**
|
|
* If `true`, all `BottomNavigationAction`s will show their labels.
|
|
* By default, only the selected `BottomNavigationAction` will show its label.
|
|
* @default false
|
|
*/
|
|
showLabels: _propTypes.default.bool,
|
|
/**
|
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
*/
|
|
sx: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object, _propTypes.default.bool])), _propTypes.default.func, _propTypes.default.object]),
|
|
/**
|
|
* The value of the currently selected `BottomNavigationAction`.
|
|
*/
|
|
value: _propTypes.default.any
|
|
} : void 0;
|
|
var _default = exports.default = BottomNavigation; |