You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
966 B
25 lines
966 B
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'; |
|
|
|
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> |
|
);
|
|
|