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

67 lines
1.8 KiB
JavaScript
Raw Normal View History

import React from 'react';
import ImmutablePureComponent from 'react-immutable-pure-component';
import { connect } from 'react-redux';
2022-03-21 11:09:01 -07:00
import SidebarNavigation from 'soapbox/components/sidebar-navigation';
import LinkFooter from 'soapbox/features/ui/components/link_footer';
2021-09-18 14:54:47 -07:00
import BundleContainer from 'soapbox/features/ui/containers/bundle_container';
2021-09-18 15:48:13 -07:00
import {
WhoToFollowPanel,
TrendsPanel,
SignUpPanel,
} from 'soapbox/features/ui/util/async-components';
import { getFeatures } from 'soapbox/utils/features';
2022-03-21 11:09:01 -07:00
import { Layout } from '../components/ui';
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 DefaultPage extends ImmutablePureComponent {
render() {
const { me, children, showTrendsPanel, showWhoToFollowPanel } = this.props;
return (
2022-03-21 11:09:01 -07:00
<Layout>
<Layout.Sidebar>
<SidebarNavigation />
</Layout.Sidebar>
2022-03-21 11:09:01 -07:00
<Layout.Main>
{children}
</Layout.Main>
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>
</Layout>
);
}
}