2023-02-04 17:59:52 +01:00
|
|
|
import { useIntl } from 'react-intl';
|
2020-08-23 04:05:07 +02:00
|
|
|
import MetricsTable from './MetricsTable';
|
2022-04-10 12:51:43 +02:00
|
|
|
import FilterLink from 'components/common/FilterLink';
|
2023-02-04 17:59:52 +01:00
|
|
|
import { labels } from 'components/messages';
|
2020-08-23 04:05:07 +02:00
|
|
|
|
2020-10-11 11:29:55 +02:00
|
|
|
export default function OSTable({ websiteId, ...props }) {
|
2023-02-04 17:59:52 +01:00
|
|
|
const { formatMessage } = useIntl();
|
|
|
|
|
2022-04-10 12:51:43 +02:00
|
|
|
function renderLink({ x: os }) {
|
|
|
|
return <FilterLink id="os" value={os} />;
|
|
|
|
}
|
|
|
|
|
2020-08-23 04:05:07 +02:00
|
|
|
return (
|
|
|
|
<MetricsTable
|
2020-10-11 11:29:55 +02:00
|
|
|
{...props}
|
2020-08-23 04:05:07 +02:00
|
|
|
websiteId={websiteId}
|
2023-02-04 17:59:52 +01:00
|
|
|
title={formatMessage(labels.os)}
|
|
|
|
metric={formatMessage(labels.visitors)}
|
|
|
|
renderLabel={renderLink}
|
|
|
|
type="os"
|
2020-08-23 04:05:07 +02:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|