2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-07-25 20:01:27 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-10-07 20:55:58 -04:00
|
|
|
import { NavLink } from 'react-router-dom';
|
2017-07-25 20:01:27 -04:00
|
|
|
import { FormattedMessage, injectIntl } from 'react-intl';
|
2017-07-28 16:55:13 -04:00
|
|
|
import { debounce } from 'lodash';
|
2017-07-29 15:20:34 -04:00
|
|
|
import { isUserTouching } from '../../../is_mobile';
|
2016-10-12 07:17:17 -04:00
|
|
|
|
2017-07-09 09:02:26 -04:00
|
|
|
export const links = [
|
2017-07-25 20:01:27 -04:00
|
|
|
<NavLink className='tabs-bar__link primary' to='/statuses/new' data-preview-title-id='tabs_bar.compose' data-preview-icon='pencil' ><i className='fa fa-fw fa-pencil' /><FormattedMessage id='tabs_bar.compose' defaultMessage='Compose' /></NavLink>,
|
|
|
|
<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>,
|
2017-06-08 11:41:32 -04:00
|
|
|
|
2017-07-25 20:01:27 -04:00
|
|
|
<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>,
|
2017-06-08 11:41:32 -04:00
|
|
|
|
2017-07-25 20:01:27 -04:00
|
|
|
<NavLink className='tabs-bar__link primary' style={{ flexGrow: '0', flexBasis: '30px' }} to='/getting-started' data-preview-title-id='getting_started.heading' data-preview-icon='asterisk' ><i className='fa fa-fw fa-asterisk' /></NavLink>,
|
2017-06-08 11:41:32 -04:00
|
|
|
];
|
|
|
|
|
2017-07-09 09:02:26 -04:00
|
|
|
export function getIndex (path) {
|
|
|
|
return links.findIndex(link => link.props.to === path);
|
|
|
|
}
|
2017-06-08 11:41:32 -04:00
|
|
|
|
2017-07-09 09:02:26 -04:00
|
|
|
export function getLink (index) {
|
|
|
|
return links[index].props.to;
|
|
|
|
}
|
2017-06-08 11:41:32 -04:00
|
|
|
|
2017-07-25 20:01:27 -04:00
|
|
|
@injectIntl
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class TabsBar extends React.Component {
|
2017-04-01 09:17:35 -04:00
|
|
|
|
2017-07-28 16:55:13 -04:00
|
|
|
static contextTypes = {
|
|
|
|
router: PropTypes.object.isRequired,
|
|
|
|
}
|
|
|
|
|
2017-07-25 20:01:27 -04:00
|
|
|
static propTypes = {
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
}
|
|
|
|
|
2017-07-28 16:55:13 -04:00
|
|
|
setRef = ref => {
|
|
|
|
this.node = ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
handleClick = (e) => {
|
2017-07-29 15:20:34 -04:00
|
|
|
// 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.context.router.history.push(to);
|
|
|
|
}, 50);
|
|
|
|
|
|
|
|
nextTab.addEventListener('transitionend', listener);
|
|
|
|
nextTab.classList.add('active');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2017-07-28 16:55:13 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-04-01 09:17:35 -04:00
|
|
|
render () {
|
2017-07-25 20:01:27 -04:00
|
|
|
const { intl: { formatMessage } } = this.props;
|
|
|
|
|
2017-04-01 09:17:35 -04:00
|
|
|
return (
|
2017-07-28 16:55:13 -04:00
|
|
|
<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'] }) }))}
|
2017-07-25 20:01:27 -04:00
|
|
|
</nav>
|
2017-04-01 09:17:35 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|