2017-04-22 04:05:35 +10:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
|
|
|
|
|
|
|
import { Helmet } from 'react-helmet';
|
|
|
|
|
2017-04-15 09:23:49 +10:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2023-05-24 01:15:17 +10:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
|
2018-08-27 00:39:37 +10:00
|
|
|
import { debounce } from 'lodash';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
2017-04-15 09:23:49 +10:00
|
|
|
import { fetchMutes, expandMutes } from '../../actions/mutes';
|
2023-05-24 01:15:17 +10:00
|
|
|
import ColumnBackButtonSlim from '../../components/column_back_button_slim';
|
2023-06-14 03:26:25 +10:00
|
|
|
import { LoadingIndicator } from '../../components/loading_indicator';
|
2018-08-27 00:39:37 +10:00
|
|
|
import ScrollableList from '../../components/scrollable_list';
|
2023-05-24 01:15:17 +10:00
|
|
|
import AccountContainer from '../../containers/account_container';
|
|
|
|
import Column from '../ui/components/column';
|
2017-04-15 09:23:49 +10:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2017-05-21 01:31:47 +10:00
|
|
|
heading: { id: 'column.mutes', defaultMessage: 'Muted users' },
|
2017-04-15 09:23:49 +10:00
|
|
|
});
|
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
2017-05-21 01:31:47 +10:00
|
|
|
accountIds: state.getIn(['user_lists', 'mutes', 'items']),
|
2019-02-16 21:56:09 +11:00
|
|
|
hasMore: !!state.getIn(['user_lists', 'mutes', 'next']),
|
2020-04-12 21:38:00 +10:00
|
|
|
isLoading: state.getIn(['user_lists', 'mutes', 'isLoading'], true),
|
2017-04-15 09:23:49 +10:00
|
|
|
});
|
|
|
|
|
2018-09-15 01:59:48 +10:00
|
|
|
class Mutes extends ImmutablePureComponent {
|
2017-06-24 03:36:54 +10:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
params: PropTypes.object.isRequired,
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
2019-02-16 21:56:09 +11:00
|
|
|
hasMore: PropTypes.bool,
|
2020-04-12 21:38:00 +10:00
|
|
|
isLoading: PropTypes.bool,
|
2017-06-24 03:36:54 +10:00
|
|
|
accountIds: ImmutablePropTypes.list,
|
|
|
|
intl: PropTypes.object.isRequired,
|
2019-07-19 17:25:22 +10:00
|
|
|
multiColumn: PropTypes.bool,
|
2017-06-24 03:36:54 +10:00
|
|
|
};
|
2017-04-15 09:23:49 +10:00
|
|
|
|
2023-05-10 17:05:32 +10:00
|
|
|
UNSAFE_componentWillMount () {
|
2017-04-15 09:23:49 +10:00
|
|
|
this.props.dispatch(fetchMutes());
|
2017-04-22 04:05:35 +10:00
|
|
|
}
|
2017-04-15 09:23:49 +10:00
|
|
|
|
2018-08-27 00:39:37 +10:00
|
|
|
handleLoadMore = debounce(() => {
|
|
|
|
this.props.dispatch(expandMutes());
|
|
|
|
}, 300, { leading: true });
|
2017-04-15 09:23:49 +10:00
|
|
|
|
|
|
|
render () {
|
2021-07-13 23:45:17 +10:00
|
|
|
const { intl, hasMore, accountIds, multiColumn, isLoading } = this.props;
|
2017-04-15 09:23:49 +10:00
|
|
|
|
|
|
|
if (!accountIds) {
|
|
|
|
return (
|
|
|
|
<Column>
|
|
|
|
<LoadingIndicator />
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-08-27 00:39:37 +10:00
|
|
|
const emptyMessage = <FormattedMessage id='empty_column.mutes' defaultMessage="You haven't muted any users yet." />;
|
|
|
|
|
2017-04-15 09:23:49 +10:00
|
|
|
return (
|
2019-08-02 03:17:17 +10:00
|
|
|
<Column bindToDocument={!multiColumn} icon='volume-off' heading={intl.formatMessage(messages.heading)}>
|
2017-04-15 09:23:49 +10:00
|
|
|
<ColumnBackButtonSlim />
|
2018-08-27 00:39:37 +10:00
|
|
|
<ScrollableList
|
|
|
|
scrollKey='mutes'
|
|
|
|
onLoadMore={this.handleLoadMore}
|
2019-02-16 21:56:09 +11:00
|
|
|
hasMore={hasMore}
|
2020-04-12 21:38:00 +10:00
|
|
|
isLoading={isLoading}
|
2018-08-27 00:39:37 +10:00
|
|
|
emptyMessage={emptyMessage}
|
2019-07-19 17:25:22 +10:00
|
|
|
bindToDocument={!multiColumn}
|
2018-08-27 00:39:37 +10:00
|
|
|
>
|
|
|
|
{accountIds.map(id =>
|
2022-05-10 07:20:19 +10:00
|
|
|
<AccountContainer key={id} id={id} defaultAction='mute' />,
|
2018-08-27 00:39:37 +10:00
|
|
|
)}
|
|
|
|
</ScrollableList>
|
2022-10-20 23:35:29 +11:00
|
|
|
|
|
|
|
<Helmet>
|
|
|
|
<meta name='robots' content='noindex' />
|
|
|
|
</Helmet>
|
2017-04-15 09:23:49 +10:00
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
2017-04-23 12:26:55 +10:00
|
|
|
|
2017-04-22 04:05:35 +10:00
|
|
|
}
|
2023-03-24 13:17:53 +11:00
|
|
|
|
|
|
|
export default connect(mapStateToProps)(injectIntl(Mutes));
|