193 lines
		
	
	
		
			8.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			193 lines
		
	
	
		
			8.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import PropTypes from 'prop-types';
 | 
						|
import { Component, useEffect } from 'react';
 | 
						|
 | 
						|
import { defineMessages, injectIntl, useIntl } from 'react-intl';
 | 
						|
 | 
						|
import { Link } from 'react-router-dom';
 | 
						|
 | 
						|
import { useSelector, useDispatch } from 'react-redux';
 | 
						|
 | 
						|
 | 
						|
import AlternateEmailIcon from '@/material-icons/400-24px/alternate_email.svg?react';
 | 
						|
import BookmarksActiveIcon from '@/material-icons/400-24px/bookmarks-fill.svg?react';
 | 
						|
import BookmarksIcon from '@/material-icons/400-24px/bookmarks.svg?react';
 | 
						|
import ExploreActiveIcon from '@/material-icons/400-24px/explore-fill.svg?react';
 | 
						|
import ExploreIcon from '@/material-icons/400-24px/explore.svg?react';
 | 
						|
import HomeActiveIcon from '@/material-icons/400-24px/home-fill.svg?react';
 | 
						|
import HomeIcon from '@/material-icons/400-24px/home.svg?react';
 | 
						|
import ListAltActiveIcon from '@/material-icons/400-24px/list_alt-fill.svg?react';
 | 
						|
import ListAltIcon from '@/material-icons/400-24px/list_alt.svg?react';
 | 
						|
import MoreHorizIcon from '@/material-icons/400-24px/more_horiz.svg?react';
 | 
						|
import NotificationsActiveIcon from '@/material-icons/400-24px/notifications-fill.svg?react';
 | 
						|
import NotificationsIcon from '@/material-icons/400-24px/notifications.svg?react';
 | 
						|
import PersonAddActiveIcon from '@/material-icons/400-24px/person_add-fill.svg?react';
 | 
						|
import PersonAddIcon from '@/material-icons/400-24px/person_add.svg?react';
 | 
						|
import PublicIcon from '@/material-icons/400-24px/public.svg?react';
 | 
						|
import SearchIcon from '@/material-icons/400-24px/search.svg?react';
 | 
						|
import SettingsIcon from '@/material-icons/400-24px/settings.svg?react';
 | 
						|
import StarActiveIcon from '@/material-icons/400-24px/star-fill.svg?react';
 | 
						|
import StarIcon from '@/material-icons/400-24px/star.svg?react';
 | 
						|
import { fetchFollowRequests } from 'mastodon/actions/accounts';
 | 
						|
import { IconWithBadge } from 'mastodon/components/icon_with_badge';
 | 
						|
import { WordmarkLogo } from 'mastodon/components/logo';
 | 
						|
import { NavigationPortal } from 'mastodon/components/navigation_portal';
 | 
						|
import { timelinePreview, trendsEnabled } from 'mastodon/initial_state';
 | 
						|
import { transientSingleColumn } from 'mastodon/is_mobile';
 | 
						|
 | 
						|
import ColumnLink from './column_link';
 | 
						|
import DisabledAccountBanner from './disabled_account_banner';
 | 
						|
import { ListPanel } from './list_panel';
 | 
						|
import SignInBanner from './sign_in_banner';
 | 
						|
 | 
						|
