|
|
@ -8,6 +8,8 @@ import PropTypes from 'prop-types';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
import { me } from '../../initial_state';
|
|
|
|
import { me } from '../../initial_state';
|
|
|
|
|
|
|
|
import { fetchFollowRequests } from '../../actions/accounts';
|
|
|
|
|
|
|
|
import { List as ImmutableList } from 'immutable';
|
|
|
|
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
const messages = defineMessages({
|
|
|
|
heading: { id: 'getting_started.heading', defaultMessage: 'Getting started' },
|
|
|
|
heading: { id: 'getting_started.heading', defaultMessage: 'Getting started' },
|
|
|
@ -32,9 +34,25 @@ const messages = defineMessages({
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
myAccount: state.getIn(['accounts', me]),
|
|
|
|
myAccount: state.getIn(['accounts', me]),
|
|
|
|
columns: state.getIn(['settings', 'columns']),
|
|
|
|
columns: state.getIn(['settings', 'columns']),
|
|
|
|
|
|
|
|
unreadFollowRequests: state.getIn(['user_lists', 'follow_requests', 'items'], ImmutableList()).size,
|
|
|
|
|
|
|
|
unreadNotifications: state.getIn(['notifications', 'unread']),
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
@connect(mapStateToProps)
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
|
|
|
|
fetchFollowRequests: () => dispatch(fetchFollowRequests()),
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const badgeDisplay = (number, limit) => {
|
|
|
|
|
|
|
|
if (number === 0) {
|
|
|
|
|
|
|
|
return undefined;
|
|
|
|
|
|
|
|
} else if (limit && number >= limit) {
|
|
|
|
|
|
|
|
return `${limit}+`;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
return number;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@connect(mapStateToProps, mapDispatchToProps)
|
|
|
|
@injectIntl
|
|
|
|
@injectIntl
|
|
|
|
export default class GettingStarted extends ImmutablePureComponent {
|
|
|
|
export default class GettingStarted extends ImmutablePureComponent {
|
|
|
|
|
|
|
|
|
|
|
@ -43,10 +61,21 @@ export default class GettingStarted extends ImmutablePureComponent {
|
|
|
|
myAccount: ImmutablePropTypes.map.isRequired,
|
|
|
|
myAccount: ImmutablePropTypes.map.isRequired,
|
|
|
|
columns: ImmutablePropTypes.list,
|
|
|
|
columns: ImmutablePropTypes.list,
|
|
|
|
multiColumn: PropTypes.bool,
|
|
|
|
multiColumn: PropTypes.bool,
|
|
|
|
|
|
|
|
fetchFollowRequests: PropTypes.func.isRequired,
|
|
|
|
|
|
|
|
unreadFollowRequests: PropTypes.number,
|
|
|
|
|
|
|
|
unreadNotifications: PropTypes.number,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
componentDidMount () {
|
|
|
|
|
|
|
|
const { myAccount, fetchFollowRequests } = this.props;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (myAccount.get('locked')) {
|
|
|
|
|
|
|
|
fetchFollowRequests();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
render () {
|
|
|
|
render () {
|
|
|
|
const { intl, myAccount, columns, multiColumn } = this.props;
|
|
|
|
const { intl, myAccount, columns, multiColumn, unreadFollowRequests, unreadNotifications } = this.props;
|
|
|
|
|
|
|
|
|
|
|
|
const navItems = [];
|
|
|
|
const navItems = [];
|
|
|
|
|
|
|
|
|
|
|
@ -56,7 +85,7 @@ export default class GettingStarted extends ImmutablePureComponent {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!columns.find(item => item.get('id') === 'NOTIFICATIONS')) {
|
|
|
|
if (!columns.find(item => item.get('id') === 'NOTIFICATIONS')) {
|
|
|
|
navItems.push(<ColumnLink key='1' icon='bell' text={intl.formatMessage(messages.notifications)} to='/notifications' />);
|
|
|
|
navItems.push(<ColumnLink key='1' icon='bell' text={intl.formatMessage(messages.notifications)} badge={badgeDisplay(unreadNotifications)} to='/notifications' />);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!columns.find(item => item.get('id') === 'COMMUNITY')) {
|
|
|
|
if (!columns.find(item => item.get('id') === 'COMMUNITY')) {
|
|
|
@ -74,7 +103,7 @@ export default class GettingStarted extends ImmutablePureComponent {
|
|
|
|
);
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
if (myAccount.get('locked')) {
|
|
|
|
if (myAccount.get('locked')) {
|
|
|
|
navItems.push(<ColumnLink key='6' icon='users' text={intl.formatMessage(messages.follow_requests)} to='/follow_requests' />);
|
|
|
|
navItems.push(<ColumnLink key='6' icon='users' text={intl.formatMessage(messages.follow_requests)} badge={badgeDisplay(unreadFollowRequests, 40)} to='/follow_requests' />);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (multiColumn) {
|
|
|
|
if (multiColumn) {
|
|
|
|