2021-07-01 16:01:50 -07:00
|
|
|
import React from 'react';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2022-01-10 14:17:52 -08:00
|
|
|
import { connect } from 'react-redux';
|
2022-01-10 14:25:06 -08:00
|
|
|
|
2022-03-21 11:09:01 -07:00
|
|
|
import SidebarNavigation from 'soapbox/components/sidebar-navigation';
|
2022-01-10 14:17:52 -08:00
|
|
|
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';
|
2021-07-01 16:01:50 -07:00
|
|
|
import { getFeatures } from 'soapbox/utils/features';
|
|
|
|
|
2022-03-21 11:09:01 -07:00
|
|
|
import { Layout } from '../components/ui';
|
|
|
|
|
2021-07-01 16:01:50 -07:00
|
|
|
const mapStateToProps = state => {
|
2021-07-26 07:52:58 -07:00
|
|
|
const me = state.get('me');
|
2021-07-01 16:01:50 -07:00
|
|
|
const features = getFeatures(state.get('instance'));
|
|
|
|
|
|
|
|
return {
|
2021-07-26 07:52:58 -07:00
|
|
|
me,
|
2021-07-01 16:01:50 -07:00
|
|
|
showTrendsPanel: features.trends,
|
|
|
|
showWhoToFollowPanel: features.suggestions,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export default @connect(mapStateToProps)
|
|
|
|
class DefaultPage extends ImmutablePureComponent {
|
|
|
|
|
|
|
|
render() {
|
2021-07-26 07:52:58 -07:00
|
|
|
const { me, children, showTrendsPanel, showWhoToFollowPanel } = this.props;
|
2021-07-01 16:01:50 -07:00
|
|
|
|
|
|
|
return (
|
2022-03-21 11:09:01 -07:00
|
|
|
<Layout>
|
|
|
|
<Layout.Sidebar>
|
|
|
|
<SidebarNavigation />
|
|
|
|
</Layout.Sidebar>
|
2021-07-01 16:01:50 -07:00
|
|
|
|
2022-03-21 11:09:01 -07:00
|
|
|
<Layout.Main>
|
|
|
|
{children}
|
|
|
|
</Layout.Main>
|
2021-07-01 16:01:50 -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>
|
|
|
|
</Layout>
|
2021-07-01 16:01:50 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|