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';
|
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';
|
|
|
|
import LoadingIndicator from '../../components/loading_indicator';
|
|
|
|
import { ScrollContainer } from 'react-router-scroll';
|
|
|
|
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';
|
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2017-05-03 00:04:16 +00:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
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']),
|
2017-04-14 23:23:49 +00:00
|
|
|
});
|
|
|
|
|
2017-05-03 00:04:16 +00:00
|
|
|
class Mutes extends ImmutablePureComponent {
|
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
|
|
|
|
2017-05-19 23:28:25 +00:00
|
|
|
handleScroll = (e) => {
|
2017-04-14 23:23:49 +00:00
|
|
|
const { scrollTop, scrollHeight, clientHeight } = e.target;
|
|
|
|
|
|
|
|
if (scrollTop === scrollHeight - clientHeight) {
|
|
|
|
this.props.dispatch(expandMutes());
|
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-04-14 23:23:49 +00:00
|
|
|
|
|
|
|
render () {
|
|
|
|
const { intl, accountIds } = this.props;
|
|
|
|
|
|
|
|
if (!accountIds) {
|
|
|
|
return (
|
|
|
|
<Column>
|
|
|
|
<LoadingIndicator />
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2017-04-18 13:57:16 +00:00
|
|
|
<Column icon='volume-off' heading={intl.formatMessage(messages.heading)}>
|
2017-04-14 23:23:49 +00:00
|
|
|
<ColumnBackButtonSlim />
|
|
|
|
<ScrollContainer scrollKey='mutes'>
|
2017-04-23 02:26:55 +00:00
|
|
|
<div className='scrollable mutes' onScroll={this.handleScroll}>
|
2017-04-14 23:23:49 +00:00
|
|
|
{accountIds.map(id =>
|
|
|
|
<AccountContainer key={id} id={id} />
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</ScrollContainer>
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
2017-04-23 02:26:55 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Mutes.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-04-21 18:05:35 +00:00
|
|
|
};
|
2017-04-14 23:23:49 +00:00
|
|
|
|
|
|
|
export default connect(mapStateToProps)(injectIntl(Mutes));
|