import "./page-layout.scss"; import React from "react"; import { observer } from "mobx-react"; import { autobind, cssNames, IClassName } from "../../utils"; import { navigation } from "../../navigation"; import { Icon } from "../icon"; export interface PageLayoutProps extends React.DOMAttributes { className?: IClassName; header?: React.ReactNode; headerClass?: IClassName; contentClass?: IClassName; provideBackButtonNavigation?: boolean; contentGaps?: boolean; showOnTop?: boolean; // covers whole app view navigation?: React.ReactNode; back?: (evt: React.MouseEvent | KeyboardEvent) => void; } const defaultProps: Partial = { provideBackButtonNavigation: true, contentGaps: true, }; @observer export class PageLayout extends React.Component { static defaultProps = defaultProps as object; @autobind() back(evt?: React.MouseEvent | KeyboardEvent) { if (this.props.back) { this.props.back(evt); } else { navigation.goBack(); } } async componentDidMount() { window.addEventListener("keydown", this.onEscapeKey); } componentWillUnmount() { window.removeEventListener("keydown", this.onEscapeKey); } onEscapeKey = (evt: KeyboardEvent) => { if (!this.props.provideBackButtonNavigation) { return; } if (evt.code === "Escape") { evt.stopPropagation(); this.back(evt); } }; render() { const { contentClass, headerClass, provideBackButtonNavigation, contentGaps, showOnTop, navigation, children, ...elemProps } = this.props; const className = cssNames("PageLayout", { showOnTop, showNavigation: navigation }, this.props.className); return (
{ navigation && ( )}
{children}
{ this.props.provideBackButtonNavigation && (
)}
); } }