umami/src/components/metrics/CitiesTable.tsx
2024-08-28 16:44:29 +09:00

37 lines
1.1 KiB
TypeScript

import MetricsTable, { MetricsTableProps } from './MetricsTable';
import { emptyFilter } from 'lib/filters';
import FilterLink from 'components/common/FilterLink';
import TypeIcon from 'components/common/TypeIcon';
import { useIntl } from 'react-intl';
import { useMessages } from 'components/hooks';
export function CitiesTable(props: MetricsTableProps) {
const intl = useIntl();
const { formatMessage, labels } = useMessages();
const renderLabel = (city: string, country: string) => {
const countryName = intl.formatDisplayName(country, { type: 'region' });
return countryName ? `${city}, ${countryName}` : city;
};
const renderLink = ({ x: city, country }) => {
return (
<FilterLink id="city" value={city} label={renderLabel(city, country)}>
{country && <TypeIcon type="country" value={country} />}
</FilterLink>
);
};
return (
<MetricsTable
{...props}
title={formatMessage(labels.cities)}
type="city"
metric={formatMessage(labels.visitors)}
dataFilter={emptyFilter}
renderLabel={renderLink}
/>
);
}
export default CitiesTable;