const messages = defineMessages({
 | 
						|
  home: { id: 'tabs_bar.home', defaultMessage: 'Home' },
 | 
						|
  notifications: { id: 'tabs_bar.notifications', defaultMessage: 'Notifications' },
 | 
						|
  explore: { id: 'explore.title', defaultMessage: 'Explore' },
 | 
						|
  firehose: { id: 'column.firehose', defaultMessage: 'Live feeds' },
 | 
						|
  direct: { id: 'navigation_bar.direct', defaultMessage: 'Private mentions' },
 | 
						|
  favourites: { id: 'navigation_bar.favourites', defaultMessage: 'Favorites' },
 | 
						|
  bookmarks: { id: 'navigation_bar.bookmarks', defaultMessage: 'Bookmarks' },
 | 
						|
  lists: { id: 'navigation_bar.lists', defaultMessage: 'Lists' },
 | 
						|
  preferences: { id: 'navigation_bar.preferences', defaultMessage: 'Preferences' },
 | 
						|
  followsAndFollowers: { id: 'navigation_bar.follows_and_followers', defaultMessage: 'Follows and followers' },
 | 
						|
  about: { id: 'navigation_bar.about', defaultMessage: 'About' },
 | 
						|
  search: { id: 'navigation_bar.search', defaultMessage: 'Search' },
 | 
						|
  advancedInterface: { id: 'navigation_bar.advanced_interface', defaultMessage: 'Open in advanced web interface' },
 | 
						|
  openedInClassicInterface: { id: 'navigation_bar.opened_in_classic_interface', defaultMessage: 'Posts, accounts, and other specific pages are opened by default in the classic web interface.' },
 | 
						|
  followRequests: { id: 'navigation_bar.follow_requests', defaultMessage: 'Follow requests' },
 | 
						|
});
 | 
						|
 | 
						|
const NotificationsLink = () => {
 | 
						|
  const count = useSelector(state => state.getIn(['notifications', 'unread']));
 | 
						|
  const intl = useIntl();
 | 
						|
 | 
						|
  return (
 | 
						|
    <ColumnLink
 | 
						|
      transparent
 | 
						|
      to='/notifications'
 | 
						|
      icon={<IconWithBadge id='bell' icon={NotificationsIcon} count={count} className='column-link__icon' />}
 | 
						|
      activeIcon={<IconWithBadge id='bell' icon={NotificationsActiveIcon} count={count} className='column-link__icon' />}
 | 
						|
      text={intl.formatMessage(messages.notifications)}
 | 
						|
    />
 | 
						|
  );
 | 
						|
};
 | 
						|
 | 
						|
const FollowRequestsLink = () => {
 | 
						|
  const count = useSelector(state => state.getIn(['user_lists', 'follow_requests', 'items'])?.size ?? 0);
 | 
						|
  const intl = useIntl();
 | 
						|
  const dispatch = useDispatch();
 | 
						|
 | 
						|
  useEffect(() => {
 | 
						|
    dispatch(fetchFollowRequests());
 | 
						|
  }, [dispatch]);
 | 
						|
 | 
						|
  if (count === 0) {
 | 
						|
    return null;
 | 
						|
  }
 | 
						|
 | 
						|
  return (
 | 
						|
    <ColumnLink
 | 
						|
      transparent
 | 
						|
      to='/follow_requests'
 | 
						|
      icon={<IconWithBadge id='user-plus' icon={PersonAddIcon} count={count} className='column-link__icon' />}
 | 
						|
      activeIcon={<IconWithBadge id='user-plus' icon={PersonAddActiveIcon} count={count} className='column-link__icon' />}
 | 
						|
      text={intl.formatMessage(messages.followRequests)}
 | 
						|
    />
 | 
						|
  );
 | 
						|
};
 | 
						|
 | 
						|
