2018-03-04 20:46:27 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2018-08-26 14:39:37 +00:00
|
|
|
import { debounce } from 'lodash';
|
2018-03-04 20:46:27 +00:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
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';
|
2018-08-26 14:39:37 +00:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
2018-03-04 20:46:27 +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';
|
2018-03-04 20:46:27 +00:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2020-03-09 08:13:21 +00:00
|
|
|
heading: { id: 'column.domain_blocks', defaultMessage: 'Blocked domains' },
|
|
|
|
unblockDomain: { id: 'account.unblock_domain', defaultMessage: 'Unblock domain {domain}' },
|
2018-03-04 20:46:27 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
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-04 20:46:27 +00:00
|
|
|
});
|
|
|
|
|
2019-09-09 13:16:08 +00:00
|
|
|
class Blocks extends ImmutablePureComponent {
|
2018-03-04 20:46:27 +00:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
params: PropTypes.object.isRequired,
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
2019-02-16 10:56:09 +00:00
|
|
|
hasMore: PropTypes.bool,
|
2018-03-04 20:46:27 +00:00
|
|
|
domains: ImmutablePropTypes.list,
|
|
|
|
intl: PropTypes.object.isRequired,
|
2019-07-19 07:25:22 +00:00
|
|
|
multiColumn: PropTypes.bool,
|
2018-03-04 20:46:27 +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, hasMore, multiColumn } = this.props;
|
2018-03-04 20:46:27 +00:00
|
|
|
|
|
|
|
if (!domains) {
|
|
|
|
return (
|
|
|
|
<Column>
|
|
|
|
<LoadingIndicator />
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-03-09 08:13:21 +00:00
|
|
|
const emptyMessage = <FormattedMessage id='empty_column.domain_blocks' defaultMessage='There are no blocked domains yet.' />;
|
2018-08-26 14:39:37 +00:00
|
|
|
|
2018-03-04 20:46:27 +00:00
|
|
|
return (
|
2019-08-01 17:17:17 +00:00
|
|
|
<Column bindToDocument={!multiColumn} icon='minus-circle' heading={intl.formatMessage(messages.heading)}>
|
2018-03-04 20:46:27 +00:00
|
|
|
<ColumnBackButtonSlim />
|
2022-10-20 12:35:29 +00:00
|
|
|
|
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
|
|
|
emptyMessage={emptyMessage}
|
2019-07-19 07:25:22 +00:00
|
|
|
bindToDocument={!multiColumn}
|
2018-08-26 14:39:37 +00:00
|
|
|
>
|
2018-03-04 20:46:27 +00:00
|
|
|
{domains.map(domain =>
|
2020-03-08 15:02:36 +00:00
|
|
|
<DomainContainer key={domain} domain={domain} />,
|
2018-03-04 20:46:27 +00:00
|
|
|
)}
|
|
|
|
</ScrollableList>
|
2022-10-20 12:35:29 +00:00
|
|
|
|
|
|
|
<Helmet>
|
|
|
|
<meta name='robots' content='noindex' />
|
|
|
|
</Helmet>
|
2018-03-04 20:46:27 +00:00
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-03-24 22:15:25 +00:00
|
|
|
|
|
|
|
export default connect(mapStateToProps)(injectIntl(Blocks));
|