2020-08-17 21:07:16 +01:00
|
|
|
import React from 'react'
|
2020-08-17 21:59:29 +01:00
|
|
|
import PropTypes from 'prop-types'
|
2020-04-11 23:29:19 +01:00
|
|
|
import PageTitle from '../features/ui/util/page_title'
|
2020-05-03 06:22:49 +01:00
|
|
|
import DefaultLayout from '../layouts/default_layout'
|
2020-08-12 23:52:46 +01:00
|
|
|
import {
|
|
|
|
LinkFooter,
|
2020-11-07 05:19:04 +00:00
|
|
|
TrendsBreakingPanel,
|
2020-09-01 17:54:01 +01:00
|
|
|
UserSuggestionsPanel,
|
2020-08-12 23:52:46 +01:00
|
|
|
} from '../features/ui/util/async_components'
|
2020-03-04 03:45:16 +00:00
|
|
|
|
2020-08-17 21:07:16 +01:00
|
|
|
class BasicPage extends React.PureComponent {
|
2020-03-04 03:45:16 +00:00
|
|
|
|
|
|
|
render() {
|
2020-07-16 05:05:08 +01:00
|
|
|
const {
|
|
|
|
children,
|
|
|
|
page,
|
|
|
|
title,
|
|
|
|
} = this.props
|
2020-03-04 03:45:16 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<DefaultLayout
|
2020-05-07 06:55:24 +01:00
|
|
|
noComposeButton
|
2020-04-11 23:29:19 +01:00
|
|
|
showBackBtn
|
2020-03-04 03:45:16 +00:00
|
|
|
title={title}
|
2020-07-16 05:05:08 +01:00
|
|
|
page={page}
|
|
|
|
layout={[
|
2020-11-07 05:19:04 +00:00
|
|
|
TrendsBreakingPanel,
|
2020-09-01 17:54:01 +01:00
|
|
|
UserSuggestionsPanel,
|
2020-08-12 23:52:46 +01:00
|
|
|
LinkFooter,
|
2020-07-16 05:05:08 +01:00
|
|
|
]}
|
2020-03-04 03:45:16 +00:00
|
|
|
>
|
2020-04-11 23:29:19 +01:00
|
|
|
<PageTitle path={title} />
|
2020-03-04 03:45:16 +00:00
|
|
|
{children}
|
|
|
|
</DefaultLayout>
|
|
|
|
)
|
|
|
|
}
|
2020-05-03 06:22:49 +01:00
|
|
|
|
2020-08-14 18:45:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
BasicPage.propTypes = {
|
|
|
|
children: PropTypes.node.isRequired,
|
|
|
|
page: PropTypes.string.isRequired,
|
|
|
|
title: PropTypes.string.isRequired,
|
|
|
|
}
|
|
|
|
|
|
|
|
export default BasicPage
|