UNPKG

@mui/material

Version:

Quickly build beautiful React apps. MUI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.

168 lines (156 loc) 6.01 kB
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 { unstable_composeClasses as composeClasses } from '@mui/base'; 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); }; 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.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.zIndex.appBar, top: 0, left: 'auto', right: 0 }, ownerState.position === 'sticky' && { // ⚠️ sticky is not supported by IE11. position: 'sticky', zIndex: theme.zIndex.appBar, top: 0, left: 'auto', right: 0 }, ownerState.position === 'static' && { position: 'static' }, ownerState.position === 'relative' && { position: 'relative' }, 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' })); }); 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 "yarn 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 those theme colors that make sense for this component. * @default 'primary' */ color: PropTypes /* @typescript-to-proptypes-ignore */ .oneOfType([PropTypes.oneOf(['default', 'inherit', 'primary', 'secondary', 'transparent']), 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;