umami/components/common/WorldMap.js

86 lines
2.8 KiB
JavaScript
Raw Normal View History

import { useState, useMemo } from 'react';
2021-03-27 06:32:13 +01:00
import { useRouter } from 'next/router';
2020-09-20 10:33:39 +02:00
import { ComposableMap, Geographies, Geography, ZoomableGroup } from 'react-simple-maps';
2020-08-01 12:34:56 +02:00
import classNames from 'classnames';
2022-01-14 09:39:27 +01:00
import { colord } from 'colord';
2023-04-21 17:00:42 +02:00
import HoverTooltip from 'components/common/HoverTooltip';
import { ISO_COUNTRIES, MAP_FILE } from 'lib/constants';
2023-04-21 17:00:42 +02:00
import useTheme from 'hooks/useTheme';
2020-10-01 01:27:27 +02:00
import useCountryNames from 'hooks/useCountryNames';
import useLocale from 'hooks/useLocale';
2023-04-14 07:28:29 +02:00
import { formatLongNumber } from 'lib/format';
import { percentFilter } from 'lib/filters';
2023-04-21 17:00:42 +02:00
import styles from './WorldMap.module.css';
2020-08-01 12:34:56 +02:00
2023-04-21 17:00:42 +02:00
export function WorldMap({ data, className }) {
2021-03-27 06:32:13 +01:00
const { basePath } = useRouter();
2020-08-01 12:34:56 +02:00
const [tooltip, setTooltip] = useState();
const { theme, colors } = useTheme();
const { locale } = useLocale();
2020-10-01 01:27:27 +02:00
const countryNames = useCountryNames(locale);
2023-04-14 08:05:54 +02:00
const metrics = useMemo(() => (data ? percentFilter(data) : []), [data]);
2020-08-01 12:34:56 +02:00
function getFillColor(code) {
2020-09-20 10:33:39 +02:00
if (code === 'AQ') return;
2023-04-14 07:28:29 +02:00
const country = metrics?.find(({ x }) => x === code);
2020-08-01 12:34:56 +02:00
2020-09-20 10:33:39 +02:00
if (!country) {
return colors.map.fillColor;
2020-09-20 10:33:39 +02:00
}
return colord(colors.map.baseColor)
2022-01-14 09:39:27 +01:00
[theme === 'light' ? 'lighten' : 'darken'](0.4 * (1.0 - country.z / 100))
.toHex();
2020-08-01 12:34:56 +02:00
}
2020-09-20 10:33:39 +02:00
function getOpacity(code) {
return code === 'AQ' ? 0 : 1;
2020-08-01 12:34:56 +02:00
}
2020-10-01 01:27:27 +02:00
function handleHover(code) {
2020-09-20 10:33:39 +02:00
if (code === 'AQ') return;
2023-04-14 07:28:29 +02:00
const country = metrics?.find(({ x }) => x === code);
setTooltip(`${countryNames[code]}: ${formatLongNumber(country?.y || 0)} visitors`);
2020-08-01 12:34:56 +02:00
}
return (
2020-09-20 10:33:39 +02:00
<div
className={classNames(styles.container, className)}
data-tip=""
data-for="world-map-tooltip"
>
<ComposableMap projection="geoMercator">
2020-08-01 12:34:56 +02:00
<ZoomableGroup zoom={0.8} minZoom={0.7} center={[0, 40]}>
2021-03-27 06:32:13 +01:00
<Geographies geography={`${basePath}${MAP_FILE}`}>
2020-08-01 12:34:56 +02:00
{({ geographies }) => {
return geographies.map(geo => {
2021-03-27 03:47:28 +01:00
const code = ISO_COUNTRIES[geo.id];
2020-08-01 12:34:56 +02:00
return (
<Geography
key={geo.rsmKey}
geography={geo}
fill={getFillColor(code)}
stroke={colors.map.strokeColor}
2020-09-20 10:33:39 +02:00
opacity={getOpacity(code)}
2020-08-01 12:34:56 +02:00
style={{
default: { outline: 'none' },
hover: { outline: 'none', fill: colors.map.hoverColor },
2020-08-01 12:34:56 +02:00
pressed: { outline: 'none' },
}}
2020-10-01 01:27:27 +02:00
onMouseOver={() => handleHover(code)}
2020-08-01 12:34:56 +02:00
onMouseOut={() => setTooltip(null)}
/>
);
});
}}
</Geographies>
</ZoomableGroup>
</ComposableMap>
{tooltip && <HoverTooltip>{tooltip}</HoverTooltip>}
2020-08-01 12:34:56 +02:00
</div>
);
}
export default WorldMap;