bigbuffet-rw/app/soapbox/components/sidebar-navigation.tsx

195 lines
6.1 KiB
TypeScript
Raw Normal View History

2022-03-21 11:09:01 -07:00
import React from 'react';
import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
2022-03-21 11:09:01 -07:00
import { getSettings } from 'soapbox/actions/settings';
import DropdownMenu from 'soapbox/containers/dropdown_menu_container';
2022-03-21 11:09:01 -07:00
import ComposeButton from 'soapbox/features/ui/components/compose-button';
import { useAppSelector, useOwnAccount } from 'soapbox/hooks';
2022-03-21 11:09:01 -07:00
import { getFeatures } from 'soapbox/utils/features';
import SidebarNavigationLink from './sidebar-navigation-link';
import type { Menu } from 'soapbox/components/dropdown_menu';
const messages = defineMessages({
follow_requests: { id: 'navigation_bar.follow_requests', defaultMessage: 'Follow requests' },
bookmarks: { id: 'column.bookmarks', defaultMessage: 'Bookmarks' },
lists: { id: 'column.lists', defaultMessage: 'Lists' },
developers: { id: 'navigation.developers', defaultMessage: 'Developers' },
dashboard: { id: 'tabs_bar.dashboard', defaultMessage: 'Dashboard' },
all: { id: 'tabs_bar.all', defaultMessage: 'All' },
fediverse: { id: 'tabs_bar.fediverse', defaultMessage: 'Fediverse' },
});
/** Desktop sidebar with links to different views in the app. */
2022-03-21 11:09:01 -07:00
const SidebarNavigation = () => {
const intl = useIntl();
2022-03-21 11:09:01 -07:00
const instance = useAppSelector((state) => state.instance);
const settings = useAppSelector((state) => getSettings(state));
const account = useOwnAccount();
2022-03-21 11:09:01 -07:00
const notificationCount = useAppSelector((state) => state.notifications.get('unread'));
const chatsCount = useAppSelector((state) => state.chats.items.reduce((acc, curr) => acc + Math.min(curr.unread || 0, 1), 0));
const followRequestsCount = useAppSelector((state) => state.user_lists.follow_requests.items.count());
2022-04-28 14:20:21 -07:00
const dashboardCount = useAppSelector((state) => state.admin.openReports.count() + state.admin.awaitingApproval.count());
2022-03-21 11:09:01 -07:00
const features = getFeatures(instance);
const makeMenu = (): Menu => {
const menu: Menu = [];
if (account) {
if (account.locked || followRequestsCount > 0) {
menu.push({
to: '/follow_requests',
text: intl.formatMessage(messages.follow_requests),
icon: require('@tabler/icons/user-plus.svg'),
count: followRequestsCount,
});
}
if (features.bookmarks) {
menu.push({
to: '/bookmarks',
text: intl.formatMessage(messages.bookmarks),
icon: require('@tabler/icons/bookmark.svg'),
});
}
if (features.lists) {
menu.push({
to: '/lists',
text: intl.formatMessage(messages.lists),
icon: require('@tabler/icons/list.svg'),
});
}
if (settings.get('isDeveloper')) {
menu.push({
to: '/developers',
icon: require('@tabler/icons/code.svg'),
text: intl.formatMessage(messages.developers),
});
}
if (account.staff) {
menu.push({
2022-04-30 09:31:04 -07:00
to: '/soapbox/admin',
icon: require('@tabler/icons/dashboard.svg'),
text: intl.formatMessage(messages.dashboard),
2022-04-28 14:20:21 -07:00
count: dashboardCount,
});
}
2022-04-23 13:40:54 -07:00
if (features.publicTimeline) {
menu.push(null);
}
}
2022-04-23 13:40:54 -07:00
if (features.publicTimeline) {
menu.push({
to: '/timeline/local',
icon: features.federating ? require('@tabler/icons/users.svg') : require('@tabler/icons/world.svg'),
text: features.federating ? instance.title : intl.formatMessage(messages.all),
});
}
2022-04-23 13:40:54 -07:00
if (features.publicTimeline && features.federating) {
menu.push({
to: '/timeline/fediverse',
icon: require('icons/fediverse.svg'),
text: intl.formatMessage(messages.fediverse),
});
}
return menu;
};
const menu = makeMenu();
2022-04-30 09:45:58 -07:00
/** Conditionally render the supported messages link */
const renderMessagesLink = (): React.ReactNode => {
if (features.chats) {
return (
<SidebarNavigationLink
to='/chats'
icon={require('@tabler/icons/messages.svg')}
2022-04-30 09:45:58 -07:00
count={chatsCount}
text={<FormattedMessage id='tabs_bar.chats' defaultMessage='Chats' />}
/>
);
}
if (features.directTimeline || features.conversations) {
return (
<SidebarNavigationLink
to='/messages'
icon={require('@tabler/icons/mail.svg')}
2022-04-30 09:45:58 -07:00
text={<FormattedMessage id='navigation.direct_messages' defaultMessage='Messages' />}
/>
);
}
return null;
};
2022-03-21 11:09:01 -07:00
return (
<div>
<div className='flex flex-col space-y-2'>
<SidebarNavigationLink
to='/'
icon={require('@tabler/icons/home.svg')}
2022-04-12 18:10:47 -07:00
text={<FormattedMessage id='tabs_bar.home' defaultMessage='Home' />}
2022-03-21 11:09:01 -07:00
/>
<SidebarNavigationLink
to='/search'
icon={require('@tabler/icons/search.svg')}
text={<FormattedMessage id='tabs_bar.search' defaultMessage='Search' />}
/>
2022-03-21 11:09:01 -07:00
{account && (
<>
<SidebarNavigationLink
to='/notifications'
icon={require('@tabler/icons/bell.svg')}
2022-03-21 11:09:01 -07:00
count={notificationCount}
2022-04-12 18:10:47 -07:00
text={<FormattedMessage id='tabs_bar.notifications' defaultMessage='Notifications' />}
2022-03-21 11:09:01 -07:00
/>
2022-05-12 09:38:01 -07:00
{renderMessagesLink()}
<SidebarNavigationLink
to={`/@${account.acct}`}
icon={require('@tabler/icons/user.svg')}
2022-05-12 09:38:01 -07:00
text={<FormattedMessage id='tabs_bar.profile' defaultMessage='Profile' />}
/>
2022-03-21 11:09:01 -07:00
<SidebarNavigationLink
to='/settings'
icon={require('@tabler/icons/settings.svg')}
2022-03-21 11:09:01 -07:00
text={<FormattedMessage id='tabs_bar.settings' defaultMessage='Settings' />}
/>
</>
)}
{menu.length > 0 && (
<DropdownMenu items={menu}>
<SidebarNavigationLink
icon={require('@tabler/icons/dots-circle-horizontal.svg')}
2022-04-28 14:20:21 -07:00
count={dashboardCount}
text={<FormattedMessage id='tabs_bar.more' defaultMessage='More' />}
/>
</DropdownMenu>
2022-04-12 18:10:47 -07:00
)}
2022-03-21 11:09:01 -07:00
</div>
{account && (
<ComposeButton />
)}
</div>
);
};
export default SidebarNavigation;