'use client'; import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties"; import _extends from "@babel/runtime/helpers/esm/extends"; import * as React from 'react'; import PropTypes from 'prop-types'; import clsx from 'clsx'; import composeClasses from '@mui/utils/composeClasses'; import styled from '../styles/styled'; import useThemeProps from '../styles/useThemeProps'; import capitalize from '../utils/capitalize'; import Paper from '../Paper'; import { getAppBarUtilityClass } from './appBarClasses'; import { jsx as _jsx } from "react/jsx-runtime"; var useUtilityClasses = function useUtilityClasses(ownerState) { var color = ownerState.color, position = ownerState.position, classes = ownerState.classes; var slots = { root: ['root', "color".concat(capitalize(color)), "position".concat(capitalize(position))] }; return composeClasses(slots, getAppBarUtilityClass, classes); }; // var2 is the fallback. // Ex. var1: 'var(--a)', var2: 'var(--b)'; return: 'var(--a, var(--b))' var joinVars = function joinVars(var1, var2) { return var1 ? "".concat(var1 == null ? void 0 : var1.replace(')', ''), ", ").concat(var2, ")") : var2; }; var AppBarRoot = styled(Paper, { name: 'MuiAppBar', slot: 'Root', overridesResolver: function overridesResolver(props, styles) { var ownerState = props.ownerState; return [styles.root, styles["position".concat(capitalize(ownerState.position))], styles["color".concat(capitalize(ownerState.color))]]; } })(function (_ref) { var theme = _ref.theme, ownerState = _ref.ownerState; var backgroundColorDefault = theme.palette.mode === 'light' ? theme.palette.grey[100] : theme.palette.grey[900]; return _extends({ display: 'flex', flexDirection: 'column', width: '100%', boxSizing: 'border-box', // Prevent padding issue with the Modal and fixed positioned AppBar. flexShrink: 0 }, ownerState.position === 'fixed' && { position: 'fixed', zIndex: (theme.vars || theme).zIndex.appBar, top: 0, left: 'auto', right: 0, '@media print': { // Prevent the app bar to be visible on each printed page. position: 'absolute' } }, ownerState.position === 'absolute' && { position: 'absolute', zIndex: (theme.vars || theme).zIndex.appBar, top: 0, left: 'auto', right: 0 }, ownerState.position === 'sticky' && { // ⚠️ sticky is not supported by IE11. position: 'sticky', zIndex: (theme.vars || theme).zIndex.appBar, top: 0, left: 'auto', right: 0 }, ownerState.position === 'static' && { position: 'static' }, ownerState.position === 'relative' && { position: 'relative' }, !theme.vars && _extends({}, ownerState.color === 'default' && { backgroundColor: backgroundColorDefault, color: theme.palette.getContrastText(backgroundColorDefault) }, ownerState.color && ownerState.color !== 'default' && ownerState.color !== 'inherit' && ownerState.color !== 'transparent' && { backgroundColor: theme.palette[ownerState.color].main, color: theme.palette[ownerState.color].contrastText }, ownerState.color === 'inherit' && { color: 'inherit' }, theme.palette.mode === 'dark' && !ownerState.enableColorOnDark && { backgroundColor: null, color: null }, ownerState.color === 'transparent' && _extends({ backgroundColor: 'transparent', color: 'inherit' }, theme.palette.mode === 'dark' && { backgroundImage: 'none' })), theme.vars && _extends({}, ownerState.color === 'default' && { '--AppBar-background': ownerState.enableColorOnDark ? theme.vars.palette.AppBar.defaultBg : joinVars(theme.vars.palette.AppBar.darkBg, theme.vars.palette.AppBar.defaultBg), '--AppBar-color': ownerState.enableColorOnDark ? theme.vars.palette.text.primary : joinVars(theme.vars.palette.AppBar.darkColor, theme.vars.palette.text.primary) }, ownerState.color && !ownerState.color.match(/^(default|inherit|transparent)$/) && { '--AppBar-background': ownerState.enableColorOnDark ? theme.vars.palette[ownerState.color].main : joinVars(theme.vars.palette.AppBar.darkBg, theme.vars.palette[ownerState.color].main), '--AppBar-color': ownerState.enableColorOnDark ? theme.vars.palette[ownerState.color].contrastText : joinVars(theme.vars.palette.AppBar.darkColor, theme.vars.palette[ownerState.color].contrastText) }, { backgroundColor: 'var(--AppBar-background)', color: ownerState.color === 'inherit' ? 'inherit' : 'var(--AppBar-color)' }, ownerState.color === 'transparent' && { backgroundImage: 'none', backgroundColor: 'transparent', color: 'inherit' })); }); var AppBar = /*#__PURE__*/React.forwardRef(function AppBar(inProps, ref) { var props = useThemeProps({ props: inProps, name: 'MuiAppBar' }); var className = props.className, _props$color = props.color, color = _props$color === void 0 ? 'primary' : _props$color, _props$enableColorOnD = props.enableColorOnDark, enableColorOnDark = _props$enableColorOnD === void 0 ? false : _props$enableColorOnD, _props$position = props.position, position = _props$position === void 0 ? 'fixed' : _props$position, other = _objectWithoutProperties(props, ["className", "color", "enableColorOnDark", "position"]); var ownerState = _extends({}, props, { color: color, position: position, enableColorOnDark: enableColorOnDark }); var classes = useUtilityClasses(ownerState); return /*#__PURE__*/_jsx(AppBarRoot, _extends({ square: true, component: "header", ownerState: ownerState, elevation: 4, className: clsx(classes.root, className, position === 'fixed' && 'mui-fixed'), ref: ref }, other)); }); process.env.NODE_ENV !== "production" ? AppBar.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.node, /** * Override or extend the styles applied to the component. */ classes: PropTypes.object, /** * @ignore */ className: PropTypes.string, /** * The color of the component. * It supports both default and custom theme colors, which can be added as shown in the * [palette customization guide](https://mui.com/material-ui/customization/palette/#custom-colors). * @default 'primary' */ color: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['default', 'inherit', 'primary', 'secondary', 'transparent', 'error', 'info', 'success', 'warning']), PropTypes.string]), /** * If true, the `color` prop is applied in dark mode. * @default false */ enableColorOnDark: PropTypes.bool, /** * The positioning type. The behavior of the different options is described * [in the MDN web docs](https://developer.mozilla.org/en-US/docs/Learn/CSS/CSS_layout/Positioning). * Note: `sticky` is not universally supported and will fall back to `static` when unavailable. * @default 'fixed' */ position: PropTypes.oneOf(['absolute', 'fixed', 'relative', 'static', 'sticky']), /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]) } : void 0; export default AppBar;