bigbuffet-rw/app/gabsocial/features/ui/components/tabs_bar.js

191 lines
5.8 KiB
JavaScript
Raw Normal View History

2020-03-27 13:59:38 -07:00
import React from 'react';
import PropTypes from 'prop-types';
2020-04-14 14:37:17 -07:00
import ImmutablePropTypes from 'react-immutable-proptypes';
2020-04-10 17:32:16 -07:00
import { Link, NavLink, withRouter } from 'react-router-dom';
2020-03-27 13:59:38 -07:00
import { FormattedMessage, injectIntl } from 'react-intl';
import { throttle } from 'lodash';
import { connect } from 'react-redux';
import classNames from 'classnames';
import NotificationsCounterIcon from './notifications_counter_icon';
import SearchContainer from 'gabsocial/features/compose/containers/search_container';
import Avatar from '../../../components/avatar';
import ActionBar from 'gabsocial/features/compose/components/action_bar';
import { openModal } from '../../../actions/modal';
import { openSidebar } from '../../../actions/sidebar';
import Icon from '../../../components/icon';
2020-03-27 13:59:38 -07:00
@withRouter
class TabsBar extends React.PureComponent {
static propTypes = {
intl: PropTypes.object.isRequired,
history: PropTypes.object.isRequired,
onOpenCompose: PropTypes.func,
onOpenSidebar: PropTypes.func.isRequired,
2020-04-14 14:37:17 -07:00
logo: PropTypes.string,
account: ImmutablePropTypes.map,
2020-03-27 13:59:38 -07:00
}
state = {
collapsed: false,
}
static contextTypes = {
router: PropTypes.object,
}
lastScrollTop = 0;
componentDidMount() {
2020-03-27 13:59:38 -07:00
this.window = window;
this.documentElement = document.scrollingElement || document.documentElement;
this.attachScrollListener();
// Handle initial scroll posiiton
this.handleScroll();
}
componentWillUnmount() {
2020-03-27 13:59:38 -07:00
this.detachScrollListener();
}
setRef = ref => {
this.node = ref;
}
attachScrollListener() {
2020-03-27 13:59:38 -07:00
this.window.addEventListener('scroll', this.handleScroll);
}
detachScrollListener() {
2020-03-27 13:59:38 -07:00
this.window.removeEventListener('scroll', this.handleScroll);
}
2020-04-10 17:32:16 -07:00
getNavLinks() {
const { intl: { formatMessage }, logo, account } = this.props;
2020-04-01 16:10:48 -07:00
let links = [];
if (logo) {
links.push(
2020-04-28 22:36:25 -07:00
<Link key='logo' className='tabs-bar__link--logo' to='/' data-preview-title-id='column.home'>
<img alt='Logo' src={logo} />
2020-04-01 16:10:48 -07:00
<FormattedMessage id='tabs_bar.home' defaultMessage='Home' />
2020-04-14 11:44:40 -07:00
</Link>);
2020-04-01 16:10:48 -07:00
}
links.push(
2020-04-10 18:16:34 -07:00
<NavLink key='home' className='tabs-bar__link' exact to='/' data-preview-title-id='column.home'>
<Icon id='home' />
2020-04-01 16:10:48 -07:00
<FormattedMessage id='tabs_bar.home' defaultMessage='Home' />
2020-04-14 11:44:40 -07:00
</NavLink>);
2020-04-10 17:32:16 -07:00
if (account) {
links.push(
<NavLink key='notifications' className='tabs-bar__link' to='/notifications' data-preview-title-id='column.notifications'>
<Icon id='bell' />
2020-04-10 17:32:16 -07:00
<NotificationsCounterIcon />
<FormattedMessage id='tabs_bar.notifications' defaultMessage='Notifications' />
2020-04-14 11:44:40 -07:00
</NavLink>);
2020-04-10 17:32:16 -07:00
}
links.push(
<NavLink key='search' className='tabs-bar__link tabs-bar__link--search' to='/search' data-preview-title-id='tabs_bar.search'>
<Icon id='search' />
2020-04-01 16:10:48 -07:00
<FormattedMessage id='tabs_bar.search' defaultMessage='Search' />
2020-04-10 17:32:16 -07:00
</NavLink>
2020-04-01 16:10:48 -07:00
);
return links.map((link) =>
React.cloneElement(link, {
'aria-label': formatMessage({
2020-04-14 11:44:40 -07:00
id: link.props['data-preview-title-id'],
}),
}));
2020-04-01 16:10:48 -07:00
}
2020-03-27 13:59:38 -07:00
handleScroll = throttle(() => {
if (this.window) {
const { pageYOffset, innerWidth } = this.window;
if (innerWidth > 895) return;
const { scrollTop } = this.documentElement;
let st = pageYOffset || scrollTop;
if (st > this.lastScrollTop){
let offset = st - this.lastScrollTop;
2020-04-14 11:44:40 -07:00
if (offset > 50) this.setState({ collapsed: true });
2020-03-27 13:59:38 -07:00
} else {
let offset = this.lastScrollTop - st;
2020-04-14 11:44:40 -07:00
if (offset > 50) this.setState({ collapsed: false });
2020-03-27 13:59:38 -07:00
}
this.lastScrollTop = st <= 0 ? 0 : st;
}
}, 150, {
trailing: true,
});
render() {
2020-04-14 13:45:38 -07:00
const { account, onOpenCompose, onOpenSidebar } = this.props;
2020-03-27 13:59:38 -07:00
const { collapsed } = this.state;
const classes = classNames('tabs-bar', {
'tabs-bar--collapsed': collapsed,
2020-04-14 11:44:40 -07:00
});
2020-03-27 13:59:38 -07:00
return (
<nav className={classes} ref={this.setRef}>
<div className='tabs-bar__container'>
<div className='tabs-bar__split tabs-bar__split--left'>
2020-04-10 17:32:16 -07:00
{this.getNavLinks()}
2020-03-27 13:59:38 -07:00
</div>
<div className='tabs-bar__split tabs-bar__split--right'>
<div className='tabs-bar__search-container'>
<SearchContainer openInRoute />
</div>
{ account &&
<div className='flex'>
<div className='tabs-bar__profile'>
<Avatar account={account} />
2020-04-14 11:44:40 -07:00
<button className='tabs-bar__sidebar-btn' onClick={onOpenSidebar} />
2020-03-27 13:59:38 -07:00
<ActionBar account={account} size={34} />
</div>
2020-05-21 15:49:00 -07:00
<button className='tabs-bar__button-compose button' onClick={onOpenCompose} aria-label='Post'>
<span>Post</span>
2020-03-27 13:59:38 -07:00
</button>
</div>
}
{
!account &&
<div className='flex'>
2020-04-10 17:32:16 -07:00
<Link className='tabs-bar__button button' to='/auth/sign_in'>
2020-03-27 13:59:38 -07:00
<FormattedMessage id='account.login' defaultMessage='Log In' />
2020-04-10 17:32:16 -07:00
</Link>
<Link className='tabs-bar__button button button-alternative-2' to='/auth/sign_up'>
2020-03-27 13:59:38 -07:00
<FormattedMessage id='account.register' defaultMessage='Sign up' />
2020-04-10 17:32:16 -07:00
</Link>
2020-03-27 13:59:38 -07:00
</div>
}
</div>
</div>
</nav>
);
}
2020-04-14 11:44:40 -07:00
2020-03-27 13:59:38 -07:00
}
const mapStateToProps = state => {
const me = state.get('me');
2020-03-27 13:59:38 -07:00
return {
account: state.getIn(['accounts', me]),
2020-04-01 15:15:29 -07:00
logo: state.getIn(['soapbox', 'logo']),
2020-03-27 13:59:38 -07:00
};
};
const mapDispatchToProps = (dispatch) => ({
onOpenCompose() {
dispatch(openModal('COMPOSE'));
},
onOpenSidebar() {
dispatch(openSidebar());
},
});
export default injectIntl(
connect(mapStateToProps, mapDispatchToProps, null, { forwardRef: true }
2020-04-14 11:44:40 -07:00
)(TabsBar));