class NavigationPanel extends Component {
 | 
						|
 | 
						|
  static contextTypes = {
 | 
						|
    identity: PropTypes.object.isRequired,
 | 
						|
  };
 | 
						|
 | 
						|
  static propTypes = {
 | 
						|
    intl: PropTypes.object.isRequired,
 | 
						|
  };
 | 
						|
 | 
						|
  isFirehoseActive = (match, location) => {
 | 
						|
    return match || location.pathname.startsWith('/public');
 | 
						|
  };
 | 
						|
 | 
						|
  render () {
 | 
						|
    const { intl } = this.props;
 | 
						|
    const { signedIn, disabledAccountId } = this.context.identity;
 | 
						|
 | 
						|
    let banner = undefined;
 | 
						|
 | 
						|
    if(transientSingleColumn)
 | 
						|
      banner = (<div className='switch-to-advanced'>
 | 
						|
        {intl.formatMessage(messages.openedInClassicInterface)}
 | 
						|
        {" "}
 | 
						|
        <a href={`/deck${location.pathname}`} className='switch-to-advanced__toggle'>
 | 
						|
          {intl.formatMessage(messages.advancedInterface)}
 | 
						|
        </a>
 | 
						|
      </div>);
 | 
						|
 | 
						|
    return (
 | 
						|
      <div className='navigation-panel'>
 | 
						|
        <div className='navigation-panel__logo'>
 | 
						|
          <Link to='/' className='column-link column-link--logo'><WordmarkLogo /></Link>
 | 
						|
        </div>
 | 
						|
 | 
						|
        {banner &&
 | 
						|
          <div className='navigation-panel__banner'>
 | 
						|
            {banner}
 | 
						|
          </div>
 | 
						|
        }
 | 
						|
 | 
						|
        {signedIn && (
 | 
						|
          <>
 | 
						|
            <ColumnLink transparent to='/home' icon='home' iconComponent={HomeIcon} activeIconComponent={HomeActiveIcon} text={intl.formatMessage(messages.home)} />
 | 
						|
            <NotificationsLink />
 | 
						|
            <FollowRequestsLink />
 | 
						|
          </>
 | 
						|
        )}
 | 
						|
 | 
						|
        {trendsEnabled ? (
 | 
						|
          <ColumnLink transparent to='/explore' icon='explore' iconComponent={ExploreIcon} activeIconComponent={ExploreActiveIcon} text={intl.formatMessage(messages.explore)} />
 | 
						|
        ) : (
 | 
						|
          <ColumnLink transparent to='/search' icon='search' iconComponent={SearchIcon} text={intl.formatMessage(messages.search)} />
 | 
						|
        )}
 | 
						|
 | 
						|
        {(signedIn || timelinePreview) && (
 | 
						|
          <ColumnLink transparent to='/public/local' isActive={this.isFirehoseActive} icon='globe' iconComponent={PublicIcon} text={intl.formatMessage(messages.firehose)} />
 | 
						|
        )}
 | 
						|
 | 
						|
        {!signedIn && (
 | 
						|
          <div className='navigation-panel__sign-in-banner'>
 | 
						|
            <hr />
 | 
						|
            { disabledAccountId ? <DisabledAccountBanner /> : <SignInBanner /> }
 | 
						|
          </div>
 | 
						|
        )}
 | 
						|
 | 
						|
        {signedIn && (
 | 
						|
          <>
 | 
						|
            <ColumnLink transparent to='/conversations' icon='at' iconComponent={AlternateEmailIcon} text={intl.formatMessage(messages.direct)} />
 | 
						|
            <ColumnLink transparent to='/bookmarks' icon='bookmarks' iconComponent={BookmarksIcon} activeIconComponent={BookmarksActiveIcon} text={intl.formatMessage(messages.bookmarks)} />
 | 
						|
            <ColumnLink transparent to='/favourites' icon='star' iconComponent={StarIcon} activeIconComponent={StarActiveIcon} text={intl.formatMessage(messages.favourites)} />
 | 
						|
            <ColumnLink transparent to='/lists' icon='list-ul' iconComponent={ListAltIcon} activeIconComponent={ListAltActiveIcon} text={intl.formatMessage(messages.lists)} />
 | 
						|
 | 
						|
            <ListPanel />
 | 
						|
 | 
						|
            <hr />
 | 
						|
 | 
						|
            <ColumnLink transparent href='/settings/preferences' icon='cog' iconComponent={SettingsIcon} text={intl.formatMessage(messages.preferences)} />
 | 
						|
          </>
 | 
						|
        )}
 | 
						|
 | 
						|
        <div className='navigation-panel__legal'>
 | 
						|
          <hr />
 | 
						|
          <ColumnLink transparent to='/about' icon='ellipsis-h' iconComponent={MoreHorizIcon} text={intl.formatMessage(messages.about)} />
 | 
						|
        </div>
 | 
						|
 | 
						|
        <NavigationPortal />
 | 
						|
      </div>
 | 
						|
    );
 | 
						|
  }
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
export default injectIntl(NavigationPanel);
 |