5c814b29e1
Closes #896 Squashed commit of the following: commit 776de2ae0a62823b8968cff79a9fa7ba350d7f1c Author: Ildar Kamalov <i.kamalov@adguard.com> Date: Thu Jan 30 11:13:41 2020 +0300 - client: fix normalizeTextarea and blocking button commit 399e6bc3893093632b09247eaf6493521a668c84 Author: Ildar Kamalov <i.kamalov@adguard.com> Date: Wed Jan 29 17:19:50 2020 +0300 + client: handle client block and unblock from the top clients table
27 lines
700 B
JavaScript
27 lines
700 B
JavaScript
import { connect } from 'react-redux';
|
|
import { toggleProtection, getClients } from '../actions';
|
|
import { getStats, getStatsConfig, setStatsConfig } from '../actions/stats';
|
|
import { toggleClientBlock, getAccessList } from '../actions/access';
|
|
import Dashboard from '../components/Dashboard';
|
|
|
|
const mapStateToProps = (state) => {
|
|
const { dashboard, stats, access } = state;
|
|
const props = { dashboard, stats, access };
|
|
return props;
|
|
};
|
|
|
|
const mapDispatchToProps = {
|
|
toggleProtection,
|
|
getClients,
|
|
getStats,
|
|
getStatsConfig,
|
|
setStatsConfig,
|
|
toggleClientBlock,
|
|
getAccessList,
|
|
};
|
|
|
|
export default connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps,
|
|
)(Dashboard);
|