2020-03-27 13:59:38 -07:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { fetchFollowRequests } from 'gabsocial/actions/accounts';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { NavLink, withRouter } from 'react-router-dom';
|
|
|
|
import IconWithBadge from 'gabsocial/components/icon_with_badge';
|
|
|
|
import { List as ImmutableList } from 'immutable';
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
2020-04-01 19:20:47 -07:00
|
|
|
const mapStateToProps = state => {
|
|
|
|
const me = state.get('me');
|
|
|
|
return {
|
|
|
|
locked: state.getIn(['accounts', me, 'locked']),
|
|
|
|
count: state.getIn(['user_lists', 'follow_requests', 'items'], ImmutableList()).size,
|
|
|
|
}
|
|
|
|
};
|
2020-03-27 13:59:38 -07:00
|
|
|
|
|
|
|
export default @withRouter
|
|
|
|
@connect(mapStateToProps)
|
|
|
|
class FollowRequestsNavLink extends React.Component {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
|
|
|
locked: PropTypes.bool,
|
|
|
|
count: PropTypes.number.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
componentDidMount () {
|
|
|
|
const { dispatch, locked } = this.props;
|
|
|
|
|
|
|
|
if (locked) {
|
|
|
|
dispatch(fetchFollowRequests());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { locked, count } = this.props;
|
|
|
|
|
|
|
|
if (!locked || count === 0) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return <NavLink className='column-link column-link--transparent' to='/follow_requests'><IconWithBadge className='column-link__icon' id='user-plus' count={count} /><FormattedMessage id='navigation_bar.follow_requests' defaultMessage='Follow requests' /></NavLink>;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|