umami/components/metrics/ReferrersTable.js

71 lines
2.0 KiB
JavaScript
Raw Normal View History

2020-08-23 07:01:14 +02:00
import React, { useState } from 'react';
2020-09-06 02:27:01 +02:00
import { FormattedMessage } from 'react-intl';
import MetricsTable from './MetricsTable';
import { refFilter } from 'lib/filters';
2020-08-31 23:11:30 +02:00
import ButtonGroup from 'components/common/ButtonGroup';
2020-09-06 02:27:01 +02:00
import { FILTER_DOMAIN_ONLY, FILTER_COMBINED, FILTER_RAW } from 'lib/constants';
2020-09-22 06:34:55 +02:00
import ButtonLayout from '../layout/ButtonLayout';
export default function ReferrersTable({
websiteId,
websiteDomain,
token,
limit,
onExpand = () => {},
}) {
2020-09-06 02:27:01 +02:00
const [filter, setFilter] = useState(FILTER_COMBINED);
const buttons = [
{
label: <FormattedMessage id="metrics.filter.domain-only" defaultMessage="Domain only" />,
value: FILTER_DOMAIN_ONLY,
},
{
label: <FormattedMessage id="metrics.filter.combined" defaultMessage="Combined" />,
value: FILTER_COMBINED,
},
{ label: <FormattedMessage id="metrics.filter.raw" defaultMessage="Raw" />, value: FILTER_RAW },
];
2020-08-23 07:01:14 +02:00
const renderLink = ({ w: href, x: url }) => {
return (href || url).startsWith('http') ? (
<a href={href || url} target="_blank" rel="noreferrer">
2020-08-25 08:49:14 +02:00
{decodeURI(url)}
2020-08-23 09:23:47 +02:00
</a>
) : (
2020-08-25 08:49:14 +02:00
decodeURI(url)
2020-08-23 09:23:47 +02:00
);
};
return (
2020-09-22 06:34:55 +02:00
<>
{!limit && <FilterButtons buttons={buttons} selected={filter} onClick={setFilter} />}
<MetricsTable
title={<FormattedMessage id="metrics.referrers" defaultMessage="Referrers" />}
type="referrer"
metric={<FormattedMessage id="metrics.views" defaultMessage="Views" />}
websiteId={websiteId}
websiteDomain={websiteDomain}
token={token}
limit={limit}
dataFilter={refFilter}
filterOptions={{
domain: websiteDomain,
domainOnly: filter === FILTER_DOMAIN_ONLY,
raw: filter === FILTER_RAW,
}}
onExpand={onExpand}
renderLabel={renderLink}
/>
</>
);
}
2020-08-23 07:01:14 +02:00
2020-09-06 02:27:01 +02:00
const FilterButtons = ({ buttons, selected, onClick }) => {
2020-09-22 06:34:55 +02:00
return (
<ButtonLayout>
<ButtonGroup size="xsmall" items={buttons} selectedItem={selected} onClick={onClick} />
</ButtonLayout>
);
2020-08-23 07:01:14 +02:00
};