2018-09-03 16:17:36 +02:00
|
|
|
//@flow
|
|
|
|
|
import * as React from "react";
|
2019-04-10 14:45:35 +02:00
|
|
|
import injectSheet from "react-jss";
|
|
|
|
|
import classNames from "classnames";
|
2018-09-03 16:17:36 +02:00
|
|
|
import Loading from "./../Loading";
|
|
|
|
|
import ErrorNotification from "./../ErrorNotification";
|
|
|
|
|
import Title from "./Title";
|
|
|
|
|
import Subtitle from "./Subtitle";
|
2019-02-21 14:00:45 +01:00
|
|
|
import PageActions from "./PageActions";
|
2019-03-13 21:41:08 +01:00
|
|
|
import ErrorBoundary from "../ErrorBoundary";
|
2018-09-03 16:17:36 +02:00
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
|
title?: string,
|
|
|
|
|
subtitle?: string,
|
|
|
|
|
loading?: boolean,
|
|
|
|
|
error?: Error,
|
|
|
|
|
showContentOnError?: boolean,
|
2019-02-20 14:21:01 +01:00
|
|
|
children: React.Node,
|
|
|
|
|
|
|
|
|
|
// context props
|
2019-04-17 16:12:22 +02:00
|
|
|
classes: Object
|
2019-02-20 14:21:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const styles = {
|
2019-04-10 14:35:30 +02:00
|
|
|
actions: {
|
|
|
|
|
display: "flex",
|
|
|
|
|
justifyContent: "flex-end"
|
2019-02-20 14:21:01 +01:00
|
|
|
}
|
2018-09-03 16:17:36 +02:00
|
|
|
};
|
|
|
|
|
|
2019-04-17 16:12:22 +02:00
|
|
|
class Page extends React.Component<Props> {
|
2018-09-03 16:17:36 +02:00
|
|
|
render() {
|
2019-02-20 13:47:17 +01:00
|
|
|
const { error } = this.props;
|
2018-09-03 16:17:36 +02:00
|
|
|
return (
|
2019-03-14 10:12:34 +01:00
|
|
|
<section className="section">
|
|
|
|
|
<div className="container">
|
|
|
|
|
{this.renderPageHeader()}
|
|
|
|
|
<ErrorBoundary>
|
2019-04-10 14:35:30 +02:00
|
|
|
<ErrorNotification error={error} />
|
2019-03-13 11:54:33 +01:00
|
|
|
{this.renderContent()}
|
2019-03-14 10:12:34 +01:00
|
|
|
</ErrorBoundary>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
2018-09-03 16:17:36 +02:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-20 13:47:17 +01:00
|
|
|
renderPageHeader() {
|
2019-04-17 16:12:22 +02:00
|
|
|
const { error, title, subtitle, children, classes } = this.props;
|
2019-02-20 11:53:38 +01:00
|
|
|
|
2019-02-21 17:21:04 +01:00
|
|
|
let pageActions = null;
|
2019-02-20 13:47:17 +01:00
|
|
|
let pageActionsExists = false;
|
2019-02-20 11:53:38 +01:00
|
|
|
React.Children.forEach(children, child => {
|
2019-04-19 13:27:12 +02:00
|
|
|
if (child && !error) {
|
2019-07-24 17:30:40 +02:00
|
|
|
if (child.displayName === PageActions.displayName) {
|
2019-04-19 13:27:12 +02:00
|
|
|
pageActions = (
|
|
|
|
|
<div
|
|
|
|
|
className={classNames(
|
|
|
|
|
classes.actions,
|
|
|
|
|
"column is-three-fifths is-mobile-action-spacing"
|
|
|
|
|
)}
|
|
|
|
|
>
|
|
|
|
|
{child}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2019-04-24 16:45:20 +02:00
|
|
|
pageActionsExists = true;
|
|
|
|
|
}
|
2019-02-20 11:53:38 +01:00
|
|
|
}
|
|
|
|
|
});
|
2019-02-20 14:21:01 +01:00
|
|
|
let underline = pageActionsExists ? (
|
2019-04-10 14:35:30 +02:00
|
|
|
<hr className="header-with-actions" />
|
2019-02-20 14:21:01 +01:00
|
|
|
) : null;
|
2019-02-20 13:47:17 +01:00
|
|
|
|
|
|
|
|
return (
|
2019-02-20 14:13:38 +01:00
|
|
|
<>
|
|
|
|
|
<div className="columns">
|
|
|
|
|
<div className="column">
|
2019-04-10 14:35:30 +02:00
|
|
|
<Title title={title} />
|
|
|
|
|
<Subtitle subtitle={subtitle} />
|
2019-02-20 14:13:38 +01:00
|
|
|
</div>
|
2019-02-21 17:21:04 +01:00
|
|
|
{pageActions}
|
2019-02-20 13:47:17 +01:00
|
|
|
</div>
|
2019-02-20 14:13:38 +01:00
|
|
|
{underline}
|
|
|
|
|
</>
|
2019-02-20 13:47:17 +01:00
|
|
|
);
|
2019-02-20 11:53:38 +01:00
|
|
|
}
|
|
|
|
|
|
2018-09-03 16:17:36 +02:00
|
|
|
renderContent() {
|
|
|
|
|
const { loading, children, showContentOnError, error } = this.props;
|
2019-02-20 11:53:38 +01:00
|
|
|
|
2018-09-03 16:17:36 +02:00
|
|
|
if (error && !showContentOnError) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
if (loading) {
|
2019-04-10 14:35:30 +02:00
|
|
|
return <Loading />;
|
2018-09-03 16:17:36 +02:00
|
|
|
}
|
2019-02-20 11:16:59 +01:00
|
|
|
|
|
|
|
|
let content = [];
|
|
|
|
|
React.Children.forEach(children, child => {
|
2019-04-19 13:27:12 +02:00
|
|
|
if (child) {
|
2019-07-24 17:30:40 +02:00
|
|
|
if (child.displayName !== PageActions.displayName) {
|
2019-04-19 13:27:12 +02:00
|
|
|
content.push(child);
|
|
|
|
|
}
|
2019-02-20 11:16:59 +01:00
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
return content;
|
|
|
|
|
}
|
2018-09-03 16:17:36 +02:00
|
|
|
}
|
|
|
|
|
|
2019-04-17 16:12:22 +02:00
|
|
|
export default injectSheet(styles)(Page);
|