2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-07-26 00:01:27 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2018-03-06 06:28:05 +00:00
|
|
|
import { NavLink, withRouter } from 'react-router-dom';
|
2017-07-26 00:01:27 +00:00
|
|
|
import { FormattedMessage, injectIntl } from 'react-intl';
|
2017-07-28 20:55:13 +00:00
|
|
|
import { debounce } from 'lodash';
|
2017-07-29 19:20:34 +00:00
|
|
|
import { isUserTouching } from '../../../is_mobile';
|
2019-01-31 23:14:05 +00:00
|
|
|
import Icon from 'mastodon/components/icon';
|
2019-05-22 23:35:22 +00:00
|
|
|
import NotificationsCounterIcon from './notifications_counter_icon';
|
2016-10-12 11:17:17 +00:00
|
|
|
|
2017-07-09 13:02:26 +00:00
|
|
|
export const links = [
|
2019-05-25 19:27:00 +00:00
|
|
|
<NavLink className='tabs-bar__link' to='/timelines/home' data-preview-title-id='column.home' data-preview-icon='home' ><Icon id='home' fixedWidth /><FormattedMessage id='tabs_bar.home' defaultMessage='Home' /></NavLink>,
|
|
|
|
<NavLink className='tabs-bar__link' to='/notifications' data-preview-title-id='column.notifications' data-preview-icon='bell' ><NotificationsCounterIcon /><FormattedMessage id='tabs_bar.notifications' defaultMessage='Notifications' /></NavLink>,
|
|
|
|
<NavLink className='tabs-bar__link' to='/timelines/public/local' data-preview-title-id='column.community' data-preview-icon='users' ><Icon id='users' fixedWidth /><FormattedMessage id='tabs_bar.local_timeline' defaultMessage='Local' /></NavLink>,
|
|
|
|
<NavLink className='tabs-bar__link' exact to='/timelines/public' data-preview-title-id='column.public' data-preview-icon='globe' ><Icon id='globe' fixedWidth /><FormattedMessage id='tabs_bar.federated_timeline' defaultMessage='Federated' /></NavLink>,
|
|
|
|
<NavLink className='tabs-bar__link optional' to='/search' data-preview-title-id='tabs_bar.search' data-preview-icon='bell' ><Icon id='search' fixedWidth /><FormattedMessage id='tabs_bar.search' defaultMessage='Search' /></NavLink>,
|
|
|
|
<NavLink className='tabs-bar__link' style={{ flexGrow: '0', flexBasis: '30px' }} to='/getting-started' data-preview-title-id='getting_started.heading' data-preview-icon='bars' ><Icon id='bars' fixedWidth /></NavLink>,
|
2017-06-08 15:41:32 +00:00
|
|
|
];
|
|
|
|
|
2017-07-09 13:02:26 +00:00
|
|
|
export function getIndex (path) {
|
|
|
|
return links.findIndex(link => link.props.to === path);
|
|
|
|
}
|
2017-06-08 15:41:32 +00:00
|
|
|
|
2017-07-09 13:02:26 +00:00
|
|
|
export function getLink (index) {
|
|
|
|
return links[index].props.to;
|
|
|
|
}
|
2017-06-08 15:41:32 +00:00
|
|
|
|
2018-09-14 15:59:48 +00:00
|
|
|
export default @injectIntl
|
2018-03-06 06:28:05 +00:00
|
|
|
@withRouter
|
2018-09-14 15:59:48 +00:00
|
|
|
class TabsBar extends React.PureComponent {
|
2017-07-28 20:55:13 +00:00
|
|
|
|
2017-07-26 00:01:27 +00:00
|
|
|
static propTypes = {
|
|
|
|
intl: PropTypes.object.isRequired,
|
2018-03-06 06:28:05 +00:00
|
|
|
history: PropTypes.object.isRequired,
|
2017-07-26 00:01:27 +00:00
|
|
|
}
|
|
|
|
|
2017-07-28 20:55:13 +00:00
|
|
|
setRef = ref => {
|
|
|
|
this.node = ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
handleClick = (e) => {
|
2017-07-29 19:20:34 +00: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);
|
2018-03-06 06:28:05 +00:00
|
|
|
this.props.history.push(to);
|
2017-07-29 19:20:34 +00:00
|
|
|
}, 50);
|
|
|
|
|
|
|
|
nextTab.addEventListener('transitionend', listener);
|
|
|
|
nextTab.classList.add('active');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2017-07-28 20:55:13 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-04-01 13:17:35 +00:00
|
|
|
render () {
|
2017-07-26 00:01:27 +00:00
|
|
|
const { intl: { formatMessage } } = this.props;
|
|
|
|
|
2017-04-01 13:17:35 +00:00
|
|
|
return (
|
2017-07-28 20:55:13 +00: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-26 00:01:27 +00:00
|
|
|
</nav>
|
2017-04-01 13:17:35 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|