52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
|
import React from 'react';
|
||
|
|
||
|
import SidebarNavigation from 'soapbox/components/sidebar-navigation';
|
||
|
import LinkFooter from 'soapbox/features/ui/components/link_footer';
|
||
|
import BundleContainer from 'soapbox/features/ui/containers/bundle_container';
|
||
|
import {
|
||
|
WhoToFollowPanel,
|
||
|
TrendsPanel,
|
||
|
SignUpPanel,
|
||
|
} from 'soapbox/features/ui/util/async-components';
|
||
|
import { useAppSelector, useFeatures } from 'soapbox/hooks';
|
||
|
|
||
|
import { Layout } from '../components/ui';
|
||
|
|
||
|
const DefaultPage: React.FC = ({ children }) => {
|
||
|
const me = useAppSelector(state => state.me);
|
||
|
const features = useFeatures();
|
||
|
|
||
|
return (
|
||
|
<Layout>
|
||
|
<Layout.Sidebar>
|
||
|
<SidebarNavigation />
|
||
|
</Layout.Sidebar>
|
||
|
|
||
|
<Layout.Main>
|
||
|
{children}
|
||
|
</Layout.Main>
|
||
|
|
||
|
<Layout.Aside>
|
||
|
{!me && (
|
||
|
<BundleContainer fetchComponent={SignUpPanel}>
|
||
|
{Component => <Component key='sign-up-panel' />}
|
||
|
</BundleContainer>
|
||
|
)}
|
||
|
{features.trends && (
|
||
|
<BundleContainer fetchComponent={TrendsPanel}>
|
||
|
{Component => <Component limit={3} key='trends-panel' />}
|
||
|
</BundleContainer>
|
||
|
)}
|
||
|
{features.suggestions && (
|
||
|
<BundleContainer fetchComponent={WhoToFollowPanel}>
|
||
|
{Component => <Component limit={5} key='wtf-panel' />}
|
||
|
</BundleContainer>
|
||
|
)}
|
||
|
<LinkFooter key='link-footer' />
|
||
|
</Layout.Aside>
|
||
|
</Layout>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default DefaultPage;
|