2023-05-23 17:52:27 +09:00
|
|
|
import { PureComponent } from 'react';
|
2023-05-24 00:15:17 +09:00
|
|
|
|
2022-10-19 18:30:59 +09:00
|
|
|
import { Switch, Route, withRouter } from 'react-router-dom';
|
2023-05-24 00:15:17 +09:00
|
|
|
|
2022-10-19 18:30:59 +09:00
|
|
|
import AccountNavigation from 'mastodon/features/account/navigation';
|
2023-05-24 00:15:17 +09:00
|
|
|
import Trends from 'mastodon/features/getting_started/containers/trends_container';
|
|
|
|
import { showTrends } from 'mastodon/initial_state';
|
2022-10-19 18:30:59 +09:00
|
|
|
|
|
|
|
const DefaultNavigation = () => (
|
2023-05-23 18:47:36 +09:00
|
|
|
showTrends ? (
|
|
|
|
<>
|
|
|
|
<div className='flex-spacer' />
|
|
|
|
<Trends />
|
|
|
|
</>
|
|
|
|
) : null
|
2022-10-19 18:30:59 +09:00
|
|
|
);
|
|
|
|
|
2023-05-23 17:52:27 +09:00
|
|
|
class NavigationPortal extends PureComponent {
|
2022-10-19 18:30:59 +09:00
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<Switch>
|
2022-11-04 10:28:25 +09:00
|
|
|
<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} />
|
2022-10-19 18:30:59 +09:00
|
|
|
<Route component={DefaultNavigation} />
|
|
|
|
</Switch>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-03-24 11:17:53 +09:00
|
|
|
export default withRouter(NavigationPortal);
|