2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-14 19:23:49 -04:00
|
|
|
import { connect } from 'react-redux';
|
2018-08-26 10:39:37 -04:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
2018-07-29 10:52:06 -04:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-04-14 19:23:49 -04:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2018-08-26 10:39:37 -04:00
|
|
|
import { debounce } from 'lodash';
|
2017-04-14 19:23:49 -04:00
|
|
|
import LoadingIndicator from '../../components/loading_indicator';
|
|
|
|
import Column from '../ui/components/column';
|
|
|
|
import ColumnBackButtonSlim from '../../components/column_back_button_slim';
|
|
|
|
import AccountContainer from '../../containers/account_container';
|
|
|
|
import { fetchMutes, expandMutes } from '../../actions/mutes';
|
2018-08-26 10:39:37 -04:00
|
|
|
import ScrollableList from '../../components/scrollable_list';
|
2017-04-14 19:23:49 -04:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2017-05-20 11:31:47 -04:00
|
|
|
heading: { id: 'column.mutes', defaultMessage: 'Muted users' },
|
2017-04-14 19:23:49 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
2017-05-20 11:31:47 -04:00
|
|
|
accountIds: state.getIn(['user_lists', 'mutes', 'items']),
|
2019-02-16 05:56:09 -05:00
|
|
|
hasMore: !!state.getIn(['user_lists', 'mutes', 'next']),
|
2017-04-14 19:23:49 -04:00
|
|
|
});
|
|
|
|
|
2018-09-14 11:59:48 -04:00
|
|
|
export default @connect(mapStateToProps)
|
2017-06-23 13:36:54 -04:00
|
|
|
@injectIntl
|
2018-09-14 11:59:48 -04:00
|
|
|
class Mutes extends ImmutablePureComponent {
|
2017-06-23 13:36:54 -04:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
params: PropTypes.object.isRequired,
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
2018-07-29 10:52:06 -04:00
|
|
|
shouldUpdateScroll: PropTypes.func,
|
2019-02-16 05:56:09 -05:00
|
|
|
hasMore: PropTypes.bool,
|
2017-06-23 13:36:54 -04:00
|
|
|
accountIds: ImmutablePropTypes.list,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
};
|
2017-04-14 19:23:49 -04:00
|
|
|
|
|
|
|
componentWillMount () {
|
|
|
|
this.props.dispatch(fetchMutes());
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-04-14 19:23:49 -04:00
|
|
|
|
2018-08-26 10:39:37 -04:00
|
|
|
handleLoadMore = debounce(() => {
|
|
|
|
this.props.dispatch(expandMutes());
|
|
|
|
}, 300, { leading: true });
|
2017-04-14 19:23:49 -04:00
|
|
|
|
|
|
|
render () {
|
2019-02-16 05:56:09 -05:00
|
|
|
const { intl, shouldUpdateScroll, hasMore, accountIds } = this.props;
|
2017-04-14 19:23:49 -04:00
|
|
|
|
|
|
|
if (!accountIds) {
|
|
|
|
return (
|
|
|
|
<Column>
|
|
|
|
<LoadingIndicator />
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-08-26 10:39:37 -04:00
|
|
|
const emptyMessage = <FormattedMessage id='empty_column.mutes' defaultMessage="You haven't muted any users yet." />;
|
|
|
|
|
2017-04-14 19:23:49 -04:00
|
|
|
return (
|
2017-04-18 09:57:16 -04:00
|
|
|
<Column icon='volume-off' heading={intl.formatMessage(messages.heading)}>
|
2017-04-14 19:23:49 -04:00
|
|
|
<ColumnBackButtonSlim />
|
2018-08-26 10:39:37 -04:00
|
|
|
<ScrollableList
|
|
|
|
scrollKey='mutes'
|
|
|
|
onLoadMore={this.handleLoadMore}
|
2019-02-16 05:56:09 -05:00
|
|
|
hasMore={hasMore}
|
2018-08-26 10:39:37 -04:00
|
|
|
shouldUpdateScroll={shouldUpdateScroll}
|
|
|
|
emptyMessage={emptyMessage}
|
|
|
|
>
|
|
|
|
{accountIds.map(id =>
|
|
|
|
<AccountContainer key={id} id={id} />
|
|
|
|
)}
|
|
|
|
</ScrollableList>
|
2017-04-14 19:23:49 -04:00
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
2017-04-22 22:26:55 -04:00
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|