2022-04-28 10:50:30 -07:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
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';
|
2022-04-28 16:57:50 -07:00
|
|
|
import { isStandalone } from 'soapbox/utils/state';
|
2022-04-28 10:50:30 -07:00
|
|
|
|
|
|
|
import { Layout } from '../components/ui';
|
|
|
|
|
|
|
|
const DefaultPage: React.FC = ({ children }) => {
|
|
|
|
const me = useAppSelector(state => state.me);
|
2022-04-28 16:57:50 -07:00
|
|
|
const standalone = useAppSelector(isStandalone);
|
2022-04-28 10:50:30 -07:00
|
|
|
const features = useFeatures();
|
|
|
|
|
|
|
|
return (
|
2022-04-28 16:18:55 -07:00
|
|
|
<>
|
2022-04-28 10:50:30 -07:00
|
|
|
<Layout.Main>
|
|
|
|
{children}
|
|
|
|
</Layout.Main>
|
|
|
|
|
|
|
|
<Layout.Aside>
|
2022-04-28 16:57:50 -07:00
|
|
|
{!me && !standalone && (
|
2022-04-28 10:50:30 -07:00
|
|
|
<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>
|
2022-04-28 16:18:55 -07:00
|
|
|
</>
|
2022-04-28 10:50:30 -07:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default DefaultPage;
|