From 232cd381ff322e55db259872b9a568f5a392b57f Mon Sep 17 00:00:00 2001 From: Ainar Garipov Date: Tue, 29 Jun 2021 17:13:34 +0300 Subject: [PATCH] Pull request: client: add links to the query log from dashboard Updates #3245. Squashed commit of the following: commit 32ca6e12f34e78ab51501f27609ed21fd5a1d1e7 Merge: b5cd0bee 77c70193 Author: Ainar Garipov Date: Tue Jun 29 17:06:50 2021 +0300 Merge branch 'master' into 3245-imp-dashboard commit b5cd0beea03d39a65f97922e3cdbc6af3e19ffdc Author: Ildar Kamalov Date: Tue Jun 29 16:16:45 2021 +0300 client: remove links from labels commit 3a3003aeed737819888a6974c878b88aa6abee38 Merge: 2dc1a5f8 90a85362 Author: Ainar Garipov Date: Tue Jun 22 13:42:21 2021 +0300 Merge branch 'master' into 3245-imp-dashboard commit 2dc1a5f8b936c771cb0c7c26a529c824d0e445a2 Author: Ildar Kamalov Date: Fri Jun 11 19:24:12 2021 +0300 client: get response status from const commit 1bb9dc2abd6e9f2263fca09fed4d393f1969446c Merge: 137dcb05 12f1e4ed Author: Ildar Kamalov Date: Fri Jun 11 19:08:24 2021 +0300 Merge branch 'master' into 3245-imp-dashboard commit 137dcb058ef31d61f630e304a11ef974b0548fc8 Author: Mark Hicken Date: Tue Jun 8 15:05:17 2021 -0600 Add links to all the dashboard things --- client/src/components/Dashboard/Statistics.js | 10 ++++++---- client/src/components/ui/LogsSearchLink.css | 7 ------- client/src/components/ui/LogsSearchLink.js | 16 ++++++++++------ client/src/helpers/renderFormattedClientCell.js | 3 ++- 4 files changed, 18 insertions(+), 18 deletions(-) delete mode 100644 client/src/components/ui/LogsSearchLink.css diff --git a/client/src/components/Dashboard/Statistics.js b/client/src/components/Dashboard/Statistics.js index 25c6093a..94c31112 100644 --- a/client/src/components/Dashboard/Statistics.js +++ b/client/src/components/Dashboard/Statistics.js @@ -1,9 +1,11 @@ import React from 'react'; import PropTypes from 'prop-types'; +import { Link } from 'react-router-dom'; import { withTranslation, Trans } from 'react-i18next'; import StatsCard from './StatsCard'; import { getPercent, normalizeHistory } from '../../helpers/helpers'; +import { RESPONSE_FILTER } from '../../helpers/constants'; const getNormalizedHistory = (data, interval, id) => [ { data: normalizeHistory(data, interval), id }, @@ -25,7 +27,7 @@ const Statistics = ({ dns_query} + title={dns_query} color="blue" /> @@ -34,7 +36,7 @@ const Statistics = ({ total={numBlockedFiltering} lineData={getNormalizedHistory(blockedFiltering, interval, 'blockedFiltering')} percent={getPercent(numDnsQueries, numBlockedFiltering)} - title={link]}>blocked_by} + title={link]}>blocked_by} color="red" /> @@ -47,7 +49,7 @@ const Statistics = ({ 'replacedSafebrowsing', )} percent={getPercent(numDnsQueries, numReplacedSafebrowsing)} - title={stats_malware_phishing} + title={stats_malware_phishing} color="green" /> @@ -56,7 +58,7 @@ const Statistics = ({ total={numReplacedParental} lineData={getNormalizedHistory(replacedParental, interval, 'replacedParental')} percent={getPercent(numDnsQueries, numReplacedParental)} - title={stats_adult} + title={stats_adult} color="yellow" /> diff --git a/client/src/components/ui/LogsSearchLink.css b/client/src/components/ui/LogsSearchLink.css deleted file mode 100644 index 1649e1af..00000000 --- a/client/src/components/ui/LogsSearchLink.css +++ /dev/null @@ -1,7 +0,0 @@ -.stats__link { - color: inherit; -} - -.stats__link:hover { - cursor: pointer; -} diff --git a/client/src/components/ui/LogsSearchLink.js b/client/src/components/ui/LogsSearchLink.js index 692f78d2..ba5970c2 100644 --- a/client/src/components/ui/LogsSearchLink.js +++ b/client/src/components/ui/LogsSearchLink.js @@ -2,7 +2,6 @@ import React from 'react'; import { Link } from 'react-router-dom'; import PropTypes from 'prop-types'; import { useTranslation } from 'react-i18next'; -import './LogsSearchLink.css'; import { getLogsUrlParams } from '../../helpers/helpers'; import { MENU_URLS } from '../../helpers/constants'; @@ -13,11 +12,16 @@ const LogsSearchLink = ({ const to = link === MENU_URLS.logs ? `${MENU_URLS.logs}${getLogsUrlParams(search && `"${search}"`, response_status)}` : link; - return {children}; + return ( + + {children} + + ); }; LogsSearchLink.propTypes = { diff --git a/client/src/helpers/renderFormattedClientCell.js b/client/src/helpers/renderFormattedClientCell.js index f7e59a84..88c85bd7 100644 --- a/client/src/helpers/renderFormattedClientCell.js +++ b/client/src/helpers/renderFormattedClientCell.js @@ -1,4 +1,5 @@ import React from 'react'; +import { Link } from 'react-router-dom'; import { normalizeWhois } from './helpers'; import { WHOIS_ICONS } from './constants'; @@ -63,7 +64,7 @@ export const renderFormattedClientCell = (value, info, isDetailed = false, isLog } return
- {nameContainer} + {nameContainer} {whoisContainer}
; };