Closes #3313
Squashed commit of the following:
commit 6f2ff98a8282789e2dbb16694ca87a1f4cc8c076
Merge: 1221f02f f4dde3f2
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Wed Jul 14 15:53:18 2021 +0300
Merge branch 'master' into 3313-statistics
commit 1221f02f40628964febd22967d85d5185f87b08d
Author: Ildar Kamalov <ik@adguard.com>
Date: Wed Jul 14 15:23:09 2021 +0300
client: make client names clickable
commit 99770ec065e14ce2522a59820f9851d79001923c
Author: Ildar Kamalov <ik@adguard.com>
Date: Wed Jul 14 15:06:30 2021 +0300
client: decreasing interval confirm, disabled stats message
229 lines
8.0 KiB
JavaScript
229 lines
8.0 KiB
JavaScript
import React, { useState } from 'react';
|
|
import { shallowEqual, useDispatch, useSelector } from 'react-redux';
|
|
import { nanoid } from 'nanoid';
|
|
import classNames from 'classnames';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { Link } from 'react-router-dom';
|
|
import propTypes from 'prop-types';
|
|
|
|
import { checkFiltered, getBlockingClientName } from '../../../helpers/helpers';
|
|
import { BLOCK_ACTIONS } from '../../../helpers/constants';
|
|
import { toggleBlocking, toggleBlockingForClient } from '../../../actions';
|
|
import IconTooltip from './IconTooltip';
|
|
import { renderFormattedClientCell } from '../../../helpers/renderFormattedClientCell';
|
|
import { toggleClientBlock } from '../../../actions/access';
|
|
import { getBlockClientInfo } from './helpers';
|
|
import { getStats } from '../../../actions/stats';
|
|
import { updateLogs } from '../../../actions/queryLogs';
|
|
|
|
const ClientCell = ({
|
|
client,
|
|
client_id,
|
|
client_info,
|
|
domain,
|
|
reason,
|
|
}) => {
|
|
const { t } = useTranslation();
|
|
const dispatch = useDispatch();
|
|
const autoClients = useSelector((state) => state.dashboard.autoClients, shallowEqual);
|
|
const processingRules = useSelector((state) => state.filtering.processingRules);
|
|
const isDetailed = useSelector((state) => state.queryLogs.isDetailed);
|
|
const [isOptionsOpened, setOptionsOpened] = useState(false);
|
|
|
|
const autoClient = autoClients.find((autoClient) => autoClient.name === client);
|
|
const source = autoClient?.source;
|
|
const whoisAvailable = client_info && Object.keys(client_info.whois).length > 0;
|
|
const clientName = client_info?.name || client_id;
|
|
const clientInfo = client_info && {
|
|
...client_info,
|
|
whois_info: client_info?.whois,
|
|
name: clientName,
|
|
};
|
|
|
|
const id = nanoid();
|
|
|
|
const data = {
|
|
address: client,
|
|
name: clientName,
|
|
country: client_info?.whois?.country,
|
|
city: client_info?.whois?.city,
|
|
network: client_info?.whois?.orgname,
|
|
source_label: source,
|
|
};
|
|
|
|
const processedData = Object.entries(data);
|
|
|
|
const isFiltered = checkFiltered(reason);
|
|
|
|
const nameClass = classNames('w-90 o-hidden d-flex flex-column', {
|
|
'mt-2': isDetailed && !client_info?.name && !whoisAvailable,
|
|
'white-space--nowrap': isDetailed,
|
|
});
|
|
|
|
const hintClass = classNames('icons mr-4 icon--24 icon--lightgray', {
|
|
'my-3': isDetailed,
|
|
});
|
|
|
|
const renderBlockingButton = (isFiltered, domain) => {
|
|
const buttonType = isFiltered ? BLOCK_ACTIONS.UNBLOCK : BLOCK_ACTIONS.BLOCK;
|
|
const clients = useSelector((state) => state.dashboard.clients);
|
|
|
|
const {
|
|
confirmMessage,
|
|
buttonKey: blockingClientKey,
|
|
isNotInAllowedList,
|
|
} = getBlockClientInfo(
|
|
client,
|
|
client_info?.disallowed || false,
|
|
client_info?.disallowed_rule || '',
|
|
);
|
|
|
|
const blockingForClientKey = isFiltered ? 'unblock_for_this_client_only' : 'block_for_this_client_only';
|
|
const clientNameBlockingFor = getBlockingClientName(clients, client);
|
|
|
|
const BUTTON_OPTIONS = [
|
|
{
|
|
name: blockingForClientKey,
|
|
onClick: () => {
|
|
dispatch(toggleBlockingForClient(buttonType, domain, clientNameBlockingFor));
|
|
},
|
|
},
|
|
{
|
|
name: blockingClientKey,
|
|
onClick: async () => {
|
|
if (window.confirm(confirmMessage)) {
|
|
await dispatch(toggleClientBlock(
|
|
client,
|
|
client_info?.disallowed || false,
|
|
client_info?.disallowed_rule || '',
|
|
));
|
|
await dispatch(updateLogs());
|
|
}
|
|
},
|
|
disabled: isNotInAllowedList,
|
|
},
|
|
];
|
|
|
|
const onClick = async () => {
|
|
await dispatch(toggleBlocking(buttonType, domain));
|
|
await dispatch(getStats());
|
|
};
|
|
|
|
const getOptions = (options) => {
|
|
if (options.length === 0) {
|
|
return null;
|
|
}
|
|
return (
|
|
<>
|
|
{options.map(({ name, onClick, disabled }) => (
|
|
<button
|
|
key={name}
|
|
className="button-action--arrow-option px-4 py-2"
|
|
onClick={onClick}
|
|
disabled={disabled}
|
|
>
|
|
{t(name)}
|
|
</button>
|
|
))}
|
|
</>
|
|
);
|
|
};
|
|
|
|
const content = getOptions(BUTTON_OPTIONS);
|
|
|
|
const buttonClass = classNames('button-action button-action--main', {
|
|
'button-action--unblock': isFiltered,
|
|
'button-action--with-options': content,
|
|
'button-action--active': isOptionsOpened,
|
|
});
|
|
|
|
const buttonArrowClass = classNames('button-action button-action--arrow', {
|
|
'button-action--unblock': isFiltered,
|
|
'button-action--active': isOptionsOpened,
|
|
});
|
|
|
|
const containerClass = classNames('button-action__container', {
|
|
'button-action__container--detailed': isDetailed,
|
|
});
|
|
|
|
return (
|
|
<div className={containerClass}>
|
|
<button
|
|
type="button"
|
|
className={buttonClass}
|
|
onClick={onClick}
|
|
disabled={processingRules}
|
|
>
|
|
{t(buttonType)}
|
|
</button>
|
|
{content && (
|
|
<button className={buttonArrowClass} disabled={processingRules}>
|
|
<IconTooltip
|
|
className="h-100"
|
|
tooltipClass="button-action--arrow-option-container"
|
|
xlinkHref="chevron-down"
|
|
triggerClass="button-action--icon"
|
|
content={content}
|
|
placement="bottom-end"
|
|
trigger="click"
|
|
onVisibilityChange={setOptionsOpened}
|
|
/>
|
|
</button>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<div
|
|
className="o-hidden h-100 logs__cell logs__cell--client"
|
|
role="gridcell"
|
|
>
|
|
<IconTooltip
|
|
className={hintClass}
|
|
columnClass="grid grid--limited"
|
|
tooltipClass="px-5 pb-5 pt-4"
|
|
xlinkHref="question"
|
|
contentItemClass="text-truncate key-colon o-hidden"
|
|
title="client_details"
|
|
content={processedData}
|
|
placement="bottom"
|
|
/>
|
|
<div className={nameClass}>
|
|
<div data-tip={true} data-for={id}>
|
|
{renderFormattedClientCell(client, clientInfo, isDetailed, true)}
|
|
</div>
|
|
{isDetailed && clientName && !whoisAvailable && (
|
|
<Link
|
|
className="detailed-info d-none d-sm-block logs__text logs__text--link"
|
|
to={`logs?search=${encodeURIComponent(clientName)}`}
|
|
title={clientName}
|
|
>
|
|
{clientName}
|
|
</Link>
|
|
)}
|
|
</div>
|
|
{renderBlockingButton(isFiltered, domain)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
ClientCell.propTypes = {
|
|
client: propTypes.string.isRequired,
|
|
client_id: propTypes.string,
|
|
client_info: propTypes.shape({
|
|
name: propTypes.string.isRequired,
|
|
whois: propTypes.shape({
|
|
country: propTypes.string,
|
|
city: propTypes.string,
|
|
orgname: propTypes.string,
|
|
}).isRequired,
|
|
disallowed: propTypes.bool.isRequired,
|
|
disallowed_rule: propTypes.string.isRequired,
|
|
}),
|
|
domain: propTypes.string.isRequired,
|
|
reason: propTypes.string.isRequired,
|
|
};
|
|
|
|
export default ClientCell;
|