2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-02-05 18:18:11 +00:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
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';
|
2017-10-31 21:58:38 +00:00
|
|
|
import { ScrollContainer } from 'react-router-scroll-4';
|
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';
|
2017-02-05 18:18:11 +00:00
|
|
|
import { defineMessages, injectIntl } 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']),
|
2017-02-05 18:18:11 +00:00
|
|
|
});
|
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
@connect(mapStateToProps)
|
|
|
|
@injectIntl
|
|
|
|
export default 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,
|
2017-05-20 15:31:47 +00:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
2017-02-05 18:18:11 +00:00
|
|
|
componentWillMount () {
|
|
|
|
this.props.dispatch(fetchBlocks());
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-02-05 18:18:11 +00:00
|
|
|
|
2017-05-19 23:28:25 +00:00
|
|
|
handleScroll = (e) => {
|
2017-02-05 18:18:11 +00:00
|
|
|
const { scrollTop, scrollHeight, clientHeight } = e.target;
|
|
|
|
|
|
|
|
if (scrollTop === scrollHeight - clientHeight) {
|
|
|
|
this.props.dispatch(expandBlocks());
|
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-02-05 18:18:11 +00:00
|
|
|
|
2018-07-27 15:59:52 +00:00
|
|
|
shouldUpdateScroll = (prevRouterProps, { location }) => {
|
2018-10-06 16:53:49 +00:00
|
|
|
if ((((prevRouterProps || {}).location || {}).state || {}).mastodonModalOpen) return false;
|
|
|
|
return !(location.state && location.state.mastodonModalOpen);
|
2018-07-27 15:59:52 +00:00
|
|
|
}
|
|
|
|
|
2017-02-05 18:18:11 +00:00
|
|
|
render () {
|
|
|
|
const { intl, accountIds } = this.props;
|
|
|
|
|
|
|
|
if (!accountIds) {
|
|
|
|
return (
|
|
|
|
<Column>
|
|
|
|
<LoadingIndicator />
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2017-08-06 19:27:47 +00:00
|
|
|
<Column name='blocks' icon='ban' heading={intl.formatMessage(messages.heading)}>
|
2017-02-05 18:18:11 +00:00
|
|
|
<ColumnBackButtonSlim />
|
2018-07-27 15:59:52 +00:00
|
|
|
<ScrollContainer scrollKey='blocks' shouldUpdateScroll={this.shouldUpdateScroll}>
|
2017-02-05 18:18:11 +00:00
|
|
|
<div className='scrollable' onScroll={this.handleScroll}>
|
|
|
|
{accountIds.map(id =>
|
|
|
|
<AccountContainer key={id} id={id} />
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</ScrollContainer>
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
2017-05-20 15:31:47 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|