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