import Portal from "@material-ui/core/Portal"; import { createStyles, Theme, withStyles, WithStyles } from "@material-ui/core/styles"; import Typography from "@material-ui/core/Typography"; import ArrowBackIcon from "@material-ui/icons/ArrowBack"; import React from "react"; import AppHeaderContext from "../AppLayout/AppHeaderContext"; import Skeleton from "../Skeleton"; export interface AppHeaderProps { children: React.ReactNode; onBack(); } const styles = (theme: Theme) => createStyles({ backArrow: { fontSize: 30 }, menuButton: { flex: "0 0 auto", marginLeft: theme.spacing.unit * -2, marginRight: theme.spacing.unit, marginTop: -theme.spacing.unit * 2 }, root: { "&:hover": { color: theme.typography.body2.color }, alignItems: "center", color: theme.palette.grey[500], cursor: "pointer", display: "flex", marginTop: theme.spacing.unit / 2, transition: theme.transitions.duration.standard + "ms" }, skeleton: { marginBottom: theme.spacing.unit * 2, width: "10rem" }, title: { color: "inherit", flex: 1, marginLeft: theme.spacing.unit, textTransform: "uppercase" } }); const AppHeader = withStyles(styles, { name: "AppHeader" })( ({ children, classes, onBack }: AppHeaderProps & WithStyles) => ( {anchor => anchor ? (
{children ? ( {children} ) : ( )}
) : null }
) ); AppHeader.displayName = "AppHeader"; export default AppHeader;