.circleci
.dependabot
.github
app
chewy
controllers
helpers
javascript
fonts
images
mastodon
actions
components
containers
features
account
account_gallery
account_timeline
audio
blocks
bookmarked_statuses
community_timeline
compose
direct_timeline
directory
domain_blocks
emoji
favourited_statuses
favourites
follow_requests
followers
following
generic_not_found
getting_started
hashtag_timeline
home_timeline
introduction
keyboard_shortcuts
list_adder
list_editor
list_timeline
lists
mutes
notifications
pinned_statuses
public_timeline
reblogs
report
search
standalone
status
ui
components
__tests__
actions_modal.js
audio_modal.js
block_modal.js
boost_modal.js
bundle.js
bundle_column_error.js
bundle_modal_error.js
column.js
column_header.js
column_link.js
column_loading.js
column_subheading.js
columns_area.js
compose_panel.js
confirmation_modal.js
document_title.js
drawer_loading.js
embed_modal.js
focal_point_modal.js
follow_requests_nav_link.js
image_loader.js
link_footer.js
list_panel.js
media_modal.js
modal_loading.js
modal_root.js
mute_modal.js
navigation_panel.js
notifications_counter_icon.js
report_modal.js
tabs_bar.js
upload_area.js
video_modal.js
zoomable_image.js
containers
util
index.js
video
locales
middleware
reducers
selectors
service_worker
storage
store
utils
api.js
base_polyfills.js
common.js
compare_id.js
extra_polyfills.js
initial_state.js
is_mobile.js
load_keyboard_extensions.js
load_polyfills.js
main.js
performance.js
ready.js
rtl.js
scroll.js
settings.js
stream.js
test_setup.js
uuid.js
packs
styles
lib
mailers
models
policies
presenters
serializers
services
validators
views
workers
bin
config
db
dist
lib
log
nanobox
public
spec
streaming
vendor
.buildpacks
.codeclimate.yml
.dockerignore
.editorconfig
.env.nanobox
.env.production.sample
.env.test
.env.vagrant
.eslintignore
.eslintrc.js
.foreman
.gitattributes
.gitignore
.haml-lint.yml
.nanoignore
.nvmrc
.profile
.rspec
.rubocop.yml
.ruby-version
.sass-lint.yml
.slugignore
.yarnclean
AUTHORS.md
Aptfile
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Capfile
Dockerfile
Gemfile
Gemfile.lock
LICENSE
Procfile
Procfile.dev
README.md
Rakefile
Vagrantfile
app.json
babel.config.js
boxfile.yml
config.ru
crowdin.yml
docker-compose.yml
package.json
postcss.config.js
priv-config
scalingo.json
yarn.lock
87 lines
3.6 KiB
JavaScript
87 lines
3.6 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';
|
|
import Icon from 'mastodon/components/icon';
|
|
import NotificationsCounterIcon from './notifications_counter_icon';
|
|
|
|
export const links = [
|
|
<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>,
|
|
];
|
|
|
|
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 (
|
|
<div className='tabs-bar__wrapper'>
|
|
<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>
|
|
|
|
<div id='tabs-bar__portal' />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|