mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 15:08:06 +01:00
26 lines
987 B
TypeScript
26 lines
987 B
TypeScript
|
import { Switch, Route } from 'react-router-dom';
|
||
|
|
||
|
import AccountNavigation from 'flavours/glitch/features/account/navigation';
|
||
|
import Trends from 'flavours/glitch/features/getting_started/containers/trends_container';
|
||
|
import { showTrends } from 'flavours/glitch/initial_state';
|
||
|
|
||
|
const DefaultNavigation: React.FC = () =>
|
||
|
showTrends ? (
|
||
|
<>
|
||
|
<div className='flex-spacer' />
|
||
|
<Trends />
|
||
|
</>
|
||
|
) : null;
|
||
|
|
||
|
export const NavigationPortal: React.FC = () => (
|
||
|
<Switch>
|
||
|
<Route path='/@:acct' exact component={AccountNavigation} />
|
||
|
<Route path='/@:acct/tagged/:tagged?' exact component={AccountNavigation} />
|
||
|
<Route path='/@:acct/with_replies' exact component={AccountNavigation} />
|
||
|
<Route path='/@:acct/followers' exact component={AccountNavigation} />
|
||
|
<Route path='/@:acct/following' exact component={AccountNavigation} />
|
||
|
<Route path='/@:acct/media' exact component={AccountNavigation} />
|
||
|
<Route component={DefaultNavigation} />
|
||
|
</Switch>
|
||
|
);
|