2023-10-20 04:44:55 +11:00
|
|
|
import { Switch, Route } from 'react-router-dom';
|
|
|
|
|
|
|
|
import AccountNavigation from 'mastodon/features/account/navigation';
|
|
|
|
import Trends from 'mastodon/features/getting_started/containers/trends_container';
|
|
|
|
import { showTrends } from 'mastodon/initial_state';
|
|
|
|
|
2024-09-26 02:36:19 +10:00
|
|
|
const DefaultNavigation: React.FC = () => (showTrends ? <Trends /> : null);
|
2023-10-20 04:44:55 +11:00
|
|
|
|
|
|
|
export const NavigationPortal: React.FC = () => (
|
2024-09-26 02:36:19 +10:00
|
|
|
<div className='navigation-panel__portal'>
|
|
|
|
<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>
|
|
|
|
</div>
|
2023-10-20 04:44:55 +11:00
|
|
|
);
|