2017-02-05 18:18:11 +00:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2018-08-26 14:39:37 +00:00
|
|
|
import { debounce } from 'lodash';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-12-04 07:26:40 +00:00
|
|
|
import LoadingIndicator from 'flavours/glitch/components/loading_indicator';
|
2018-08-26 14:39:37 +00:00
|
|
|
import ScrollableList from '../../components/scrollable_list';
|
2017-12-04 07:26:40 +00:00
|
|
|
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 { fetchBlocks, expandBlocks } from 'flavours/glitch/actions/blocks';
|
2018-08-26 14:39:37 +00:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
2017-05-03 00:04:16 +00:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-02-05 18:18:11 +00:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2017-05-20 15:31:47 +00:00
|
|
|
heading: { id: 'column.blocks', defaultMessage: 'Blocked users' },
|
2017-02-05 18:18:11 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
2017-05-20 15:31:47 +00:00
|
|
|
accountIds: state.getIn(['user_lists', 'blocks', 'items']),
|
2019-02-16 10:56:09 +00:00
|
|
|
hasMore: !!state.getIn(['user_lists', 'blocks', 'next']),
|
2020-04-12 11:38:00 +00:00
|
|
|
isLoading: state.getIn(['user_lists', 'blocks', 'isLoading'], true),
|
2017-02-05 18:18:11 +00:00
|
|
|
});
|
|
|
|
|
2019-09-09 13:16:08 +00:00
|
|
|
class Blocks extends ImmutablePureComponent {
|
2017-02-05 18:18:11 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
params: PropTypes.object.isRequired,
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
|
|
|
accountIds: ImmutablePropTypes.list,
|
2019-02-16 10:56:09 +00:00
|
|
|
hasMore: PropTypes.bool,
|
2020-04-12 11:38:00 +00:00
|
|
|
isLoading: PropTypes.bool,
|
2017-05-20 15:31:47 +00:00
|
|
|
intl: PropTypes.object.isRequired,
|
2019-07-19 07:25:22 +00:00
|
|
|
multiColumn: PropTypes.bool,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
2023-05-10 07:05:32 +00:00
|
|
|
UNSAFE_componentWillMount () {
|
2017-02-05 18:18:11 +00:00
|
|
|
this.props.dispatch(fetchBlocks());
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-02-05 18:18:11 +00:00
|
|
|
|
2018-08-26 14:39:37 +00:00
|
|
|
handleLoadMore = debounce(() => {
|
|
|
|
this.props.dispatch(expandBlocks());
|
|
|
|
}, 300, { leading: true });
|
2017-02-05 18:18:11 +00:00
|
|
|
|
|
|
|
render () {
|
2020-04-12 11:38:00 +00:00
|
|
|
const { intl, accountIds, hasMore, multiColumn, isLoading } = this.props;
|
2017-02-05 18:18:11 +00:00
|
|
|
|
|
|
|
if (!accountIds) {
|
|
|
|
return (
|
|
|
|
<Column>
|
|
|
|
<LoadingIndicator />
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-08-26 14:39:37 +00:00
|
|
|
const emptyMessage = <FormattedMessage id='empty_column.blocks' defaultMessage="You haven't blocked any users yet." />;
|
|
|
|
|
2017-02-05 18:18:11 +00:00
|
|
|
return (
|
2019-08-01 17:17:17 +00:00
|
|
|
<Column name='blocks' bindToDocument={!multiColumn} icon='ban' heading={intl.formatMessage(messages.heading)}>
|
2017-02-05 18:18:11 +00:00
|
|
|
<ColumnBackButtonSlim />
|
2018-08-26 14:39:37 +00:00
|
|
|
<ScrollableList
|
|
|
|
scrollKey='blocks'
|
|
|
|
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='block' />,
|
2018-08-26 14:39:37 +00:00
|
|
|
)}
|
|
|
|
</ScrollableList>
|
2017-02-05 18:18:11 +00:00
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
2017-05-20 15:31:47 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2023-03-24 22:15:25 +00:00
|
|
|
|
|
|
|
export default connect(mapStateToProps)(injectIntl(Blocks));
|