Built error section, needs to be on a few pages.

This commit is contained in:
2018-11-25 22:03:38 +11:00
parent 83369773cd
commit 88cd1a9a53
11 changed files with 183 additions and 15 deletions

View File

@ -27,6 +27,7 @@ import { withLanguage } from '@public/language/Language';
import { withBlogTemplate} from '@public/blog/Blog';
import Page, { PageBoundary } from '@components/page/Page';
import ErrorSection from '@sections/error/ErrorSection';
import FeaturedArticleSection from '@sections/blog/article/FeaturedArticleSection';
import ArticleGridSection from '@sections/blog/article/ArticleGridSection';
import ClearSection from '@sections/layout/ClearSection';
@ -39,11 +40,8 @@ import Styles from './BlogPage.scss';
export default withBlogTemplate(withLanguage(props => {
let { lang, articles, page, pages, pending, error } = props;
console.log(props);
let children;
if(error) error = "An error occured";
if(error) error = <ErrorSection title={lang.blog.error.title} body={lang.blog.error.body} error={error} />;
if(pending) pending = <Loader />;
if(articles && articles.length) {
@ -56,9 +54,6 @@ export default withBlogTemplate(withLanguage(props => {
);
}
/*
*/
return (
<Page
style="blog-page" className="p-blog-page" title={ lang.pages.blog.title }