mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 09:45:04 +01:00
40 lines
1.4 KiB
JavaScript
40 lines
1.4 KiB
JavaScript
import React, { useState } from 'react';
|
|
import { FormattedMessage } from 'react-intl';
|
|
import ButtonGroup from 'components/common/ButtonGroup';
|
|
import { urlFilter } from 'lib/filters';
|
|
import { FILTER_COMBINED, FILTER_RAW } from 'lib/constants';
|
|
import MetricsTable from './MetricsTable';
|
|
|
|
export default function PagesTable({ websiteId, websiteDomain, limit, onExpand }) {
|
|
const [filter, setFilter] = useState(FILTER_COMBINED);
|
|
|
|
const buttons = [
|
|
{
|
|
label: <FormattedMessage id="metrics.filter.combined" defaultMessage="Combined" />,
|
|
value: FILTER_COMBINED,
|
|
},
|
|
{ label: <FormattedMessage id="metrics.filter.raw" defaultMessage="Raw" />, value: FILTER_RAW },
|
|
];
|
|
|
|
return (
|
|
<MetricsTable
|
|
title={<FormattedMessage id="metrics.pages" defaultMessage="Pages" />}
|
|
type="url"
|
|
metric={<FormattedMessage id="metrics.views" defaultMessage="Views" />}
|
|
headerComponent={
|
|
limit ? null : <FilterButtons buttons={buttons} selected={filter} onClick={setFilter} />
|
|
}
|
|
websiteId={websiteId}
|
|
limit={limit}
|
|
dataFilter={urlFilter}
|
|
filterOptions={{ domain: websiteDomain, raw: filter === FILTER_RAW }}
|
|
renderLabel={({ x }) => decodeURI(x)}
|
|
onExpand={onExpand}
|
|
/>
|
|
);
|
|
}
|
|
|
|
const FilterButtons = ({ buttons, selected, onClick }) => {
|
|
return <ButtonGroup size="xsmall" items={buttons} selectedItem={selected} onClick={onClick} />;
|
|
};
|