48 lines
996 B
TypeScript
48 lines
996 B
TypeScript
import React from 'react';
|
|
|
|
import LinkFooter from 'soapbox/features/ui/components/link-footer';
|
|
import {
|
|
WhoToFollowPanel,
|
|
TrendsPanel,
|
|
SignUpPanel,
|
|
CtaBanner,
|
|
} from 'soapbox/features/ui/util/async-components';
|
|
import { useAppSelector, useFeatures } from 'soapbox/hooks';
|
|
|
|
import { Layout } from '../components/ui';
|
|
|
|
interface IStatusPage {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
const StatusPage: React.FC<IStatusPage> = ({ children }) => {
|
|
const me = useAppSelector(state => state.me);
|
|
const features = useFeatures();
|
|
|
|
return (
|
|
<>
|
|
<Layout.Main>
|
|
{children}
|
|
|
|
{!me && (
|
|
<CtaBanner />
|
|
)}
|
|
</Layout.Main>
|
|
|
|
<Layout.Aside>
|
|
{!me && (
|
|
<SignUpPanel />
|
|
)}
|
|
{features.trends && (
|
|
<TrendsPanel limit={5} />
|
|
)}
|
|
{me && features.suggestions && (
|
|
<WhoToFollowPanel limit={3} />
|
|
)}
|
|
<LinkFooter />
|
|
</Layout.Aside>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default StatusPage;
|