* Revert "Fix some icon names changed by the Font Awesome 5. (#8796)" This reverts commit3f9ec3de82. * Revert "Migrate to font-awesome 5.0. (#8799)" This reverts commit8bae14591b. * Revert "Fix some icons names, unavailable in fontawesome5 (free license). (#8792)" This reverts commitb9c727a945. * Revert "Update the icon name changed by the Font Awesome 5. (#8776)" This reverts commit17af4d27da. * Revert "Add bot icon to bot avatars and migrate to newer version of Font Awesome (#8484)" This reverts commit4b794e134d.
		
			
				
	
	
		
			82 lines
		
	
	
	
		
			3.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
	
		
			3.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import React from 'react';
 | |
| import PropTypes from 'prop-types';
 | |
| import { NavLink, withRouter } from 'react-router-dom';
 | |
| import { FormattedMessage, injectIntl } from 'react-intl';
 | |
| import { debounce } from 'lodash';
 | |
| import { isUserTouching } from '../../../is_mobile';
 | |
| 
 | |
| export const links = [
 | |
|   <NavLink className='tabs-bar__link primary' to='/timelines/home' data-preview-title-id='column.home' data-preview-icon='home' ><i className='fa fa-fw fa-home' /><FormattedMessage id='tabs_bar.home' defaultMessage='Home' /></NavLink>,
 | |
|   <NavLink className='tabs-bar__link primary' to='/notifications' data-preview-title-id='column.notifications' data-preview-icon='bell' ><i className='fa fa-fw fa-bell' /><FormattedMessage id='tabs_bar.notifications' defaultMessage='Notifications' /></NavLink>,
 | |
| 
 | |
|   <NavLink className='tabs-bar__link secondary' to='/timelines/public/local' data-preview-title-id='column.community' data-preview-icon='users' ><i className='fa fa-fw fa-users' /><FormattedMessage id='tabs_bar.local_timeline' defaultMessage='Local' /></NavLink>,
 | |
|   <NavLink className='tabs-bar__link secondary' exact to='/timelines/public' data-preview-title-id='column.public' data-preview-icon='globe' ><i className='fa fa-fw fa-globe' /><FormattedMessage id='tabs_bar.federated_timeline' defaultMessage='Federated' /></NavLink>,
 | |
|   <NavLink className='tabs-bar__link primary' to='/search' data-preview-title-id='tabs_bar.search' data-preview-icon='bell' ><i className='fa fa-fw fa-search' /><FormattedMessage id='tabs_bar.search' defaultMessage='Search' /></NavLink>,
 | |
| 
 | |
|   <NavLink className='tabs-bar__link primary' style={{ flexGrow: '0', flexBasis: '30px' }} to='/getting-started' data-preview-title-id='getting_started.heading' data-preview-icon='bars' ><i className='fa fa-fw fa-bars' /></NavLink>,
 | |
| ];
 | |
| 
 | |
| export function getIndex (path) {
 | |
|   return links.findIndex(link => link.props.to === path);
 | |
| }
 | |
| 
 | |
| export function getLink (index) {
 | |
|   return links[index].props.to;
 | |
| }
 | |
| 
 | |
| export default @injectIntl
 | |
| @withRouter
 | |
| class TabsBar extends React.PureComponent {
 | |
| 
 | |
|   static propTypes = {
 | |
|     intl: PropTypes.object.isRequired,
 | |
|     history: PropTypes.object.isRequired,
 | |
|   }
 | |
| 
 | |
|   setRef = ref => {
 | |
|     this.node = ref;
 | |
|   }
 | |
| 
 | |
|   handleClick = (e) => {
 | |
|     // Only apply optimization for touch devices, which we assume are slower
 | |
|     // We thus avoid the 250ms delay for non-touch devices and the lag for touch devices
 | |
|     if (isUserTouching()) {
 | |
|       e.preventDefault();
 | |
|       e.persist();
 | |
| 
 | |
|       requestAnimationFrame(() => {
 | |
|         const tabs = Array(...this.node.querySelectorAll('.tabs-bar__link'));
 | |
|         const currentTab = tabs.find(tab => tab.classList.contains('active'));
 | |
|         const nextTab = tabs.find(tab => tab.contains(e.target));
 | |
|         const { props: { to } } = links[Array(...this.node.childNodes).indexOf(nextTab)];
 | |
| 
 | |
| 
 | |
|         if (currentTab !== nextTab) {
 | |
|           if (currentTab) {
 | |
|             currentTab.classList.remove('active');
 | |
|           }
 | |
| 
 | |
|           const listener = debounce(() => {
 | |
|             nextTab.removeEventListener('transitionend', listener);
 | |
|             this.props.history.push(to);
 | |
|           }, 50);
 | |
| 
 | |
|           nextTab.addEventListener('transitionend', listener);
 | |
|           nextTab.classList.add('active');
 | |
|         }
 | |
|       });
 | |
|     }
 | |
| 
 | |
|   }
 | |
| 
 | |
|   render () {
 | |
|     const { intl: { formatMessage } } = this.props;
 | |
| 
 | |
|     return (
 | |
|       <nav className='tabs-bar' ref={this.setRef}>
 | |
|         {links.map(link => React.cloneElement(link, { key: link.props.to, onClick: this.handleClick, 'aria-label': formatMessage({ id: link.props['data-preview-title-id'] }) }))}
 | |
|       </nav>
 | |
|     );
 | |
|   }
 | |
| 
 | |
| }
 |