//@flow import * as React from "react"; import injectSheet from "react-jss"; import classNames from "classnames"; import Loading from "./../Loading"; import ErrorNotification from "./../ErrorNotification"; import Title from "./Title"; import Subtitle from "./Subtitle"; import PageActions from "./PageActions"; import ErrorBoundary from "../ErrorBoundary"; type Props = { title?: string, subtitle?: string, loading?: boolean, error?: Error, showContentOnError?: boolean, children: React.Node, // context props classes: Object }; const styles = { actions: { display: "flex", justifyContent: "flex-end" } }; class Page extends React.Component { render() { const { error } = this.props; return (
{this.renderPageHeader()} {this.renderContent()}
); } isPageAction(node: any) { return node.displayName === PageActions.displayName || (node.type && node.type.displayName === PageActions.displayName); } renderPageHeader() { const { error, title, subtitle, children, classes } = this.props; let pageActions = null; let pageActionsExists = false; React.Children.forEach(children, child => { if (child && !error) { if (this.isPageAction(child)) { pageActions = (
{child}
); pageActionsExists = true; } } }); let underline = pageActionsExists ? (
) : null; return ( <>
<Subtitle subtitle={subtitle} /> </div> {pageActions} </div> {underline} </> ); } renderContent() { const { loading, children, showContentOnError, error } = this.props; if (error && !showContentOnError) { return null; } if (loading) { return <Loading />; } let content = []; React.Children.forEach(children, child => { if (child) { if (!this.isPageAction(child)) { content.push(child); } } }); return content; } } export default injectSheet(styles)(Page);