2019-06-19 14:40:52 +00:00
|
|
|
import {
|
|
|
|
createStyles,
|
|
|
|
Theme,
|
|
|
|
withStyles,
|
|
|
|
WithStyles
|
|
|
|
} from "@material-ui/core/styles";
|
|
|
|
import Typography from "@material-ui/core/Typography";
|
2019-08-09 10:26:22 +00:00
|
|
|
import React from "react";
|
2019-06-19 14:40:52 +00:00
|
|
|
|
|
|
|
import ExtendedPageHeader from "../ExtendedPageHeader";
|
|
|
|
import Skeleton from "../Skeleton";
|
|
|
|
|
2019-10-28 16:16:49 +00:00
|
|
|
const styles = theme =>
|
2019-06-19 14:40:52 +00:00
|
|
|
createStyles({
|
2019-08-09 11:14:35 +00:00
|
|
|
root: {
|
|
|
|
display: "flex"
|
|
|
|
},
|
2019-06-19 14:40:52 +00:00
|
|
|
title: {
|
|
|
|
flex: 1,
|
|
|
|
fontSize: 24,
|
2019-10-28 16:16:49 +00:00
|
|
|
paddingBottom: theme.spacing(2)
|
2019-06-19 14:40:52 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
interface PageHeaderProps extends WithStyles<typeof styles> {
|
|
|
|
children?: React.ReactNode;
|
|
|
|
className?: string;
|
|
|
|
title?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
const PageHeader = withStyles(styles)(
|
|
|
|
({ children, classes, className, title }: PageHeaderProps) => (
|
|
|
|
<ExtendedPageHeader
|
|
|
|
className={className}
|
|
|
|
title={
|
|
|
|
<Typography className={classes.title} variant="h5">
|
|
|
|
{title !== undefined ? title : <Skeleton style={{ width: "10em" }} />}
|
|
|
|
</Typography>
|
|
|
|
}
|
|
|
|
>
|
2019-08-09 11:14:35 +00:00
|
|
|
<div className={classes.root}>{children}</div>
|
2019-06-19 14:40:52 +00:00
|
|
|
</ExtendedPageHeader>
|
|
|
|
)
|
|
|
|
);
|
|
|
|
PageHeader.displayName = "PageHeader";
|
|
|
|
export default PageHeader;
|