108 lines
2.5 KiB
Plaintext
108 lines
2.5 KiB
Plaintext
// @flow
|
|
// @inheritedComponent Paper
|
|
|
|
import React from 'react';
|
|
import type { Node } from 'react';
|
|
import classNames from 'classnames';
|
|
import withStyles from '../styles/withStyles';
|
|
import { capitalizeFirstLetter } from '../utils/helpers';
|
|
import Paper from '../Paper';
|
|
|
|
export const styles = (theme: Object) => ({
|
|
root: {
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
width: '100%',
|
|
boxSizing: 'border-box', // Prevent padding issue with the Modal and fixed positioned AppBar.
|
|
zIndex: theme.zIndex.appBar,
|
|
flexShrink: 0,
|
|
},
|
|
positionFixed: {
|
|
position: 'fixed',
|
|
top: 0,
|
|
left: 'auto',
|
|
right: 0,
|
|
},
|
|
positionAbsolute: {
|
|
position: 'absolute',
|
|
top: 0,
|
|
left: 'auto',
|
|
right: 0,
|
|
},
|
|
positionStatic: {
|
|
position: 'static',
|
|
flexShrink: 0,
|
|
},
|
|
colorDefault: {
|
|
backgroundColor: theme.palette.background.appBar,
|
|
color: theme.palette.getContrastText(theme.palette.background.appBar),
|
|
},
|
|
colorPrimary: {
|
|
backgroundColor: theme.palette.primary[500],
|
|
color: theme.palette.getContrastText(theme.palette.primary[500]),
|
|
},
|
|
colorAccent: {
|
|
backgroundColor: theme.palette.secondary.A200,
|
|
color: theme.palette.getContrastText(theme.palette.secondary.A200),
|
|
},
|
|
});
|
|
|
|
export type Color = 'inherit' | 'primary' | 'accent' | 'default';
|
|
export type Position = 'static' | 'fixed' | 'absolute';
|
|
|
|
type ProvidedProps = {
|
|
classes: Object,
|
|
color: Color,
|
|
position: Position,
|
|
};
|
|
|
|
export type Props = {
|
|
/**
|
|
* The content of the component.
|
|
*/
|
|
children?: Node,
|
|
/**
|
|
* Useful to extend the style applied to components.
|
|
*/
|
|
classes?: Object,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
className?: string,
|
|
/**
|
|
* The color of the component. It's using the theme palette when that makes sense.
|
|
*/
|
|
color?: Color,
|
|
/**
|
|
* The positioning type.
|
|
*/
|
|
position?: Position,
|
|
};
|
|
|
|
function AppBar(props: ProvidedProps & Props) {
|
|
const { children, classes, className: classNameProp, color, position, ...other } = props;
|
|
|
|
const className = classNames(
|
|
classes.root,
|
|
classes[`position${capitalizeFirstLetter(position)}`],
|
|
{
|
|
[classes[`color${capitalizeFirstLetter(color)}`]]: color !== 'inherit',
|
|
'mui-fixed': position === 'fixed', // Useful for the Dialog
|
|
},
|
|
classNameProp,
|
|
);
|
|
|
|
return (
|
|
<Paper square component="header" elevation={4} className={className} {...other}>
|
|
{children}
|
|
</Paper>
|
|
);
|
|
}
|
|
|
|
AppBar.defaultProps = {
|
|
color: 'primary',
|
|
position: 'fixed',
|
|
};
|
|
|
|
export default withStyles(styles, { name: 'MuiAppBar' })(AppBar);
|