Close #2050 Squashed commit of the following: commit 3bc6a409034989b914306e1c33da274730ca623e Author: ArtemBaskal <a.baskal@adguard.com> Date: Fri Sep 4 20:58:09 2020 +0300 Change dashboard block confirm message commit d4d47c3557e2166ee04db25a71b782bfbfe3b865 Merge: e8865827fc43e2acAuthor: ArtemBaskal <a.baskal@adguard.com> Date: Fri Sep 4 14:56:34 2020 +0300 Merge branch 'master' into feature/2050 commit e8865827879955b1ef62c9ff85798d07bfa4627d Author: ArtemBaskal <a.baskal@adguard.com> Date: Fri Sep 4 13:46:10 2020 +0300 Rename classname commit 648151c54e493c63622e014cb9cd1cb450f25478 Author: ArtemBaskal <a.baskal@adguard.com> Date: Thu Sep 3 19:09:21 2020 +0300 Decrease arrow size commit 4feadab707c613d31225dfa9443a9a836db37ba1 Author: ArtemBaskal <a.baskal@adguard.com> Date: Thu Sep 3 18:27:41 2020 +0300 Rename button class commit c3919d8ae8d1431657ce61afad2c20e5806f279a Author: ArtemBaskal <a.baskal@adguard.com> Date: Thu Sep 3 10:35:15 2020 +0300 Review changes: extract variables commit 0ac809584c391e41a1749a844bc1075e05a92345 Author: ArtemBaskal <a.baskal@adguard.com> Date: Thu Sep 3 10:13:57 2020 +0300 Display dashboard button on hover commit 1395287c2383e2248a2a5d39451403bd73141e55 Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed Sep 2 21:24:04 2020 +0300 Do not hide button on option open commit 947f254b7aea26f289b66b66fac46dba11ea3952 Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed Sep 2 21:20:19 2020 +0300 Add buttons for mobile screen commit df05697f87163a2b716d82653884e631f2fa6cf3 Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed Sep 2 20:18:20 2020 +0300 Change dashboard button styles commit 16655f2d6b0d79d1fa027ec2310bb0268fffaf6a Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed Sep 2 20:04:28 2020 +0300 Change button styles, rename button options commit 1ac22e875d8b26c16830bf6edb85dadcc19ff287 Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed Sep 2 19:30:16 2020 +0300 Review changes commit c590119875439d85927bdd334658e003bc1f0563 Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed Sep 2 17:58:08 2020 +0300 Remove default query logs form values commit 141329563417f5337f5659d5500f4cbe16d64bd2 Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed Sep 2 17:41:23 2020 +0300 Update blocking buttons options logic, fix button svg size commit 9e4f39aa6cb8e134d80d496b8a248b2fe6aceb99 Author: ArtemBaskal <a.baskal@adguard.com> Date: Wed Sep 2 16:30:48 2020 +0300 Fix button position commit 8aabff7daccb87ae02c2302e62e296b3cfc17608 Merge: 415a03346b614295Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue Sep 1 17:29:55 2020 +0300 Merge branch 'master' into feature/2050 commit 415a0334561733d92a0f7badd68101ef554dc689 Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue Sep 1 17:05:51 2020 +0300 Add blocking options commit bc6aed92b6e12f27c2604501275b53bb8159d5bc Merge: 0de4fb3a 40b74522 Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue Sep 1 15:49:06 2020 +0300 Merge branch 'feature/infinite_scroll_query_logs' into feature/2050 commit 40b745225112cf8d664220ed8f484b0aa16e997c Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue Sep 1 15:46:27 2020 +0300 Remove dynamic translation of toasts commit 0de4fb3a4cd785c6b52e860e204c6e13d356b178 Merge: 1ab14471 f08fa7b8 Author: ArtemBaskal <a.baskal@adguard.com> Date: Tue Sep 1 15:07:30 2020 +0300 Merge branch 'feature/infinite_scroll_query_logs' into feature/2050 ... and 51 more commits
155 lines
5.0 KiB
JavaScript
155 lines
5.0 KiB
JavaScript
import React from 'react';
|
|
import ReactTable from 'react-table';
|
|
import PropTypes from 'prop-types';
|
|
import { Trans, useTranslation } from 'react-i18next';
|
|
|
|
import { shallowEqual, useDispatch, useSelector } from 'react-redux';
|
|
import classNames from 'classnames';
|
|
import Card from '../ui/Card';
|
|
import Cell from '../ui/Cell';
|
|
|
|
import { getPercent, getIpMatchListStatus, sortIp } from '../../helpers/helpers';
|
|
import { BLOCK_ACTIONS, IP_MATCH_LIST_STATUS, STATUS_COLORS } from '../../helpers/constants';
|
|
import { toggleClientBlock } from '../../actions/access';
|
|
import { renderFormattedClientCell } from '../../helpers/renderFormattedClientCell';
|
|
|
|
const getClientsPercentColor = (percent) => {
|
|
if (percent > 50) {
|
|
return STATUS_COLORS.green;
|
|
}
|
|
if (percent > 10) {
|
|
return STATUS_COLORS.yellow;
|
|
}
|
|
return STATUS_COLORS.red;
|
|
};
|
|
|
|
const CountCell = (row) => {
|
|
const { value, original: { ip } } = row;
|
|
const numDnsQueries = useSelector((state) => state.stats.numDnsQueries, shallowEqual);
|
|
|
|
const percent = getPercent(numDnsQueries, value);
|
|
const percentColor = getClientsPercentColor(percent);
|
|
|
|
return <Cell value={value} percent={percent} color={percentColor} search={ip} />;
|
|
};
|
|
|
|
const renderBlockingButton = (ip) => {
|
|
const dispatch = useDispatch();
|
|
const { t } = useTranslation();
|
|
const processingSet = useSelector((state) => state.access.processingSet);
|
|
const disallowed_clients = useSelector(
|
|
(state) => state.access.disallowed_clients, shallowEqual,
|
|
);
|
|
|
|
const ipMatchListStatus = getIpMatchListStatus(ip, disallowed_clients);
|
|
|
|
if (ipMatchListStatus === IP_MATCH_LIST_STATUS.CIDR) {
|
|
return null;
|
|
}
|
|
|
|
const isNotFound = ipMatchListStatus === IP_MATCH_LIST_STATUS.NOT_FOUND;
|
|
const type = isNotFound ? BLOCK_ACTIONS.BLOCK : BLOCK_ACTIONS.UNBLOCK;
|
|
const text = type;
|
|
|
|
const buttonClass = classNames('button-action button-action--main', {
|
|
'button-action--unblock': !isNotFound,
|
|
});
|
|
|
|
const toggleClientStatus = (type, ip) => {
|
|
const confirmMessage = type === BLOCK_ACTIONS.BLOCK
|
|
? `${t('adg_will_drop_dns_queries')} ${t('client_confirm_block', { ip })}`
|
|
: t('client_confirm_unblock', { ip });
|
|
|
|
if (window.confirm(confirmMessage)) {
|
|
dispatch(toggleClientBlock(type, ip));
|
|
}
|
|
};
|
|
|
|
const onClick = () => toggleClientStatus(type, ip);
|
|
|
|
return <div className="table__action pl-4">
|
|
<button
|
|
type="button"
|
|
className={buttonClass}
|
|
onClick={onClick}
|
|
disabled={processingSet}
|
|
>
|
|
<Trans>{text}</Trans>
|
|
</button>
|
|
</div>;
|
|
};
|
|
|
|
const ClientCell = (row) => {
|
|
const { value, original: { info } } = row;
|
|
|
|
return <>
|
|
<div className="logs__row logs__row--overflow logs__row--column d-flex align-items-center">
|
|
{renderFormattedClientCell(value, info, true)}
|
|
{renderBlockingButton(value)}
|
|
</div>
|
|
</>;
|
|
};
|
|
|
|
const Clients = ({
|
|
refreshButton,
|
|
subtitle,
|
|
}) => {
|
|
const { t } = useTranslation();
|
|
const topClients = useSelector((state) => state.stats.topClients, shallowEqual);
|
|
const disallowedClients = useSelector((state) => state.access.disallowed_clients, shallowEqual);
|
|
|
|
return <Card
|
|
title={t('top_clients')}
|
|
subtitle={subtitle}
|
|
bodyType="card-table"
|
|
refresh={refreshButton}
|
|
>
|
|
<ReactTable
|
|
data={topClients.map(({
|
|
name: ip, count, info, blocked,
|
|
}) => ({
|
|
ip,
|
|
count,
|
|
info,
|
|
blocked,
|
|
}))}
|
|
columns={[
|
|
{
|
|
Header: 'IP',
|
|
accessor: 'ip',
|
|
sortMethod: sortIp,
|
|
Cell: ClientCell,
|
|
},
|
|
{
|
|
Header: <Trans>requests_count</Trans>,
|
|
accessor: 'count',
|
|
minWidth: 180,
|
|
maxWidth: 200,
|
|
Cell: CountCell,
|
|
},
|
|
]}
|
|
showPagination={false}
|
|
noDataText={t('no_clients_found')}
|
|
minRows={6}
|
|
defaultPageSize={100}
|
|
className="-highlight card-table-overflow--limited clients__table"
|
|
getTrProps={(_state, rowInfo) => {
|
|
if (!rowInfo) {
|
|
return {};
|
|
}
|
|
|
|
const { ip } = rowInfo.original;
|
|
|
|
return getIpMatchListStatus(ip, disallowedClients) === IP_MATCH_LIST_STATUS.NOT_FOUND ? {} : { className: 'red' };
|
|
}}
|
|
/>
|
|
</Card>;
|
|
};
|
|
|
|
Clients.propTypes = {
|
|
refreshButton: PropTypes.node.isRequired,
|
|
subtitle: PropTypes.string.isRequired,
|
|
};
|
|
|
|
export default Clients;
|