2018-03-30 10:38:00 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { connect } from 'react-redux';
|
2018-08-26 14:39:37 +00:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
2018-07-29 14:52:06 +00:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2018-03-30 10:38:00 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2018-07-29 14:52:06 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import { debounce } from 'lodash';
|
2018-03-30 10:38:00 +00:00
|
|
|
import LoadingIndicator from '../../components/loading_indicator';
|
|
|
|
import Column from '../ui/components/column';
|
|
|
|
import ColumnBackButtonSlim from '../../components/column_back_button_slim';
|
|
|
|
import DomainContainer from '../../containers/domain_container';
|
|
|
|
import { fetchDomainBlocks, expandDomainBlocks } from '../../actions/domain_blocks';
|
|
|
|
import ScrollableList from '../../components/scrollable_list';
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
heading: { id: 'column.domain_blocks', defaultMessage: 'Hidden domains' },
|
|
|
|
unblockDomain: { id: 'account.unblock_domain', defaultMessage: 'Unhide {domain}' },
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
domains: state.getIn(['domain_lists', 'blocks', 'items']),
|
2019-02-16 10:56:09 +00:00
|
|
|
hasMore: !!state.getIn(['domain_lists', 'blocks', 'next']),
|
2018-03-30 10:38:00 +00:00
|
|
|
});
|
|
|
|
|
2018-09-14 15:59:48 +00:00
|
|
|
export default @connect(mapStateToProps)
|
2018-03-30 10:38:00 +00:00
|
|
|
@injectIntl
|
2018-09-14 15:59:48 +00:00
|
|
|
class Blocks extends ImmutablePureComponent {
|
2018-03-30 10:38:00 +00:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
params: PropTypes.object.isRequired,
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
2018-07-29 14:52:06 +00:00
|
|
|
shouldUpdateScroll: PropTypes.func,
|
2019-02-16 10:56:09 +00:00
|
|
|
hasMore: PropTypes.bool,
|
2018-05-30 16:41:47 +00:00
|
|
|
domains: ImmutablePropTypes.orderedSet,
|
2018-03-30 10:38:00 +00:00
|
|
|
intl: PropTypes.object.isRequired,
|
2019-07-19 07:25:22 +00:00
|
|
|
multiColumn: PropTypes.bool,
|
2018-03-30 10:38:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
componentWillMount () {
|
|
|
|
this.props.dispatch(fetchDomainBlocks());
|
|
|
|
}
|
|
|
|
|
|
|
|
handleLoadMore = debounce(() => {
|
|
|
|
this.props.dispatch(expandDomainBlocks());
|
|
|
|
}, 300, { leading: true });
|
|
|
|
|
|
|
|
render () {
|
2019-07-19 07:25:22 +00:00
|
|
|
const { intl, domains, shouldUpdateScroll, hasMore, multiColumn } = this.props;
|
2018-03-30 10:38:00 +00:00
|
|
|
|
|
|
|
if (!domains) {
|
|
|
|
return (
|
|
|
|
<Column>
|
|
|
|
<LoadingIndicator />
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-08-26 14:39:37 +00:00
|
|
|
const emptyMessage = <FormattedMessage id='empty_column.domain_blocks' defaultMessage='There are no hidden domains yet.' />;
|
|
|
|
|
2018-03-30 10:38:00 +00:00
|
|
|
return (
|
2019-08-01 17:17:17 +00:00
|
|
|
<Column bindToDocument={!multiColumn} icon='minus-circle' heading={intl.formatMessage(messages.heading)}>
|
2018-03-30 10:38:00 +00:00
|
|
|
<ColumnBackButtonSlim />
|
2018-08-26 14:39:37 +00:00
|
|
|
<ScrollableList
|
|
|
|
scrollKey='domain_blocks'
|
|
|
|
onLoadMore={this.handleLoadMore}
|
2019-02-16 10:56:09 +00:00
|
|
|
hasMore={hasMore}
|
2018-08-26 14:39:37 +00:00
|
|
|
shouldUpdateScroll={shouldUpdateScroll}
|
|
|
|
emptyMessage={emptyMessage}
|
2019-07-19 07:25:22 +00:00
|
|
|
bindToDocument={!multiColumn}
|
2018-08-26 14:39:37 +00:00
|
|
|
>
|
2018-03-30 10:38:00 +00:00
|
|
|
{domains.map(domain =>
|
|
|
|
<DomainContainer key={domain} domain={domain} />
|
|
|
|
)}
|
|
|
|
</ScrollableList>
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|