bigbuffet-rw/app/soapbox/pages/status_page.js

70 lines
1.9 KiB
JavaScript
Raw Normal View History

2021-09-12 17:16:28 -07:00
import React from 'react';
import ImmutablePureComponent from 'react-immutable-pure-component';
import { connect } from 'react-redux';
import LinkFooter from 'soapbox/features/ui/components/link_footer';
2021-09-18 18:54:55 -07:00
import {
WhoToFollowPanel,
TrendsPanel,
SignUpPanel,
2022-05-10 03:17:14 -07:00
CtaBanner,
2021-09-18 18:54:55 -07:00
} from 'soapbox/features/ui/util/async-components';
// import GroupSidebarPanel from '../features/groups/sidebar_panel';
2021-09-12 17:16:28 -07:00
import { getFeatures } from 'soapbox/utils/features';
2022-03-21 11:09:01 -07:00
import { Layout } from '../components/ui';
2022-01-10 14:01:24 -08:00
import BundleContainer from '../features/ui/containers/bundle_container';
2021-09-12 17:16:28 -07:00
const mapStateToProps = state => {
const me = state.get('me');
const features = getFeatures(state.get('instance'));
return {
me,
showTrendsPanel: features.trends,
showWhoToFollowPanel: features.suggestions,
};
};
export default @connect(mapStateToProps)
class StatusPage extends ImmutablePureComponent {
render() {
const { me, children, showTrendsPanel, showWhoToFollowPanel } = this.props;
return (
<>
2022-03-21 11:09:01 -07:00
<Layout.Main>
{children}
2022-05-10 03:17:14 -07:00
{!me && (
<BundleContainer fetchComponent={CtaBanner}>
{Component => <Component key='cta-banner' />}
</BundleContainer>
)}
2022-03-21 11:09:01 -07:00
</Layout.Main>
2021-09-12 17:16:28 -07:00
2022-03-21 11:09:01 -07:00
<Layout.Aside>
{!me && (
<BundleContainer fetchComponent={SignUpPanel}>
{Component => <Component key='sign-up-panel' />}
</BundleContainer>
)}
{showTrendsPanel && (
<BundleContainer fetchComponent={TrendsPanel}>
{Component => <Component limit={3} key='trends-panel' />}
</BundleContainer>
)}
{showWhoToFollowPanel && (
<BundleContainer fetchComponent={WhoToFollowPanel}>
{Component => <Component limit={5} key='wtf-panel' />}
</BundleContainer>
)}
<LinkFooter key='link-footer' />
</Layout.Aside>
</>
2021-09-12 17:16:28 -07:00
);
}
}