feat: add interactive world map to analytics dashboard

This commit is contained in:
Usman Baig
2026-01-16 20:07:38 +01:00
parent 0b33f1c794
commit 85046a5861
4 changed files with 355 additions and 19 deletions

View File

@@ -3,6 +3,7 @@
import { useState } from 'react'
import { formatNumber } from '@/lib/utils/format'
import * as Flags from 'country-flag-icons/react/3x2'
import WorldMap from './WorldMap'
interface LocationProps {
countries: Array<{ country: string; pageviews: number }>
@@ -38,9 +39,11 @@ export default function Locations({ countries, cities }: LocationProps) {
return <p className="text-neutral-600 dark:text-neutral-400">No data available</p>
}
return (
<div className="space-y-3">
{countries.map((country, index) => (
<div key={index} className="flex items-center justify-between">
<div className="space-y-4">
<WorldMap data={countries} />
<div className="space-y-3">
{countries.map((country, index) => (
<div key={index} className="flex items-center justify-between">
<div className="flex-1 truncate text-neutral-900 dark:text-white flex items-center gap-3">
<span className="shrink-0">{getFlagComponent(country.country)}</span>
<span className="truncate">{getCountryName(country.country)}</span>

View File

@@ -0,0 +1,102 @@
'use client'
import React, { memo, useMemo, useState } from 'react'
import { ComposableMap, Geographies, Geography, ZoomableGroup } from 'react-simple-maps'
import { scaleLinear } from 'd3-scale'
import countries from 'i18n-iso-countries'
import enLocale from 'i18n-iso-countries/langs/en.json'
import { useTheme } from 'next-themes'
countries.registerLocale(enLocale)
const geoUrl = "https://cdn.jsdelivr.net/npm/world-atlas@2/countries-110m.json"
interface WorldMapProps {
data: Array<{ country: string; pageviews: number }>
}
const WorldMap = ({ data }: WorldMapProps) => {
const { resolvedTheme } = useTheme()
const [tooltipContent, setTooltipContent] = useState<{ content: string; x: number; y: number } | null>(null)
const processedData = useMemo(() => {
const map = new Map<string, number>()
let max = 0
data.forEach(item => {
if (item.country === 'Unknown') return
// API returns 2 letter code. Convert to numeric (3 digits string)
const numericCode = countries.alpha2ToNumeric(item.country)
if (numericCode) {
map.set(numericCode, item.pageviews)
if (item.pageviews > max) max = item.pageviews
}
})
return { map, max }
}, [data])
const colorScale = scaleLinear<string>()
.domain([0, processedData.max || 1])
.range(["#FD5E0F", "#fed7aa"]) // brand orange to orange-200 (inverted: less visitors = darker)
// Dark mode adjustment
const isDark = resolvedTheme === 'dark'
const defaultFill = isDark ? "#262626" : "#F5F5F5" // neutral-800 : neutral-100
const defaultStroke = isDark ? "#404040" : "#D4D4D4" // neutral-700 : neutral-300
return (
<div className="relative w-full h-[300px] bg-neutral-50 dark:bg-neutral-900/50 rounded-lg overflow-hidden border border-neutral-100 dark:border-neutral-800">
<ComposableMap projectionConfig={{ rotate: [-10, 0, 0], scale: 147 }}>
<ZoomableGroup>
<Geographies geography={geoUrl}>
{({ geographies }) =>
geographies.map((geo) => {
// Ensure ID is padded to 3 digits as standard ISO numeric
const id = String(geo.id).padStart(3, '0')
const count = processedData.map.get(id) || 0
return (
<Geography
key={geo.rsmKey}
geography={geo}
fill={count > 0 ? colorScale(count) : defaultFill}
stroke={defaultStroke}
strokeWidth={0.5}
style={{
default: { outline: "none", transition: "all 250ms" },
hover: { fill: "#FD5E0F", outline: "none", cursor: 'pointer' },
pressed: { outline: "none" },
}}
onMouseEnter={(evt) => {
const { name } = geo.properties
setTooltipContent({
content: `${name}: ${count} visitors`,
x: evt.clientX,
y: evt.clientY
})
}}
onMouseLeave={() => {
setTooltipContent(null)
}}
onMouseMove={(evt) => {
setTooltipContent(prev => prev ? { ...prev, x: evt.clientX, y: evt.clientY } : null)
}}
/>
)
})
}
</Geographies>
</ZoomableGroup>
</ComposableMap>
{tooltipContent && (
<div
className="fixed z-50 px-2 py-1 text-xs font-medium text-white bg-black/80 backdrop-blur-sm rounded shadow pointer-events-none transform -translate-x-1/2 -translate-y-full mt-[-10px]"
style={{ left: tooltipContent.x, top: tooltipContent.y }}
>
{tooltipContent.content}
</div>
)}
</div>
)
}
export default memo(WorldMap)