- client: Fix query log bugs Squashed commit of the following: commit 188bbad32a2af8a1867fc3ef91d81cda6aa94853 Merge:15db9e9cec6e0beaAuthor: Andrey Meshkov <am@adguard.com> Date: Thu Jun 18 22:43:11 2020 +0300 Merge branch 'master' into fix/1810 commit15db9e9c1dAuthor: ArtemBaskal <a.baskal@adguard.com> Date: Thu Jun 18 19:01:10 2020 +0300 Open tooltip on hover, show scroll on overflow y commit19c013378dAuthor: ArtemBaskal <a.baskal@adguard.com> Date: Thu Jun 18 17:17:46 2020 +0300 Replace tooltip component commit7e7103dc08Author: ArtemBaskal <a.baskal@adguard.com> Date: Thu Jun 18 14:21:54 2020 +0300 -client: Fix query log bugs
146 lines
4.4 KiB
JavaScript
146 lines
4.4 KiB
JavaScript
import React from 'react';
|
|
import ReactTable from 'react-table';
|
|
import PropTypes from 'prop-types';
|
|
import { Trans, withTranslation } from 'react-i18next';
|
|
|
|
import Card from '../ui/Card';
|
|
import Cell from '../ui/Cell';
|
|
|
|
import { getPercent, getIpMatchListStatus } from '../../helpers/helpers';
|
|
import { IP_MATCH_LIST_STATUS, STATUS_COLORS } from '../../helpers/constants';
|
|
import { formatClientCell } from '../../helpers/formatClientCell';
|
|
|
|
const getClientsPercentColor = (percent) => {
|
|
if (percent > 50) {
|
|
return STATUS_COLORS.green;
|
|
}
|
|
if (percent > 10) {
|
|
return STATUS_COLORS.yellow;
|
|
}
|
|
return STATUS_COLORS.red;
|
|
};
|
|
|
|
const countCell = (dnsQueries) => function cell(row) {
|
|
const { value } = row;
|
|
const percent = getPercent(dnsQueries, value);
|
|
const percentColor = getClientsPercentColor(percent);
|
|
|
|
return <Cell value={value} percent={percent} color={percentColor} />;
|
|
};
|
|
|
|
const renderBlockingButton = (ipMatchListStatus, ip, handleClick, processing) => {
|
|
const buttonProps = ipMatchListStatus === IP_MATCH_LIST_STATUS.NOT_FOUND
|
|
? {
|
|
className: 'btn-outline-danger',
|
|
text: 'block',
|
|
type: 'block',
|
|
}
|
|
: {
|
|
className: 'btn-outline-secondary',
|
|
text: 'unblock',
|
|
type: 'unblock',
|
|
};
|
|
|
|
return (
|
|
<div className="table__action button__action">
|
|
<button
|
|
type="button"
|
|
className={`btn btn-sm ${buttonProps.className}`}
|
|
onClick={() => handleClick(buttonProps.type, ip)}
|
|
disabled={processing}
|
|
>
|
|
<Trans>{buttonProps.text}</Trans>
|
|
</button>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const clientCell = (t, toggleClientStatus, processing, disallowedClients) => function cell(row) {
|
|
const { value } = row;
|
|
const ipMatchListStatus = getIpMatchListStatus(value, disallowedClients);
|
|
|
|
return (
|
|
<>
|
|
<div className="logs__row logs__row--overflow logs__row--column">
|
|
{formatClientCell(row, t)}
|
|
</div>
|
|
{ipMatchListStatus !== IP_MATCH_LIST_STATUS.CIDR
|
|
&& renderBlockingButton(ipMatchListStatus, value, toggleClientStatus, processing)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
const Clients = ({
|
|
t,
|
|
refreshButton,
|
|
topClients,
|
|
subtitle,
|
|
dnsQueries,
|
|
toggleClientStatus,
|
|
processingAccessSet,
|
|
disallowedClients,
|
|
}) => (
|
|
<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: (a, b) => parseInt(a.replace(/\./g, ''), 10) - parseInt(b.replace(/\./g, ''), 10),
|
|
Cell: clientCell(t, toggleClientStatus, processingAccessSet, disallowedClients),
|
|
},
|
|
{
|
|
Header: <Trans>requests_count</Trans>,
|
|
accessor: 'count',
|
|
minWidth: 180,
|
|
maxWidth: 200,
|
|
Cell: countCell(dnsQueries),
|
|
},
|
|
]}
|
|
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 = {
|
|
topClients: PropTypes.array.isRequired,
|
|
dnsQueries: PropTypes.number.isRequired,
|
|
refreshButton: PropTypes.node.isRequired,
|
|
clients: PropTypes.array.isRequired,
|
|
autoClients: PropTypes.array.isRequired,
|
|
subtitle: PropTypes.string.isRequired,
|
|
t: PropTypes.func.isRequired,
|
|
toggleClientStatus: PropTypes.func.isRequired,
|
|
processingAccessSet: PropTypes.bool.isRequired,
|
|
disallowedClients: PropTypes.string.isRequired,
|
|
};
|
|
|
|
export default withTranslation()(Clients);
|