mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-12-19 21:41:56 +03:00
Format values in General Statistics
This commit is contained in:
parent
dedbadafc4
commit
2b55e56306
2 changed files with 8 additions and 8 deletions
|
@ -23,7 +23,7 @@ interface RowProps {
|
||||||
|
|
||||||
const Row = ({ label, count, response_status, tooltipTitle, translationComponents }: RowProps) => {
|
const Row = ({ label, count, response_status, tooltipTitle, translationComponents }: RowProps) => {
|
||||||
const content = response_status ? (
|
const content = response_status ? (
|
||||||
<LogsSearchLink response_status={response_status}>{formatNumber(count)}</LogsSearchLink>
|
<LogsSearchLink response_status={response_status}>{count}</LogsSearchLink>
|
||||||
) : (
|
) : (
|
||||||
count
|
count
|
||||||
);
|
);
|
||||||
|
@ -77,16 +77,16 @@ const Counters = ({ refreshButton, subtitle }: CountersProps) => {
|
||||||
? t('number_of_dns_query_hours', { count: msToHours(interval) })
|
? t('number_of_dns_query_hours', { count: msToHours(interval) })
|
||||||
: t('number_of_dns_query_days', { count: msToDays(interval) });
|
: t('number_of_dns_query_days', { count: msToDays(interval) });
|
||||||
|
|
||||||
const rows = [
|
const rows: RowProps[] = [
|
||||||
{
|
{
|
||||||
label: 'dns_query',
|
label: 'dns_query',
|
||||||
count: numDnsQueries.toString(),
|
count: formatNumber(numDnsQueries),
|
||||||
tooltipTitle: dnsQueryTooltip,
|
tooltipTitle: dnsQueryTooltip,
|
||||||
response_status: RESPONSE_FILTER.ALL.QUERY,
|
response_status: RESPONSE_FILTER.ALL.QUERY,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'blocked_by',
|
label: 'blocked_by',
|
||||||
count: numBlockedFiltering.toString(),
|
count: formatNumber(numBlockedFiltering),
|
||||||
tooltipTitle: 'number_of_dns_query_blocked_24_hours',
|
tooltipTitle: 'number_of_dns_query_blocked_24_hours',
|
||||||
response_status: RESPONSE_FILTER.BLOCKED.QUERY,
|
response_status: RESPONSE_FILTER.BLOCKED.QUERY,
|
||||||
|
|
||||||
|
@ -98,19 +98,19 @@ const Counters = ({ refreshButton, subtitle }: CountersProps) => {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'stats_malware_phishing',
|
label: 'stats_malware_phishing',
|
||||||
count: numReplacedSafebrowsing.toString(),
|
count: formatNumber(numReplacedSafebrowsing),
|
||||||
tooltipTitle: 'number_of_dns_query_blocked_24_hours_by_sec',
|
tooltipTitle: 'number_of_dns_query_blocked_24_hours_by_sec',
|
||||||
response_status: RESPONSE_FILTER.BLOCKED_THREATS.QUERY,
|
response_status: RESPONSE_FILTER.BLOCKED_THREATS.QUERY,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'stats_adult',
|
label: 'stats_adult',
|
||||||
count: numReplacedParental.toString(),
|
count: formatNumber(numReplacedParental),
|
||||||
tooltipTitle: 'number_of_dns_query_blocked_24_hours_adult',
|
tooltipTitle: 'number_of_dns_query_blocked_24_hours_adult',
|
||||||
response_status: RESPONSE_FILTER.BLOCKED_ADULT_WEBSITES.QUERY,
|
response_status: RESPONSE_FILTER.BLOCKED_ADULT_WEBSITES.QUERY,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'enforced_save_search',
|
label: 'enforced_save_search',
|
||||||
count: numReplacedSafesearch.toString(),
|
count: formatNumber(numReplacedSafesearch),
|
||||||
tooltipTitle: 'number_of_dns_query_to_safe_search',
|
tooltipTitle: 'number_of_dns_query_to_safe_search',
|
||||||
response_status: RESPONSE_FILTER.SAFE_SEARCH.QUERY,
|
response_status: RESPONSE_FILTER.SAFE_SEARCH.QUERY,
|
||||||
},
|
},
|
||||||
|
|
|
@ -524,7 +524,7 @@ export const getObjDiff = (initialValues: any, values: any) =>
|
||||||
* @param num {number} to format
|
* @param num {number} to format
|
||||||
* @returns {string} Returns a string with a language-sensitive representation of this number
|
* @returns {string} Returns a string with a language-sensitive representation of this number
|
||||||
*/
|
*/
|
||||||
export const formatNumber = (num: any) => {
|
export const formatNumber = (num: number): string => {
|
||||||
const currentLanguage = i18n.languages[0] || DEFAULT_LANGUAGE;
|
const currentLanguage = i18n.languages[0] || DEFAULT_LANGUAGE;
|
||||||
return num.toLocaleString(currentLanguage);
|
return num.toLocaleString(currentLanguage);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue