83 lines
2.7 KiB
TypeScript
83 lines
2.7 KiB
TypeScript
import React from 'react';
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
import ThumbNavigationLink from 'soapbox/components/thumb_navigation-link';
|
|
import { useAppSelector, useOwnAccount } from 'soapbox/hooks';
|
|
import { getFeatures } from 'soapbox/utils/features';
|
|
|
|
const ThumbNavigation: React.FC = (): JSX.Element => {
|
|
const account = useOwnAccount();
|
|
const notificationCount = useAppSelector((state) => state.notifications.unread);
|
|
const chatsCount = useAppSelector((state) => state.chats.items.reduce((acc, curr) => acc + Math.min(curr.unread || 0, 1), 0));
|
|
const dashboardCount = useAppSelector((state) => state.admin.openReports.count() + state.admin.awaitingApproval.count());
|
|
const features = getFeatures(useAppSelector((state) => state.instance));
|
|
|
|
/** Conditionally render the supported messages link */
|
|
const renderMessagesLink = (): React.ReactNode => {
|
|
if (features.chats) {
|
|
return (
|
|
<ThumbNavigationLink
|
|
src={require('@tabler/icons/icons/messages.svg')}
|
|
text={<FormattedMessage id='navigation.chats' defaultMessage='Chats' />}
|
|
to='/chats'
|
|
exact
|
|
count={chatsCount}
|
|
/>
|
|
);
|
|
}
|
|
|
|
if (features.directTimeline || features.conversations) {
|
|
return (
|
|
<ThumbNavigationLink
|
|
src={require('@tabler/icons/icons/mail.svg')}
|
|
text={<FormattedMessage id='navigation.direct_messages' defaultMessage='Messages' />}
|
|
to='/messages'
|
|
paths={['/messages', '/conversations']}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return null;
|
|
};
|
|
|
|
return (
|
|
<div className='thumb-navigation'>
|
|
<ThumbNavigationLink
|
|
src={require('@tabler/icons/icons/home.svg')}
|
|
text={<FormattedMessage id='navigation.home' defaultMessage='Home' />}
|
|
to='/'
|
|
exact
|
|
/>
|
|
|
|
<ThumbNavigationLink
|
|
src={require('@tabler/icons/icons/search.svg')}
|
|
text={<FormattedMessage id='navigation.search' defaultMessage='Search' />}
|
|
to='/search'
|
|
exact
|
|
/>
|
|
|
|
{account && (
|
|
<ThumbNavigationLink
|
|
src={require('@tabler/icons/icons/bell.svg')}
|
|
text={<FormattedMessage id='navigation.notifications' defaultMessage='Alerts' />}
|
|
to='/notifications'
|
|
exact
|
|
count={notificationCount}
|
|
/>
|
|
)}
|
|
|
|
{account && renderMessagesLink()}
|
|
|
|
{(account && account.staff) && (
|
|
<ThumbNavigationLink
|
|
src={require('@tabler/icons/icons/dashboard.svg')}
|
|
text={<FormattedMessage id='navigation.dashboard' defaultMessage='Dashboard' />}
|
|
to='/soapbox/admin'
|
|
count={dashboardCount}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ThumbNavigation;
|