@undp/data-viz 2.2.3 → 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/BiVariateChoroplethMap.cjs +1 -1
- package/dist/BiVariateChoroplethMap.cjs.map +1 -1
- package/dist/BiVariateChoroplethMap.d.ts +4 -0
- package/dist/BiVariateChoroplethMap.js +328 -401
- package/dist/BiVariateChoroplethMap.js.map +1 -1
- package/dist/ChoroplethMap.cjs +1 -1
- package/dist/ChoroplethMap.cjs.map +1 -1
- package/dist/ChoroplethMap.d.ts +4 -0
- package/dist/ChoroplethMap.js +341 -416
- package/dist/ChoroplethMap.js.map +1 -1
- package/dist/Data/01.json +4042 -0
- package/dist/Data/mapData.json +4543 -0
- package/dist/Data/testMap.json +361 -0
- package/dist/DotDensityMap.cjs +1 -1
- package/dist/DotDensityMap.cjs.map +1 -1
- package/dist/DotDensityMap.d.ts +4 -0
- package/dist/DotDensityMap.js +297 -311
- package/dist/DotDensityMap.js.map +1 -1
- package/dist/{GraphEl-C1Rz1V__.js → GraphEl-L5hNe7wJ.js} +25 -17
- package/dist/GraphEl-L5hNe7wJ.js.map +1 -0
- package/dist/GraphEl-ic8C5Ksc.cjs +2 -0
- package/dist/GraphEl-ic8C5Ksc.cjs.map +1 -0
- package/dist/GriddedGraphs.cjs +1 -1
- package/dist/GriddedGraphs.d.ts +2 -0
- package/dist/GriddedGraphs.js +1 -1
- package/dist/GriddedGraphsFromConfig.d.ts +2 -0
- package/dist/HybridMap.cjs +1 -1
- package/dist/HybridMap.cjs.map +1 -1
- package/dist/HybridMap.d.ts +4 -0
- package/dist/HybridMap.js +398 -445
- package/dist/HybridMap.js.map +1 -1
- package/dist/MultiGraphDashboard.d.ts +2 -0
- package/dist/MultiGraphDashboardFromConfig.d.ts +2 -0
- package/dist/PerformanceIntensiveMultiGraphDashboard.d.ts +2 -0
- package/dist/PerformanceIntensiveMultiGraphDashboardFromConfig.d.ts +2 -0
- package/dist/PerformanceIntensiveScrollStory.d.ts +2 -0
- package/dist/ScrollStory.d.ts +2 -0
- package/dist/SingleGraphDashboard.cjs +1 -1
- package/dist/SingleGraphDashboard.d.ts +2 -0
- package/dist/SingleGraphDashboard.js +1 -1
- package/dist/SingleGraphDashboardFromConfig.d.ts +2 -0
- package/dist/SingleGraphDashboardGeoHubMaps.d.ts +2 -0
- package/dist/SingleGraphDashboardGeoHubMapsFromConfig.d.ts +2 -0
- package/dist/SingleGraphDashboardThreeDGraphs.d.ts +2 -0
- package/dist/SingleGraphDashboardThreeDGraphsFromConfig.d.ts +2 -0
- package/dist/Types.d.ts +2 -0
- package/dist/index-DLFt97gy.cjs +2 -0
- package/dist/index-DLFt97gy.cjs.map +1 -0
- package/dist/index-Dp_SfsUA.js +2344 -0
- package/dist/index-Dp_SfsUA.js.map +1 -0
- package/dist/index.d.ts +18 -0
- package/package.json +2 -1
- package/readme.md +0 -7
- package/dist/GraphEl-BZbunD1_.cjs +0 -2
- package/dist/GraphEl-BZbunD1_.cjs.map +0 -1
- package/dist/GraphEl-C1Rz1V__.js.map +0 -1
- package/dist/zoom-5AkJSuWO.js +0 -1864
- package/dist/zoom-5AkJSuWO.js.map +0 -1
- package/dist/zoom-ChcvXFIz.cjs +0 -2
- package/dist/zoom-ChcvXFIz.cjs.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DotDensityMap.js","sources":["../src/Components/Graphs/Maps/DotDensityMap/Graph.tsx","../src/Components/Graphs/Maps/DotDensityMap/index.tsx"],"sourcesContent":["import isEqual from 'fast-deep-equal';\r\nimport { useEffect, useRef, useState } from 'react';\r\nimport {\r\n geoAlbersUsa,\r\n geoEqualEarth,\r\n geoMercator,\r\n geoNaturalEarth1,\r\n geoOrthographic,\r\n} from 'd3-geo';\r\nimport { D3ZoomEvent, zoom, ZoomBehavior } from 'd3-zoom';\r\nimport { select } from 'd3-selection';\r\nimport { scaleSqrt } from 'd3-scale';\r\nimport { P } from '@undp/design-system-react/Typography';\r\nimport bbox from '@turf/bbox';\r\nimport centerOfMass from '@turf/center-of-mass';\r\nimport { AnimatePresence, motion, useInView } from 'motion/react';\r\nimport { cn } from '@undp/design-system-react/cn';\r\n\r\nimport {\r\n AnimateDataType,\r\n ClassNameObject,\r\n CustomLayerDataType,\r\n DotDensityMapDataType,\r\n MapProjectionTypes,\r\n StyleObject,\r\n ZoomInteractionTypes,\r\n} from '@/Types';\r\nimport { Tooltip } from '@/Components/Elements/Tooltip';\r\nimport { Colors } from '@/Components/ColorPalette';\r\nimport { X } from '@/Components/Icons';\r\nimport { DetailsModal } from '@/Components/Elements/DetailsModal';\r\n\r\ninterface Props {\r\n data: DotDensityMapDataType[];\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n mapData: any;\r\n colorDomain: string[];\r\n width: number;\r\n height: number;\r\n scale: number;\r\n centerPoint?: [number, number];\r\n colors: string[];\r\n colorLegendTitle?: string;\r\n radius: number;\r\n mapBorderWidth: number;\r\n mapNoDataColor: string;\r\n showLabels: boolean;\r\n mapBorderColor: string;\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n tooltip?: string | ((_d: any) => React.ReactNode);\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n onSeriesMouseOver?: (_d: any) => void;\r\n isWorldMap: boolean;\r\n showColorScale: boolean;\r\n zoomScaleExtend: [number, number];\r\n zoomTranslateExtend?: [[number, number], [number, number]];\r\n highlightedDataPoints: (string | number)[];\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n onSeriesMouseClick?: (_d: any) => void;\r\n resetSelectionOnDoubleClick: boolean;\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n detailsOnClick?: string | ((_d: any) => React.ReactNode);\r\n styles?: StyleObject;\r\n classNames?: ClassNameObject;\r\n zoomInteraction: ZoomInteractionTypes;\r\n mapProjection: MapProjectionTypes;\r\n animate: AnimateDataType;\r\n dimmedOpacity: number;\r\n customLayers: CustomLayerDataType[];\r\n maxRadiusValue: number;\r\n collapseColorScaleByDefault?: boolean;\r\n}\r\n\r\nexport function Graph(props: Props) {\r\n const {\r\n data,\r\n colors,\r\n mapData,\r\n colorLegendTitle,\r\n colorDomain,\r\n radius,\r\n height,\r\n width,\r\n scale,\r\n centerPoint,\r\n tooltip,\r\n showLabels,\r\n mapBorderWidth,\r\n mapBorderColor,\r\n mapNoDataColor,\r\n onSeriesMouseOver,\r\n showColorScale,\r\n zoomScaleExtend,\r\n zoomTranslateExtend,\r\n highlightedDataPoints,\r\n onSeriesMouseClick,\r\n resetSelectionOnDoubleClick,\r\n detailsOnClick,\r\n styles,\r\n classNames,\r\n mapProjection,\r\n zoomInteraction,\r\n animate,\r\n dimmedOpacity,\r\n customLayers,\r\n maxRadiusValue,\r\n collapseColorScaleByDefault,\r\n } = props;\r\n const [selectedColor, setSelectedColor] = useState<string | undefined>(undefined);\r\n\r\n const [showLegend, setShowLegend] = useState(\r\n collapseColorScaleByDefault === undefined ? !(width < 680) : !collapseColorScaleByDefault,\r\n );\r\n const zoomRef = useRef<ZoomBehavior<SVGSVGElement, unknown> | null>(null);\r\n\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n const [mouseClickData, setMouseClickData] = useState<any>(undefined);\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n const [mouseOverData, setMouseOverData] = useState<any>(undefined);\r\n const [eventX, setEventX] = useState<number | undefined>(undefined);\r\n const [eventY, setEventY] = useState<number | undefined>(undefined);\r\n const mapSvg = useRef<SVGSVGElement>(null);\r\n const isInView = useInView(mapSvg, {\r\n once: animate.once,\r\n amount: animate.amount,\r\n });\r\n const mapG = useRef<SVGGElement>(null);\r\n const radiusScale =\r\n data.filter(d => d.radius === undefined || d.radius === null).length !== data.length\r\n ? scaleSqrt().domain([0, maxRadiusValue]).range([0.25, radius]).nice()\r\n : undefined;\r\n\r\n useEffect(() => {\r\n const mapGSelect = select(mapG.current);\r\n const mapSvgSelect = select(mapSvg.current);\r\n const zoomFilter = (e: D3ZoomEvent<SVGSVGElement, unknown>['sourceEvent']) => {\r\n if (zoomInteraction === 'noZoom') return false;\r\n if (zoomInteraction === 'button') return !e.type.includes('wheel');\r\n const isWheel = e.type === 'wheel';\r\n const isTouch = e.type.startsWith('touch');\r\n const isDrag = e.type === 'mousedown' || e.type === 'mousemove';\r\n\r\n if (isTouch) return true;\r\n if (isWheel) {\r\n if (zoomInteraction === 'scroll') return true;\r\n return e.ctrlKey;\r\n }\r\n return isDrag && !e.button && !e.ctrlKey;\r\n };\r\n const zoomBehavior = zoom<SVGSVGElement, unknown>()\r\n .scaleExtent(zoomScaleExtend)\r\n .translateExtent(\r\n zoomTranslateExtend || [\r\n [-20, -20],\r\n [width + 20, height + 20],\r\n ],\r\n )\r\n .filter(zoomFilter)\r\n .on('zoom', ({ transform }) => {\r\n mapGSelect.attr('transform', transform);\r\n });\r\n\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n mapSvgSelect.call(zoomBehavior as any);\r\n\r\n zoomRef.current = zoomBehavior;\r\n // eslint-disable-next-line react-hooks/exhaustive-deps\r\n }, [height, width, zoomInteraction]);\r\n\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n const bounds = bbox(mapData as any);\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n const center = centerOfMass(mapData as any);\r\n const lonDiff = bounds[2] - bounds[0];\r\n const latDiff = bounds[3] - bounds[1];\r\n const scaleX = (((width * 190) / 960) * 360) / lonDiff;\r\n const scaleY = (((height * 190) / 678) * 180) / latDiff;\r\n const scaleVar = scale * Math.min(scaleX, scaleY);\r\n\r\n const projection =\r\n mapProjection === 'mercator'\r\n ? geoMercator()\r\n .rotate([0, 0])\r\n .center(centerPoint || (center.geometry.coordinates as [number, number]))\r\n .translate([width / 2, height / 2])\r\n .scale(scaleVar)\r\n : mapProjection === 'equalEarth'\r\n ? geoEqualEarth()\r\n .rotate([0, 0])\r\n .center(centerPoint || (center.geometry.coordinates as [number, number]))\r\n .translate([width / 2, height / 2])\r\n .scale(scaleVar)\r\n : mapProjection === 'naturalEarth'\r\n ? geoNaturalEarth1()\r\n .rotate([0, 0])\r\n .center(centerPoint || (center.geometry.coordinates as [number, number]))\r\n .translate([width / 2, height / 2])\r\n .scale(scaleVar)\r\n : mapProjection === 'orthographic'\r\n ? geoOrthographic()\r\n .rotate([0, 0])\r\n .center(centerPoint || (center.geometry.coordinates as [number, number]))\r\n .translate([width / 2, height / 2])\r\n .scale(scaleVar)\r\n : geoAlbersUsa()\r\n .rotate([0, 0])\r\n .center(centerPoint || (center.geometry.coordinates as [number, number]))\r\n .translate([width / 2, height / 2])\r\n .scale(scaleVar);\r\n\r\n const handleZoom = (direction: 'in' | 'out') => {\r\n if (!mapSvg.current || !zoomRef.current) return;\r\n const svg = select(mapSvg.current);\r\n svg.call(zoomRef.current.scaleBy, direction === 'in' ? 1.2 : 1 / 1.2);\r\n };\r\n\r\n return (\r\n <>\r\n <div className='relative'>\r\n <motion.svg\r\n width={`${width}px`}\r\n height={`${height}px`}\r\n viewBox={`0 0 ${width} ${height}`}\r\n ref={mapSvg}\r\n direction='ltr'\r\n >\r\n <g ref={mapG}>\r\n {customLayers.filter(d => d.position === 'before').map(d => d.layer)}\r\n {\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n mapData.features.map((d: any, i: number) => {\r\n return (\r\n <g key={i}>\r\n {d.geometry.type === 'MultiPolygon'\r\n ? // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n d.geometry.coordinates.map((el: any, j: any) => {\r\n let masterPath = '';\r\n el.forEach((geo: number[][]) => {\r\n let path = ' M';\r\n geo.forEach((c: number[], k: number) => {\r\n const point = projection([c[0], c[1]]) as [number, number];\r\n if (k !== geo.length - 1) path = `${path}${point[0]} ${point[1]}L`;\r\n else path = `${path}${point[0]} ${point[1]}`;\r\n });\r\n masterPath += path;\r\n });\r\n return (\r\n <path\r\n key={j}\r\n d={masterPath}\r\n style={{\r\n stroke: mapBorderColor,\r\n strokeWidth: mapBorderWidth,\r\n fill: mapNoDataColor,\r\n }}\r\n />\r\n );\r\n })\r\n : // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n d.geometry.coordinates.map((el: any, j: number) => {\r\n let path = 'M';\r\n el.forEach((c: number[], k: number) => {\r\n const point = projection([c[0], c[1]]) as [number, number];\r\n if (k !== el.length - 1) path = `${path}${point[0]} ${point[1]}L`;\r\n else path = `${path}${point[0]} ${point[1]}`;\r\n });\r\n return (\r\n <path\r\n key={j}\r\n d={path}\r\n style={{\r\n stroke: mapBorderColor,\r\n strokeWidth: mapBorderWidth,\r\n fill: mapNoDataColor,\r\n }}\r\n />\r\n );\r\n })}\r\n </g>\r\n );\r\n })\r\n }\r\n <AnimatePresence>\r\n {data.map(d => {\r\n const color =\r\n data.filter(el => el.color).length === 0\r\n ? colors[0]\r\n : !d.color\r\n ? Colors.gray\r\n : colors[colorDomain.indexOf(`${d.color}`)];\r\n return (\r\n <motion.g\r\n key={d.label || `${d.lat}-${d.long}`}\r\n variants={{\r\n initial: { opacity: 0 },\r\n whileInView: {\r\n opacity: selectedColor\r\n ? selectedColor === color\r\n ? 1\r\n : dimmedOpacity\r\n : highlightedDataPoints.length !== 0\r\n ? highlightedDataPoints.indexOf(d.label || '') !== -1\r\n ? 1\r\n : dimmedOpacity\r\n : 1,\r\n transition: { duration: animate.duration },\r\n },\r\n }}\r\n initial='initial'\r\n animate={isInView ? 'whileInView' : 'initial'}\r\n exit={{ opacity: 0, transition: { duration: animate.duration } }}\r\n onMouseEnter={event => {\r\n setMouseOverData(d);\r\n setEventY(event.clientY);\r\n setEventX(event.clientX);\r\n onSeriesMouseOver?.(d);\r\n }}\r\n onMouseMove={event => {\r\n setMouseOverData(d);\r\n setEventY(event.clientY);\r\n setEventX(event.clientX);\r\n }}\r\n onMouseLeave={() => {\r\n setMouseOverData(undefined);\r\n setEventX(undefined);\r\n setEventY(undefined);\r\n onSeriesMouseOver?.(undefined);\r\n }}\r\n onClick={() => {\r\n if (onSeriesMouseClick || detailsOnClick) {\r\n if (isEqual(mouseClickData, d) && resetSelectionOnDoubleClick) {\r\n setMouseClickData(undefined);\r\n onSeriesMouseClick?.(undefined);\r\n } else {\r\n setMouseClickData(d);\r\n onSeriesMouseClick?.(d);\r\n }\r\n }\r\n }}\r\n transform={`translate(${\r\n (projection([d.long, d.lat]) as [number, number])[0]\r\n },${(projection([d.long, d.lat]) as [number, number])[1]})`}\r\n >\r\n <motion.circle\r\n cx={0}\r\n cy={0}\r\n variants={{\r\n initial: {\r\n r: 0,\r\n fill:\r\n data.filter(el => el.color).length === 0\r\n ? colors[0]\r\n : !d.color\r\n ? Colors.gray\r\n : colors[colorDomain.indexOf(`${d.color}`)],\r\n stroke:\r\n data.filter(el => el.color).length === 0\r\n ? colors[0]\r\n : !d.color\r\n ? Colors.gray\r\n : colors[colorDomain.indexOf(`${d.color}`)],\r\n },\r\n whileInView: {\r\n r: !radiusScale ? radius : radiusScale(d.radius || 0),\r\n fill:\r\n data.filter(el => el.color).length === 0\r\n ? colors[0]\r\n : !d.color\r\n ? Colors.gray\r\n : colors[colorDomain.indexOf(`${d.color}`)],\r\n stroke:\r\n data.filter(el => el.color).length === 0\r\n ? colors[0]\r\n : !d.color\r\n ? Colors.gray\r\n : colors[colorDomain.indexOf(`${d.color}`)],\r\n transition: { duration: animate.duration },\r\n },\r\n }}\r\n initial='initial'\r\n animate={isInView ? 'whileInView' : 'initial'}\r\n exit={{ r: 0, transition: { duration: animate.duration } }}\r\n style={{\r\n fillOpacity: 0.8,\r\n }}\r\n />\r\n {showLabels && d.label ? (\r\n <motion.text\r\n variants={{\r\n initial: {\r\n opacity: 0,\r\n x: !radiusScale ? radius : radiusScale(d.radius || 0),\r\n fill:\r\n data.filter(el => el.color).length === 0\r\n ? colors[0]\r\n : !d.color\r\n ? Colors.gray\r\n : colors[colorDomain.indexOf(`${d.color}`)],\r\n },\r\n whileInView: {\r\n opacity: 1,\r\n x: !radiusScale ? radius : radiusScale(d.radius || 0),\r\n transition: { duration: animate.duration },\r\n fill:\r\n data.filter(el => el.color).length === 0\r\n ? colors[0]\r\n : !d.color\r\n ? Colors.gray\r\n : colors[colorDomain.indexOf(`${d.color}`)],\r\n },\r\n }}\r\n initial='initial'\r\n animate={isInView ? 'whileInView' : 'initial'}\r\n exit={{ opacity: 0, transition: { duration: animate.duration } }}\r\n y={0}\r\n className={cn('graph-value text-sm', classNames?.graphObjectValues)}\r\n style={{\r\n textAnchor: 'start',\r\n ...(styles?.graphObjectValues || {}),\r\n }}\r\n dx={4}\r\n dy={5}\r\n >\r\n {d.label}\r\n </motion.text>\r\n ) : null}\r\n </motion.g>\r\n );\r\n })}\r\n </AnimatePresence>\r\n {customLayers.filter(d => d.position === 'after').map(d => d.layer)}\r\n </g>\r\n </motion.svg>\r\n {data.filter(el => el.color).length === 0 || showColorScale === false ? null : (\r\n <div className={cn('absolute left-4 bottom-4 map-color-legend', classNames?.colorLegend)}>\r\n {showLegend ? (\r\n <>\r\n <div\r\n className='color-legend-close-button bg-[rgba(240,240,240,0.7)] dark:bg-[rgba(30,30,30,0.7)] border border-[var(--gray-400)] rounded-full w-6 h-6 p-[3px] cursor-pointer z-10 absolute right-[-0.75rem] top-[-0.75rem]'\r\n onClick={() => {\r\n setShowLegend(false);\r\n }}\r\n >\r\n <X />\r\n </div>\r\n <div className='p-2' style={{ backgroundColor: 'rgba(240,240,240, 0.7)' }}>\r\n {colorLegendTitle && colorLegendTitle !== '' ? (\r\n <p\r\n className='p-0 leading-normal overflow-hidden text-primary-gray-700 dark:text-primary-gray-300'\r\n style={{\r\n display: '-webkit-box',\r\n WebkitLineClamp: '1',\r\n WebkitBoxOrient: 'vertical',\r\n }}\r\n >\r\n {colorLegendTitle}\r\n </p>\r\n ) : null}\r\n <div className='flex flex-col gap-3'>\r\n {colorDomain.map((d, i) => (\r\n <div\r\n key={i}\r\n className='flex gap-2 items-center'\r\n onMouseOver={() => {\r\n setSelectedColor(colors[i % colors.length]);\r\n }}\r\n onMouseLeave={() => {\r\n setSelectedColor(undefined);\r\n }}\r\n >\r\n <div\r\n className='w-2 h-2 rounded-full'\r\n style={{ backgroundColor: colors[i % colors.length] }}\r\n />\r\n <P size='sm' marginBottom='none' leading='none'>\r\n {d}\r\n </P>\r\n </div>\r\n ))}\r\n </div>\r\n </div>\r\n </>\r\n ) : (\r\n <button\r\n type='button'\r\n className='mb-0 border-0 bg-transparent p-0 self-start'\r\n onClick={() => {\r\n setShowLegend(true);\r\n }}\r\n >\r\n <div className='show-color-legend-button items-start text-sm font-medium cursor-pointer p-2 mb-0 flex text-primary-black dark:text-primary-gray-300 bg-primary-gray-300 dark:bg-primary-gray-600 border-primary-gray-400 dark:border-primary-gray-500'>\r\n Show Legend\r\n </div>\r\n </button>\r\n )}\r\n </div>\r\n )}\r\n {zoomInteraction === 'button' && (\r\n <div className='absolute left-4 top-4 flex flex-col zoom-buttons'>\r\n <button\r\n onClick={() => handleZoom('in')}\r\n className='leading-0 px-2 py-3.5 text-primary-gray-700 border border-primary-gray-400 bg-primary-gray-200 dark:border-primary-gray-550 dark:bg-primary-gray-600 dark:text-primary-gray-100'\r\n >\r\n +\r\n </button>\r\n <button\r\n onClick={() => handleZoom('out')}\r\n className='leading-0 px-2 py-3.5 text-primary-gray-700 border border-t-0 border-primary-gray-400 bg-primary-gray-200 dark:border-primary-gray-550 dark:bg-primary-gray-600 dark:text-primary-gray-100'\r\n >\r\n –\r\n </button>\r\n </div>\r\n )}\r\n </div>\r\n {detailsOnClick && mouseClickData !== undefined ? (\r\n <DetailsModal\r\n body={detailsOnClick}\r\n data={mouseClickData}\r\n setData={setMouseClickData}\r\n className={classNames?.modal}\r\n />\r\n ) : null}\r\n {mouseOverData && tooltip && eventX && eventY ? (\r\n <Tooltip\r\n data={mouseOverData}\r\n body={tooltip}\r\n xPos={eventX}\r\n yPos={eventY}\r\n backgroundStyle={styles?.tooltip}\r\n className={classNames?.tooltip}\r\n />\r\n ) : null}\r\n </>\r\n );\r\n}\r\n","import { useState, useRef, useEffect, useEffectEvent, useMemo } from 'react';\r\nimport { format } from 'date-fns/format';\r\nimport { parse } from 'date-fns/parse';\r\nimport { SliderUI } from '@undp/design-system-react/SliderUI';\r\nimport { Spinner } from '@undp/design-system-react/Spinner';\r\n\r\nimport { Graph } from './Graph';\r\n\r\nimport { GraphFooter } from '@/Components/Elements/GraphFooter';\r\nimport { GraphHeader } from '@/Components/Elements/GraphHeader';\r\nimport {\r\n DotDensityMapDataType,\r\n Languages,\r\n SourcesDataType,\r\n StyleObject,\r\n ClassNameObject,\r\n ZoomInteractionTypes,\r\n MapProjectionTypes,\r\n CustomLayerDataType,\r\n AnimateDataType,\r\n TimelineDataType,\r\n} from '@/Types';\r\nimport { Colors } from '@/Components/ColorPalette';\r\nimport { fetchAndParseJSON } from '@/Utils/fetchAndParseData';\r\nimport { checkIfNullOrUndefined } from '@/Utils/checkIfNullOrUndefined';\r\nimport { Pause, Play } from '@/Components/Icons';\r\nimport { getSliderMarks } from '@/Utils/getSliderMarks';\r\nimport { uniqBy } from '@/Utils/uniqBy';\r\nimport { GraphArea, GraphContainer } from '@/Components/Elements/GraphContainer';\r\n\r\ninterface Props {\r\n // Data\r\n /** Array of data objects */\r\n data: DotDensityMapDataType[];\r\n // Titles, Labels, and Sources\r\n /** Title of the graph */\r\n graphTitle?: string | React.ReactNode;\r\n /** Description of the graph */\r\n graphDescription?: string | React.ReactNode;\r\n /** Footnote for the graph */\r\n footNote?: string | React.ReactNode;\r\n /** Source data for the graph */\r\n sources?: SourcesDataType[];\r\n /** Accessibility label */\r\n ariaLabel?: string;\r\n\r\n // Colors and Styling\r\n /** Color or array of colors for the circle */\r\n colors?: string | string[];\r\n /** Domain of colors for the graph */\r\n colorDomain?: string[];\r\n /** Title for the color legend */\r\n colorLegendTitle?: string;\r\n /** Color for the areas where data is no available */\r\n mapNoDataColor?: string;\r\n /** Background color of the graph */\r\n backgroundColor?: string | boolean;\r\n /** Custom styles for the graph. Each object should be a valid React CSS style object. */\r\n styles?: StyleObject;\r\n /** Custom class names */\r\n classNames?: ClassNameObject;\r\n\r\n // Size and Spacing\r\n /** Width of the graph */\r\n width?: number;\r\n /** Height of the graph */\r\n height?: number;\r\n /** Minimum height of the graph */\r\n minHeight?: number;\r\n /** Relative height scaling factor. This overwrites the height props */\r\n relativeHeight?: number;\r\n /** Padding around the graph. Defaults to 0 if no backgroundColor is mentioned else defaults to 1rem */\r\n padding?: string;\r\n\r\n // Graph Parameters\r\n /** Maximum radius of the circle */\r\n radius?: number;\r\n /** Map data as an object in geoJson format or a url for geoJson */\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n mapData?: any;\r\n /** Scaling factor for the map. Multiplies the scale number to scale. */\r\n scale?: number;\r\n /** Center point of the map */\r\n centerPoint?: [number, number];\r\n /** Defines the zoom mode for the map */\r\n zoomInteraction?: ZoomInteractionTypes;\r\n /** Stroke width of the regions in the map */\r\n mapBorderWidth?: number;\r\n /** Stroke color of the regions in the map */\r\n mapBorderColor?: string;\r\n /** Toggle if the map is a world map */\r\n isWorldMap?: boolean;\r\n /** Map projection type */\r\n mapProjection?: MapProjectionTypes;\r\n /** Extend of the allowed zoom in the map */\r\n zoomScaleExtend?: [number, number];\r\n /** Extend of the allowed panning in the map */\r\n zoomTranslateExtend?: [[number, number], [number, number]];\r\n /** Toggle visibility of labels */\r\n showLabels?: boolean;\r\n /** Maximum value mapped to the radius chart */\r\n maxRadiusValue?: number;\r\n /** Data points to highlight. Use the label value from data to highlight the data point */\r\n highlightedDataPoints?: (string | number)[];\r\n /** Defines the opacity of the non-highlighted data */\r\n dimmedOpacity?: number;\r\n /** Toggles if the graph animates in when loaded. */\r\n animate?: boolean | AnimateDataType;\r\n /** Toggle visibility of color scale. This is only applicable if the data props hae color parameter */\r\n showColorScale?: boolean;\r\n /** Toggle if color scale is collapsed by default. */\r\n collapseColorScaleByDefault?: boolean;\r\n /** Toggles the visibility of Antarctica in the default map. Only applicable for the default map. */\r\n showAntarctica?: boolean;\r\n /** Optional SVG <g> element or function that renders custom content behind or in front of the graph. */\r\n customLayers?: CustomLayerDataType[];\r\n /** Configures playback and slider controls for animating the chart over time. The data must have a key date for it to work properly. */\r\n timeline?: TimelineDataType;\r\n /** Enable graph download option as png */\r\n graphDownload?: boolean;\r\n /** Enable data download option as a csv */\r\n dataDownload?: boolean;\r\n /** Reset selection on double-click. Only applicable when used in a dashboard context with filters. */\r\n resetSelectionOnDoubleClick?: boolean;\r\n\r\n // Interactions and Callbacks\r\n /** Tooltip content. If the type is string then this uses the [handlebar](../?path=/docs/misc-handlebars-templates-and-custom-helpers--docs) template to display the data */\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n tooltip?: string | ((_d: any) => React.ReactNode);\r\n /** Details displayed on the modal when user clicks of a data point. If the type is string then this uses the [handlebar](../?path=/docs/misc-handlebars-templates-and-custom-helpers--docs) template to display the data */\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n detailsOnClick?: string | ((_d: any) => React.ReactNode);\r\n /** Callback for mouse over event */\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n onSeriesMouseOver?: (_d: any) => void;\r\n /** Callback for mouse click event */\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n onSeriesMouseClick?: (_d: any) => void;\r\n\r\n // Configuration and Options\r\n /** Language setting */\r\n language?: Languages;\r\n /** Color theme */\r\n theme?: 'light' | 'dark';\r\n /** Unique ID for the graph */\r\n graphID?: string;\r\n}\r\n\r\nexport function DotDensityMap(props: Props) {\r\n const {\r\n data,\r\n mapData = 'https://raw.githubusercontent.com/UNDP-Data/dv-country-geojson/refs/heads/main/worldMap.json',\r\n graphTitle,\r\n colors,\r\n sources,\r\n graphDescription,\r\n height,\r\n width,\r\n footNote = 'The designations employed and the presentation of material on this map do not imply the expression of any opinion whatsoever on the part of the Secretariat of the United Nations or UNDP concerning the legal status of any country, territory, city or area or its authorities, or concerning the delimitation of its frontiers or boundaries.',\r\n colorLegendTitle,\r\n colorDomain,\r\n radius = 5,\r\n scale = 0.95,\r\n centerPoint,\r\n padding,\r\n mapBorderWidth = 0.5,\r\n mapNoDataColor = Colors.light.graphNoData,\r\n backgroundColor = false,\r\n showLabels = false,\r\n mapBorderColor = Colors.light.grays['gray-500'],\r\n tooltip,\r\n relativeHeight,\r\n onSeriesMouseOver,\r\n isWorldMap = true,\r\n showColorScale = true,\r\n zoomScaleExtend = [0.8, 6],\r\n zoomTranslateExtend,\r\n graphID,\r\n highlightedDataPoints = [],\r\n onSeriesMouseClick,\r\n graphDownload = false,\r\n dataDownload = false,\r\n showAntarctica = false,\r\n language = 'en',\r\n minHeight = 0,\r\n theme = 'light',\r\n ariaLabel,\r\n resetSelectionOnDoubleClick = true,\r\n detailsOnClick,\r\n styles,\r\n classNames,\r\n mapProjection,\r\n zoomInteraction = 'button',\r\n animate = false,\r\n dimmedOpacity = 0.3,\r\n customLayers = [],\r\n maxRadiusValue,\r\n timeline = { enabled: false, autoplay: false, showOnlyActiveDate: true },\r\n collapseColorScaleByDefault,\r\n } = props;\r\n\r\n const [svgWidth, setSvgWidth] = useState(0);\r\n const [svgHeight, setSvgHeight] = useState(0);\r\n const [play, setPlay] = useState(timeline.autoplay);\r\n const uniqDatesSorted = useMemo(() => {\r\n const dates = [\r\n ...new Set(\r\n data\r\n .filter(d => d.date)\r\n .map(d => parse(`${d.date}`, timeline.dateFormat || 'yyyy', new Date()).getTime()),\r\n ),\r\n ];\r\n dates.sort((a, b) => a - b);\r\n return dates;\r\n }, [data, timeline.dateFormat]);\r\n const [index, setIndex] = useState(timeline.autoplay ? 0 : uniqDatesSorted.length - 1);\r\n\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n const [mapShape, setMapShape] = useState<any>(undefined);\r\n\r\n const graphDiv = useRef<HTMLDivElement>(null);\r\n const graphParentDiv = useRef<HTMLDivElement>(null);\r\n useEffect(() => {\r\n const resizeObserver = new ResizeObserver(entries => {\r\n setSvgWidth(entries[0].target.clientWidth || 620);\r\n setSvgHeight(entries[0].target.clientHeight || 480);\r\n });\r\n if (graphDiv.current) {\r\n resizeObserver.observe(graphDiv.current);\r\n }\r\n return () => resizeObserver.disconnect();\r\n }, []);\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n const onUpdateShape = useEffectEvent((shape: any) => {\r\n setMapShape(shape);\r\n });\r\n useEffect(() => {\r\n if (typeof mapData === 'string') {\r\n const fetchData = fetchAndParseJSON(mapData);\r\n fetchData.then(d => {\r\n onUpdateShape(d);\r\n });\r\n } else {\r\n onUpdateShape(mapData);\r\n }\r\n }, [mapData]);\r\n\r\n useEffect(() => {\r\n const interval = setInterval(\r\n () => {\r\n setIndex(i => (i < uniqDatesSorted.length - 1 ? i + 1 : 0));\r\n },\r\n (timeline.speed || 2) * 1000,\r\n );\r\n if (!play) clearInterval(interval);\r\n return () => clearInterval(interval);\r\n }, [uniqDatesSorted, play, timeline.speed]);\r\n\r\n const markObj = getSliderMarks(\r\n uniqDatesSorted,\r\n index,\r\n timeline.showOnlyActiveDate,\r\n timeline.dateFormat || 'yyyy',\r\n );\r\n return (\r\n <GraphContainer\r\n className={classNames?.graphContainer}\r\n style={styles?.graphContainer}\r\n id={graphID}\r\n ref={graphParentDiv}\r\n aria-label={ariaLabel}\r\n backgroundColor={backgroundColor}\r\n theme={theme}\r\n language={language}\r\n minHeight={minHeight}\r\n width={width}\r\n height={height}\r\n relativeHeight={relativeHeight}\r\n padding={padding}\r\n >\r\n {graphTitle || graphDescription || graphDownload || dataDownload ? (\r\n <GraphHeader\r\n styles={{\r\n title: styles?.title,\r\n description: styles?.description,\r\n }}\r\n classNames={{\r\n title: classNames?.title,\r\n description: classNames?.description,\r\n }}\r\n graphTitle={graphTitle}\r\n graphDescription={graphDescription}\r\n width={width}\r\n graphDownload={graphDownload ? graphParentDiv : undefined}\r\n dataDownload={\r\n dataDownload\r\n ? data.map(d => d.data).filter(d => d !== undefined).length > 0\r\n ? data.map(d => d.data).filter(d => d !== undefined)\r\n : data.filter(d => d !== undefined)\r\n : null\r\n }\r\n />\r\n ) : null}\r\n {timeline.enabled && uniqDatesSorted.length > 0 && markObj ? (\r\n <div className='flex gap-6 items-center' dir='ltr'>\r\n <button\r\n type='button'\r\n onClick={() => {\r\n setPlay(!play);\r\n }}\r\n className='p-0 border-0 cursor-pointer bg-transparent'\r\n aria-label={play ? 'Click to pause animation' : 'Click to play animation'}\r\n >\r\n {play ? <Pause /> : <Play />}\r\n </button>\r\n <SliderUI\r\n min={uniqDatesSorted[0]}\r\n max={uniqDatesSorted[uniqDatesSorted.length - 1]}\r\n marks={markObj}\r\n step={null}\r\n defaultValue={uniqDatesSorted[uniqDatesSorted.length - 1]}\r\n value={uniqDatesSorted[index]}\r\n onChangeComplete={nextValue => {\r\n setIndex(uniqDatesSorted.indexOf(nextValue as number));\r\n }}\r\n onChange={nextValue => {\r\n setIndex(uniqDatesSorted.indexOf(nextValue as number));\r\n }}\r\n aria-label='Time slider. Use arrow keys to adjust selected time period.'\r\n />\r\n </div>\r\n ) : null}\r\n <GraphArea ref={graphDiv}>\r\n {svgWidth && svgHeight && mapShape ? (\r\n <Graph\r\n data={data.filter(d =>\r\n timeline.enabled\r\n ? d.date === format(new Date(uniqDatesSorted[index]), timeline.dateFormat || 'yyyy')\r\n : d,\r\n )}\r\n mapData={\r\n showAntarctica\r\n ? mapShape\r\n : {\r\n ...mapShape,\r\n features: mapShape.features.filter(\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n (el: any) => el.properties.NAME !== 'Antarctica',\r\n ),\r\n }\r\n }\r\n colorDomain={\r\n data.filter(el => el.color).length === 0\r\n ? []\r\n : colorDomain || (uniqBy(data, 'color', true) as string[])\r\n }\r\n width={svgWidth}\r\n height={svgHeight}\r\n scale={scale}\r\n centerPoint={centerPoint}\r\n colors={\r\n data.filter(el => el.color).length === 0\r\n ? colors\r\n ? [colors as string]\r\n : [Colors.primaryColors['blue-600']]\r\n : (colors as string[] | undefined) || Colors[theme].categoricalColors.colors\r\n }\r\n colorLegendTitle={colorLegendTitle}\r\n radius={radius}\r\n mapBorderWidth={mapBorderWidth}\r\n mapNoDataColor={mapNoDataColor}\r\n mapBorderColor={mapBorderColor}\r\n tooltip={tooltip}\r\n onSeriesMouseOver={onSeriesMouseOver}\r\n showLabels={showLabels}\r\n isWorldMap={isWorldMap}\r\n showColorScale={showColorScale}\r\n zoomScaleExtend={zoomScaleExtend}\r\n zoomTranslateExtend={zoomTranslateExtend}\r\n onSeriesMouseClick={onSeriesMouseClick}\r\n highlightedDataPoints={highlightedDataPoints}\r\n resetSelectionOnDoubleClick={resetSelectionOnDoubleClick}\r\n styles={styles}\r\n classNames={classNames}\r\n zoomInteraction={zoomInteraction}\r\n detailsOnClick={detailsOnClick}\r\n mapProjection={mapProjection || (isWorldMap ? 'naturalEarth' : 'mercator')}\r\n animate={\r\n animate === true\r\n ? { duration: 0.5, once: true, amount: 0.5 }\r\n : animate || { duration: 0, once: true, amount: 0 }\r\n }\r\n dimmedOpacity={dimmedOpacity}\r\n customLayers={customLayers}\r\n maxRadiusValue={\r\n !checkIfNullOrUndefined(maxRadiusValue)\r\n ? (maxRadiusValue as number)\r\n : Math.max(...data.map(d => d.radius).filter(d => d !== undefined && d !== null))\r\n }\r\n collapseColorScaleByDefault={collapseColorScaleByDefault}\r\n />\r\n ) : (\r\n <div\r\n style={{\r\n height: `${Math.max(\r\n minHeight,\r\n height ||\r\n (relativeHeight\r\n ? minHeight\r\n ? (width || svgWidth) * relativeHeight > minHeight\r\n ? (width || svgWidth) * relativeHeight\r\n : minHeight\r\n : (width || svgWidth) * relativeHeight\r\n : svgHeight),\r\n )}px`,\r\n }}\r\n className='flex items-center justify-center'\r\n >\r\n <Spinner aria-label='Loading graph' />\r\n </div>\r\n )}\r\n </GraphArea>\r\n {sources || footNote ? (\r\n <GraphFooter\r\n styles={{ footnote: styles?.footnote, source: styles?.source }}\r\n classNames={{\r\n footnote: classNames?.footnote,\r\n source: classNames?.source,\r\n }}\r\n sources={sources}\r\n footNote={footNote}\r\n width={width}\r\n />\r\n ) : null}\r\n </GraphContainer>\r\n );\r\n}\r\n"],"names":["Graph","props","data","colors","mapData","colorLegendTitle","colorDomain","radius","height","width","scale","centerPoint","tooltip","showLabels","mapBorderWidth","mapBorderColor","mapNoDataColor","onSeriesMouseOver","showColorScale","zoomScaleExtend","zoomTranslateExtend","highlightedDataPoints","onSeriesMouseClick","resetSelectionOnDoubleClick","detailsOnClick","styles","classNames","mapProjection","zoomInteraction","animate","dimmedOpacity","customLayers","maxRadiusValue","collapseColorScaleByDefault","selectedColor","setSelectedColor","useState","undefined","showLegend","setShowLegend","zoomRef","useRef","mouseClickData","setMouseClickData","mouseOverData","setMouseOverData","eventX","setEventX","eventY","setEventY","mapSvg","isInView","useInView","once","amount","mapG","radiusScale","filter","d","length","scaleSqrt","domain","range","nice","useEffect","mapGSelect","select","current","mapSvgSelect","zoomFilter","e","type","includes","isWheel","isTouch","startsWith","isDrag","ctrlKey","button","zoomBehavior","zoom","scaleExtent","translateExtent","on","transform","attr","call","bounds","bbox","center","centerOfMass","lonDiff","latDiff","scaleX","scaleY","scaleVar","Math","min","projection","geoMercator","rotate","geometry","coordinates","translate","geoEqualEarth","geoNaturalEarth1","geoOrthographic","geoAlbersUsa","handleZoom","direction","svg","scaleBy","jsxs","Fragment","jsx","motion","position","map","layer","features","i","el","j","masterPath","forEach","geo","path","c","k","point","stroke","strokeWidth","fill","AnimatePresence","color","indexOf","Colors","gray","initial","opacity","whileInView","label","transition","duration","event","clientY","clientX","isEqual","long","lat","r","fillOpacity","x","cn","graphObjectValues","textAnchor","colorLegend","X","backgroundColor","display","WebkitLineClamp","WebkitBoxOrient","P","DetailsModal","modal","Tooltip","DotDensityMap","$","_c","t0","graphTitle","sources","graphDescription","footNote","t1","t2","t3","padding","t4","t5","t6","t7","t8","relativeHeight","isWorldMap","t9","t10","t11","graphID","t12","graphDownload","t13","dataDownload","t14","showAntarctica","t15","language","t16","minHeight","t17","theme","t18","ariaLabel","t19","t20","t21","t22","t23","timeline","t24","light","graphNoData","grays","t25","t26","t27","t28","enabled","autoplay","showOnlyActiveDate","svgWidth","setSvgWidth","svgHeight","setSvgHeight","play","setPlay","dates","dateFormat","t29","d_0","parse","date","Date","getTime","Set","_temp","sort","_temp2","uniqDatesSorted","index","setIndex","mapShape","setMapShape","graphDiv","graphParentDiv","t30","Symbol","for","resizeObserver","ResizeObserver","entries","target","clientWidth","clientHeight","observe","disconnect","t31","shape","onUpdateShape","useEffectEvent","t32","fetchAndParseJSON","then","d_1","t33","t34","t35","speed","interval","setInterval","clearInterval","t36","t37","getSliderMarks","markObj","t38","graphContainer","t39","t40","description","title","GraphHeader","_temp3","_temp4","_temp5","_temp6","_temp7","t41","Pause","Play","SliderUI","nextValue","nextValue_0","t42","GraphArea","d_7","format","_temp8","_temp9","uniqBy","_temp0","primaryColors","categoricalColors","checkIfNullOrUndefined","max","_temp1","_temp10","Spinner","t43","footnote","source","GraphFooter","t44","GraphContainer","d_9","d_8","el_1","el_0","properties","NAME","d_4","d_3","d_2","d_6","d_5","a","b"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"DotDensityMap.js","sources":["../src/Components/Graphs/Maps/DotDensityMap/Graph.tsx","../src/Components/Graphs/Maps/DotDensityMap/index.tsx"],"sourcesContent":["import isEqual from 'fast-deep-equal';\r\nimport { useEffect, useMemo, useRef, useState } from 'react';\r\nimport {\r\n geoAlbersUsa,\r\n geoEqualEarth,\r\n geoMercator,\r\n geoNaturalEarth1,\r\n geoOrthographic,\r\n geoPath,\r\n} from 'd3-geo';\r\nimport { D3ZoomEvent, zoom, ZoomBehavior } from 'd3-zoom';\r\nimport { select } from 'd3-selection';\r\nimport { scaleSqrt } from 'd3-scale';\r\nimport { P } from '@undp/design-system-react/Typography';\r\nimport bbox from '@turf/bbox';\r\nimport centerOfMass from '@turf/center-of-mass';\r\nimport { AnimatePresence, motion, useInView } from 'motion/react';\r\nimport { cn } from '@undp/design-system-react/cn';\r\nimport rewind from '@turf/rewind';\r\nimport { FeatureCollection } from 'geojson';\r\n\r\nimport {\r\n AnimateDataType,\r\n ClassNameObject,\r\n CustomLayerDataType,\r\n DotDensityMapDataType,\r\n MapProjectionTypes,\r\n StyleObject,\r\n ZoomInteractionTypes,\r\n} from '@/Types';\r\nimport { Tooltip } from '@/Components/Elements/Tooltip';\r\nimport { Colors } from '@/Components/ColorPalette';\r\nimport { X } from '@/Components/Icons';\r\nimport { DetailsModal } from '@/Components/Elements/DetailsModal';\r\n\r\ninterface Props {\r\n data: DotDensityMapDataType[];\r\n\r\n mapData: FeatureCollection;\r\n colorDomain: string[];\r\n width: number;\r\n height: number;\r\n scale: number;\r\n centerPoint?: [number, number];\r\n colors: string[];\r\n colorLegendTitle?: string;\r\n radius: number;\r\n mapBorderWidth: number;\r\n mapNoDataColor: string;\r\n showLabels: boolean;\r\n mapBorderColor: string;\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n tooltip?: string | ((_d: any) => React.ReactNode);\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n onSeriesMouseOver?: (_d: any) => void;\r\n isWorldMap: boolean;\r\n showColorScale: boolean;\r\n zoomScaleExtend: [number, number];\r\n zoomTranslateExtend?: [[number, number], [number, number]];\r\n highlightedDataPoints: (string | number)[];\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n onSeriesMouseClick?: (_d: any) => void;\r\n resetSelectionOnDoubleClick: boolean;\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n detailsOnClick?: string | ((_d: any) => React.ReactNode);\r\n styles?: StyleObject;\r\n classNames?: ClassNameObject;\r\n zoomInteraction: ZoomInteractionTypes;\r\n mapProjection: MapProjectionTypes;\r\n animate: AnimateDataType;\r\n dimmedOpacity: number;\r\n customLayers: CustomLayerDataType[];\r\n maxRadiusValue: number;\r\n collapseColorScaleByDefault?: boolean;\r\n projectionRotate: [number, number] | [number, number, number];\r\n rewindCoordinatesInMapData: boolean;\r\n}\r\n\r\nexport function Graph(props: Props) {\r\n const {\r\n data,\r\n colors,\r\n mapData,\r\n colorLegendTitle,\r\n colorDomain,\r\n radius,\r\n height,\r\n width,\r\n scale,\r\n centerPoint,\r\n tooltip,\r\n showLabels,\r\n mapBorderWidth,\r\n mapBorderColor,\r\n mapNoDataColor,\r\n onSeriesMouseOver,\r\n showColorScale,\r\n zoomScaleExtend,\r\n zoomTranslateExtend,\r\n highlightedDataPoints,\r\n onSeriesMouseClick,\r\n resetSelectionOnDoubleClick,\r\n detailsOnClick,\r\n styles,\r\n classNames,\r\n mapProjection,\r\n zoomInteraction,\r\n animate,\r\n dimmedOpacity,\r\n customLayers,\r\n maxRadiusValue,\r\n collapseColorScaleByDefault,\r\n projectionRotate,\r\n rewindCoordinatesInMapData,\r\n } = props;\r\n const formattedMapData = useMemo(() => {\r\n if (!rewindCoordinatesInMapData) return mapData;\r\n\r\n return rewind(mapData, { reverse: true }) as FeatureCollection;\r\n }, [mapData, rewindCoordinatesInMapData]);\r\n const [selectedColor, setSelectedColor] = useState<string | undefined>(undefined);\r\n\r\n const [showLegend, setShowLegend] = useState(\r\n collapseColorScaleByDefault === undefined ? !(width < 680) : !collapseColorScaleByDefault,\r\n );\r\n const zoomRef = useRef<ZoomBehavior<SVGSVGElement, unknown> | null>(null);\r\n\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n const [mouseClickData, setMouseClickData] = useState<any>(undefined);\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n const [mouseOverData, setMouseOverData] = useState<any>(undefined);\r\n const [eventX, setEventX] = useState<number | undefined>(undefined);\r\n const [eventY, setEventY] = useState<number | undefined>(undefined);\r\n const mapSvg = useRef<SVGSVGElement>(null);\r\n const isInView = useInView(mapSvg, {\r\n once: animate.once,\r\n amount: animate.amount,\r\n });\r\n const mapG = useRef<SVGGElement>(null);\r\n const radiusScale =\r\n data.filter(d => d.radius === undefined || d.radius === null).length !== data.length\r\n ? scaleSqrt().domain([0, maxRadiusValue]).range([0.25, radius]).nice()\r\n : undefined;\r\n\r\n useEffect(() => {\r\n const mapGSelect = select(mapG.current);\r\n const mapSvgSelect = select(mapSvg.current);\r\n const zoomFilter = (e: D3ZoomEvent<SVGSVGElement, unknown>['sourceEvent']) => {\r\n if (zoomInteraction === 'noZoom') return false;\r\n if (zoomInteraction === 'button') return !e.type.includes('wheel');\r\n const isWheel = e.type === 'wheel';\r\n const isTouch = e.type.startsWith('touch');\r\n const isDrag = e.type === 'mousedown' || e.type === 'mousemove';\r\n\r\n if (isTouch) return true;\r\n if (isWheel) {\r\n if (zoomInteraction === 'scroll') return true;\r\n return e.ctrlKey;\r\n }\r\n return isDrag && !e.button && !e.ctrlKey;\r\n };\r\n const zoomBehavior = zoom<SVGSVGElement, unknown>()\r\n .scaleExtent(zoomScaleExtend)\r\n .translateExtent(\r\n zoomTranslateExtend || [\r\n [-20, -20],\r\n [width + 20, height + 20],\r\n ],\r\n )\r\n .filter(zoomFilter)\r\n .on('zoom', ({ transform }) => {\r\n mapGSelect.attr('transform', transform);\r\n });\r\n\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n mapSvgSelect.call(zoomBehavior as any);\r\n\r\n zoomRef.current = zoomBehavior;\r\n // eslint-disable-next-line react-hooks/exhaustive-deps\r\n }, [height, width, zoomInteraction]);\r\n\r\n const bounds = bbox(formattedMapData);\r\n\r\n const center = centerOfMass(formattedMapData);\r\n const lonDiff = bounds[2] - bounds[0];\r\n const latDiff = bounds[3] - bounds[1];\r\n const scaleX = (((width * 190) / 960) * 360) / lonDiff;\r\n const scaleY = (((height * 190) / 678) * 180) / latDiff;\r\n const scaleVar = scale * Math.min(scaleX, scaleY);\r\n\r\n const projection =\r\n mapProjection === 'mercator'\r\n ? geoMercator()\r\n .rotate(projectionRotate)\r\n .center(centerPoint || (center.geometry.coordinates as [number, number]))\r\n .translate([width / 2, height / 2])\r\n .scale(scaleVar)\r\n : mapProjection === 'equalEarth'\r\n ? geoEqualEarth()\r\n .rotate(projectionRotate)\r\n .center(centerPoint || (center.geometry.coordinates as [number, number]))\r\n .translate([width / 2, height / 2])\r\n .scale(scaleVar)\r\n : mapProjection === 'naturalEarth'\r\n ? geoNaturalEarth1()\r\n .rotate(projectionRotate)\r\n .center(centerPoint || (center.geometry.coordinates as [number, number]))\r\n .translate([width / 2, height / 2])\r\n .scale(scaleVar)\r\n : mapProjection === 'orthographic'\r\n ? geoOrthographic()\r\n .rotate(projectionRotate)\r\n .center(centerPoint || (center.geometry.coordinates as [number, number]))\r\n .translate([width / 2, height / 2])\r\n .scale(scaleVar)\r\n : geoAlbersUsa()\r\n .rotate(projectionRotate)\r\n .center(centerPoint || (center.geometry.coordinates as [number, number]))\r\n .translate([width / 2, height / 2])\r\n .scale(scaleVar);\r\n\r\n const pathGenerator = geoPath().projection(projection);\r\n const handleZoom = (direction: 'in' | 'out') => {\r\n if (!mapSvg.current || !zoomRef.current) return;\r\n const svg = select(mapSvg.current);\r\n svg.call(zoomRef.current.scaleBy, direction === 'in' ? 1.2 : 1 / 1.2);\r\n };\r\n\r\n return (\r\n <>\r\n <div className='relative'>\r\n <motion.svg\r\n width={`${width}px`}\r\n height={`${height}px`}\r\n viewBox={`0 0 ${width} ${height}`}\r\n ref={mapSvg}\r\n direction='ltr'\r\n >\r\n <g ref={mapG}>\r\n {customLayers.filter(d => d.position === 'before').map(d => d.layer)}\r\n {formattedMapData.features.map((d, i: number) => {\r\n const path = pathGenerator(d);\r\n if (!path) return null;\r\n return (\r\n <path\r\n d={path}\r\n key={i}\r\n style={{\r\n stroke: mapBorderColor,\r\n strokeWidth: mapBorderWidth,\r\n fill: mapNoDataColor,\r\n }}\r\n />\r\n );\r\n })}\r\n <AnimatePresence>\r\n {data.map(d => {\r\n const color =\r\n data.filter(el => el.color).length === 0\r\n ? colors[0]\r\n : !d.color\r\n ? Colors.gray\r\n : colors[colorDomain.indexOf(`${d.color}`)];\r\n return (\r\n <motion.g\r\n key={d.label || `${d.lat}-${d.long}`}\r\n variants={{\r\n initial: { opacity: 0 },\r\n whileInView: {\r\n opacity: selectedColor\r\n ? selectedColor === color\r\n ? 1\r\n : dimmedOpacity\r\n : highlightedDataPoints.length !== 0\r\n ? highlightedDataPoints.indexOf(d.label || '') !== -1\r\n ? 1\r\n : dimmedOpacity\r\n : 1,\r\n transition: { duration: animate.duration },\r\n },\r\n }}\r\n initial='initial'\r\n animate={isInView ? 'whileInView' : 'initial'}\r\n exit={{ opacity: 0, transition: { duration: animate.duration } }}\r\n onMouseEnter={event => {\r\n setMouseOverData(d);\r\n setEventY(event.clientY);\r\n setEventX(event.clientX);\r\n onSeriesMouseOver?.(d);\r\n }}\r\n onMouseMove={event => {\r\n setMouseOverData(d);\r\n setEventY(event.clientY);\r\n setEventX(event.clientX);\r\n }}\r\n onMouseLeave={() => {\r\n setMouseOverData(undefined);\r\n setEventX(undefined);\r\n setEventY(undefined);\r\n onSeriesMouseOver?.(undefined);\r\n }}\r\n onClick={() => {\r\n if (onSeriesMouseClick || detailsOnClick) {\r\n if (isEqual(mouseClickData, d) && resetSelectionOnDoubleClick) {\r\n setMouseClickData(undefined);\r\n onSeriesMouseClick?.(undefined);\r\n } else {\r\n setMouseClickData(d);\r\n onSeriesMouseClick?.(d);\r\n }\r\n }\r\n }}\r\n transform={`translate(${\r\n (projection([d.long, d.lat]) as [number, number])[0]\r\n },${(projection([d.long, d.lat]) as [number, number])[1]})`}\r\n >\r\n <motion.circle\r\n cx={0}\r\n cy={0}\r\n variants={{\r\n initial: {\r\n r: 0,\r\n fill:\r\n data.filter(el => el.color).length === 0\r\n ? colors[0]\r\n : !d.color\r\n ? Colors.gray\r\n : colors[colorDomain.indexOf(`${d.color}`)],\r\n stroke:\r\n data.filter(el => el.color).length === 0\r\n ? colors[0]\r\n : !d.color\r\n ? Colors.gray\r\n : colors[colorDomain.indexOf(`${d.color}`)],\r\n },\r\n whileInView: {\r\n r: !radiusScale ? radius : radiusScale(d.radius || 0),\r\n fill:\r\n data.filter(el => el.color).length === 0\r\n ? colors[0]\r\n : !d.color\r\n ? Colors.gray\r\n : colors[colorDomain.indexOf(`${d.color}`)],\r\n stroke:\r\n data.filter(el => el.color).length === 0\r\n ? colors[0]\r\n : !d.color\r\n ? Colors.gray\r\n : colors[colorDomain.indexOf(`${d.color}`)],\r\n transition: { duration: animate.duration },\r\n },\r\n }}\r\n initial='initial'\r\n animate={isInView ? 'whileInView' : 'initial'}\r\n exit={{ r: 0, transition: { duration: animate.duration } }}\r\n style={{\r\n fillOpacity: 0.8,\r\n }}\r\n />\r\n {showLabels && d.label ? (\r\n <motion.text\r\n variants={{\r\n initial: {\r\n opacity: 0,\r\n x: !radiusScale ? radius : radiusScale(d.radius || 0),\r\n fill:\r\n data.filter(el => el.color).length === 0\r\n ? colors[0]\r\n : !d.color\r\n ? Colors.gray\r\n : colors[colorDomain.indexOf(`${d.color}`)],\r\n },\r\n whileInView: {\r\n opacity: 1,\r\n x: !radiusScale ? radius : radiusScale(d.radius || 0),\r\n transition: { duration: animate.duration },\r\n fill:\r\n data.filter(el => el.color).length === 0\r\n ? colors[0]\r\n : !d.color\r\n ? Colors.gray\r\n : colors[colorDomain.indexOf(`${d.color}`)],\r\n },\r\n }}\r\n initial='initial'\r\n animate={isInView ? 'whileInView' : 'initial'}\r\n exit={{ opacity: 0, transition: { duration: animate.duration } }}\r\n y={0}\r\n className={cn('graph-value text-sm', classNames?.graphObjectValues)}\r\n style={{\r\n textAnchor: 'start',\r\n ...(styles?.graphObjectValues || {}),\r\n }}\r\n dx={4}\r\n dy={5}\r\n >\r\n {d.label}\r\n </motion.text>\r\n ) : null}\r\n </motion.g>\r\n );\r\n })}\r\n </AnimatePresence>\r\n {customLayers.filter(d => d.position === 'after').map(d => d.layer)}\r\n </g>\r\n </motion.svg>\r\n {data.filter(el => el.color).length === 0 || showColorScale === false ? null : (\r\n <div className={cn('absolute left-4 bottom-4 map-color-legend', classNames?.colorLegend)}>\r\n {showLegend ? (\r\n <>\r\n <div\r\n className='color-legend-close-button bg-[rgba(240,240,240,0.7)] dark:bg-[rgba(30,30,30,0.7)] border border-[var(--gray-400)] rounded-full w-6 h-6 p-[3px] cursor-pointer z-10 absolute right-[-0.75rem] top-[-0.75rem]'\r\n onClick={() => {\r\n setShowLegend(false);\r\n }}\r\n >\r\n <X />\r\n </div>\r\n <div className='p-2' style={{ backgroundColor: 'rgba(240,240,240, 0.7)' }}>\r\n {colorLegendTitle && colorLegendTitle !== '' ? (\r\n <p\r\n className='p-0 leading-normal overflow-hidden text-primary-gray-700 dark:text-primary-gray-300'\r\n style={{\r\n display: '-webkit-box',\r\n WebkitLineClamp: '1',\r\n WebkitBoxOrient: 'vertical',\r\n }}\r\n >\r\n {colorLegendTitle}\r\n </p>\r\n ) : null}\r\n <div className='flex flex-col gap-3'>\r\n {colorDomain.map((d, i) => (\r\n <div\r\n key={i}\r\n className='flex gap-2 items-center'\r\n onMouseOver={() => {\r\n setSelectedColor(colors[i % colors.length]);\r\n }}\r\n onMouseLeave={() => {\r\n setSelectedColor(undefined);\r\n }}\r\n >\r\n <div\r\n className='w-2 h-2 rounded-full'\r\n style={{ backgroundColor: colors[i % colors.length] }}\r\n />\r\n <P size='sm' marginBottom='none' leading='none'>\r\n {d}\r\n </P>\r\n </div>\r\n ))}\r\n </div>\r\n </div>\r\n </>\r\n ) : (\r\n <button\r\n type='button'\r\n className='mb-0 border-0 bg-transparent p-0 self-start'\r\n onClick={() => {\r\n setShowLegend(true);\r\n }}\r\n >\r\n <div className='show-color-legend-button items-start text-sm font-medium cursor-pointer p-2 mb-0 flex text-primary-black dark:text-primary-gray-300 bg-primary-gray-300 dark:bg-primary-gray-600 border-primary-gray-400 dark:border-primary-gray-500'>\r\n Show Legend\r\n </div>\r\n </button>\r\n )}\r\n </div>\r\n )}\r\n {zoomInteraction === 'button' && (\r\n <div className='absolute left-4 top-4 flex flex-col zoom-buttons'>\r\n <button\r\n onClick={() => handleZoom('in')}\r\n className='leading-0 px-2 py-3.5 text-primary-gray-700 border border-primary-gray-400 bg-primary-gray-200 dark:border-primary-gray-550 dark:bg-primary-gray-600 dark:text-primary-gray-100'\r\n >\r\n +\r\n </button>\r\n <button\r\n onClick={() => handleZoom('out')}\r\n className='leading-0 px-2 py-3.5 text-primary-gray-700 border border-t-0 border-primary-gray-400 bg-primary-gray-200 dark:border-primary-gray-550 dark:bg-primary-gray-600 dark:text-primary-gray-100'\r\n >\r\n –\r\n </button>\r\n </div>\r\n )}\r\n </div>\r\n {detailsOnClick && mouseClickData !== undefined ? (\r\n <DetailsModal\r\n body={detailsOnClick}\r\n data={mouseClickData}\r\n setData={setMouseClickData}\r\n className={classNames?.modal}\r\n />\r\n ) : null}\r\n {mouseOverData && tooltip && eventX && eventY ? (\r\n <Tooltip\r\n data={mouseOverData}\r\n body={tooltip}\r\n xPos={eventX}\r\n yPos={eventY}\r\n backgroundStyle={styles?.tooltip}\r\n className={classNames?.tooltip}\r\n />\r\n ) : null}\r\n </>\r\n );\r\n}\r\n","import { useState, useRef, useEffect, useEffectEvent, useMemo } from 'react';\r\nimport { format } from 'date-fns/format';\r\nimport { parse } from 'date-fns/parse';\r\nimport { SliderUI } from '@undp/design-system-react/SliderUI';\r\nimport { Spinner } from '@undp/design-system-react/Spinner';\r\n\r\nimport { Graph } from './Graph';\r\n\r\nimport { GraphFooter } from '@/Components/Elements/GraphFooter';\r\nimport { GraphHeader } from '@/Components/Elements/GraphHeader';\r\nimport {\r\n DotDensityMapDataType,\r\n Languages,\r\n SourcesDataType,\r\n StyleObject,\r\n ClassNameObject,\r\n ZoomInteractionTypes,\r\n MapProjectionTypes,\r\n CustomLayerDataType,\r\n AnimateDataType,\r\n TimelineDataType,\r\n} from '@/Types';\r\nimport { Colors } from '@/Components/ColorPalette';\r\nimport { fetchAndParseJSON } from '@/Utils/fetchAndParseData';\r\nimport { checkIfNullOrUndefined } from '@/Utils/checkIfNullOrUndefined';\r\nimport { Pause, Play } from '@/Components/Icons';\r\nimport { getSliderMarks } from '@/Utils/getSliderMarks';\r\nimport { uniqBy } from '@/Utils/uniqBy';\r\nimport { GraphArea, GraphContainer } from '@/Components/Elements/GraphContainer';\r\n\r\ninterface Props {\r\n // Data\r\n /** Array of data objects */\r\n data: DotDensityMapDataType[];\r\n // Titles, Labels, and Sources\r\n /** Title of the graph */\r\n graphTitle?: string | React.ReactNode;\r\n /** Description of the graph */\r\n graphDescription?: string | React.ReactNode;\r\n /** Footnote for the graph */\r\n footNote?: string | React.ReactNode;\r\n /** Source data for the graph */\r\n sources?: SourcesDataType[];\r\n /** Accessibility label */\r\n ariaLabel?: string;\r\n\r\n // Colors and Styling\r\n /** Color or array of colors for the circle */\r\n colors?: string | string[];\r\n /** Domain of colors for the graph */\r\n colorDomain?: string[];\r\n /** Title for the color legend */\r\n colorLegendTitle?: string;\r\n /** Color for the areas where data is no available */\r\n mapNoDataColor?: string;\r\n /** Background color of the graph */\r\n backgroundColor?: string | boolean;\r\n /** Custom styles for the graph. Each object should be a valid React CSS style object. */\r\n styles?: StyleObject;\r\n /** Custom class names */\r\n classNames?: ClassNameObject;\r\n\r\n // Size and Spacing\r\n /** Width of the graph */\r\n width?: number;\r\n /** Height of the graph */\r\n height?: number;\r\n /** Minimum height of the graph */\r\n minHeight?: number;\r\n /** Relative height scaling factor. This overwrites the height props */\r\n relativeHeight?: number;\r\n /** Padding around the graph. Defaults to 0 if no backgroundColor is mentioned else defaults to 1rem */\r\n padding?: string;\r\n\r\n // Graph Parameters\r\n /** Maximum radius of the circle */\r\n radius?: number;\r\n /** Map data as an object in geoJson format or a url for geoJson */\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n mapData?: any;\r\n /** Defines if the coordinates in the map data should be rewinded or not. Try to change this is the visualization shows countries as holes instead of shapes. */\r\n rewindCoordinatesInMapData?: boolean;\r\n /** Scaling factor for the map. Multiplies the scale number to scale. */\r\n scale?: number;\r\n /** Center point of the map */\r\n centerPoint?: [number, number];\r\n /** Controls the rotation of the map projection, in degrees, applied before rendering. Useful for shifting the antimeridian to focus the map on different regions */\r\n projectionRotate?: [number, number] | [number, number, number];\r\n /** Defines the zoom mode for the map */\r\n zoomInteraction?: ZoomInteractionTypes;\r\n /** Stroke width of the regions in the map */\r\n mapBorderWidth?: number;\r\n /** Stroke color of the regions in the map */\r\n mapBorderColor?: string;\r\n /** Toggle if the map is a world map */\r\n isWorldMap?: boolean;\r\n /** Map projection type */\r\n mapProjection?: MapProjectionTypes;\r\n /** Extend of the allowed zoom in the map */\r\n zoomScaleExtend?: [number, number];\r\n /** Extend of the allowed panning in the map */\r\n zoomTranslateExtend?: [[number, number], [number, number]];\r\n /** Toggle visibility of labels */\r\n showLabels?: boolean;\r\n /** Maximum value mapped to the radius chart */\r\n maxRadiusValue?: number;\r\n /** Data points to highlight. Use the label value from data to highlight the data point */\r\n highlightedDataPoints?: (string | number)[];\r\n /** Defines the opacity of the non-highlighted data */\r\n dimmedOpacity?: number;\r\n /** Toggles if the graph animates in when loaded. */\r\n animate?: boolean | AnimateDataType;\r\n /** Toggle visibility of color scale. This is only applicable if the data props hae color parameter */\r\n showColorScale?: boolean;\r\n /** Toggle if color scale is collapsed by default. */\r\n collapseColorScaleByDefault?: boolean;\r\n /** Toggles the visibility of Antarctica in the default map. Only applicable for the default map. */\r\n showAntarctica?: boolean;\r\n /** Optional SVG <g> element or function that renders custom content behind or in front of the graph. */\r\n customLayers?: CustomLayerDataType[];\r\n /** Configures playback and slider controls for animating the chart over time. The data must have a key date for it to work properly. */\r\n timeline?: TimelineDataType;\r\n /** Enable graph download option as png */\r\n graphDownload?: boolean;\r\n /** Enable data download option as a csv */\r\n dataDownload?: boolean;\r\n /** Reset selection on double-click. Only applicable when used in a dashboard context with filters. */\r\n resetSelectionOnDoubleClick?: boolean;\r\n\r\n // Interactions and Callbacks\r\n /** Tooltip content. If the type is string then this uses the [handlebar](../?path=/docs/misc-handlebars-templates-and-custom-helpers--docs) template to display the data */\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n tooltip?: string | ((_d: any) => React.ReactNode);\r\n /** Details displayed on the modal when user clicks of a data point. If the type is string then this uses the [handlebar](../?path=/docs/misc-handlebars-templates-and-custom-helpers--docs) template to display the data */\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n detailsOnClick?: string | ((_d: any) => React.ReactNode);\r\n /** Callback for mouse over event */\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n onSeriesMouseOver?: (_d: any) => void;\r\n /** Callback for mouse click event */\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n onSeriesMouseClick?: (_d: any) => void;\r\n\r\n // Configuration and Options\r\n /** Language setting */\r\n language?: Languages;\r\n /** Color theme */\r\n theme?: 'light' | 'dark';\r\n /** Unique ID for the graph */\r\n graphID?: string;\r\n}\r\n\r\nexport function DotDensityMap(props: Props) {\r\n const {\r\n data,\r\n mapData = 'https://raw.githubusercontent.com/UNDP-Data/dv-country-geojson/refs/heads/main/worldMap-v2.json',\r\n graphTitle,\r\n colors,\r\n sources,\r\n graphDescription,\r\n height,\r\n width,\r\n footNote = 'The designations employed and the presentation of material on this map do not imply the expression of any opinion whatsoever on the part of the Secretariat of the United Nations or UNDP concerning the legal status of any country, territory, city or area or its authorities, or concerning the delimitation of its frontiers or boundaries.',\r\n colorLegendTitle,\r\n colorDomain,\r\n radius = 5,\r\n scale = 0.95,\r\n centerPoint,\r\n padding,\r\n mapBorderWidth = 0.5,\r\n mapNoDataColor = Colors.light.graphNoData,\r\n backgroundColor = false,\r\n showLabels = false,\r\n mapBorderColor = Colors.light.grays['gray-500'],\r\n tooltip,\r\n relativeHeight,\r\n onSeriesMouseOver,\r\n isWorldMap = true,\r\n showColorScale = true,\r\n zoomScaleExtend = [0.8, 6],\r\n zoomTranslateExtend,\r\n graphID,\r\n highlightedDataPoints = [],\r\n onSeriesMouseClick,\r\n graphDownload = false,\r\n dataDownload = false,\r\n showAntarctica = false,\r\n language = 'en',\r\n minHeight = 0,\r\n theme = 'light',\r\n ariaLabel,\r\n resetSelectionOnDoubleClick = true,\r\n detailsOnClick,\r\n styles,\r\n classNames,\r\n mapProjection = 'naturalEarth',\r\n zoomInteraction = 'button',\r\n animate = false,\r\n dimmedOpacity = 0.3,\r\n customLayers = [],\r\n maxRadiusValue,\r\n timeline = { enabled: false, autoplay: false, showOnlyActiveDate: true },\r\n collapseColorScaleByDefault,\r\n projectionRotate = [0, 0],\r\n rewindCoordinatesInMapData = true,\r\n } = props;\r\n\r\n const [svgWidth, setSvgWidth] = useState(0);\r\n const [svgHeight, setSvgHeight] = useState(0);\r\n const [play, setPlay] = useState(timeline.autoplay);\r\n const uniqDatesSorted = useMemo(() => {\r\n const dates = [\r\n ...new Set(\r\n data\r\n .filter(d => d.date)\r\n .map(d => parse(`${d.date}`, timeline.dateFormat || 'yyyy', new Date()).getTime()),\r\n ),\r\n ];\r\n dates.sort((a, b) => a - b);\r\n return dates;\r\n }, [data, timeline.dateFormat]);\r\n const [index, setIndex] = useState(timeline.autoplay ? 0 : uniqDatesSorted.length - 1);\r\n\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n const [mapShape, setMapShape] = useState<any>(undefined);\r\n\r\n const graphDiv = useRef<HTMLDivElement>(null);\r\n const graphParentDiv = useRef<HTMLDivElement>(null);\r\n useEffect(() => {\r\n const resizeObserver = new ResizeObserver(entries => {\r\n setSvgWidth(entries[0].target.clientWidth || 620);\r\n setSvgHeight(entries[0].target.clientHeight || 480);\r\n });\r\n if (graphDiv.current) {\r\n resizeObserver.observe(graphDiv.current);\r\n }\r\n return () => resizeObserver.disconnect();\r\n }, []);\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n const onUpdateShape = useEffectEvent((shape: any) => {\r\n setMapShape(shape);\r\n });\r\n useEffect(() => {\r\n if (typeof mapData === 'string') {\r\n const fetchData = fetchAndParseJSON(mapData);\r\n fetchData.then(d => {\r\n onUpdateShape(d);\r\n });\r\n } else {\r\n onUpdateShape(mapData);\r\n }\r\n }, [mapData]);\r\n\r\n useEffect(() => {\r\n const interval = setInterval(\r\n () => {\r\n setIndex(i => (i < uniqDatesSorted.length - 1 ? i + 1 : 0));\r\n },\r\n (timeline.speed || 2) * 1000,\r\n );\r\n if (!play) clearInterval(interval);\r\n return () => clearInterval(interval);\r\n }, [uniqDatesSorted, play, timeline.speed]);\r\n\r\n const markObj = getSliderMarks(\r\n uniqDatesSorted,\r\n index,\r\n timeline.showOnlyActiveDate,\r\n timeline.dateFormat || 'yyyy',\r\n );\r\n return (\r\n <GraphContainer\r\n className={classNames?.graphContainer}\r\n style={styles?.graphContainer}\r\n id={graphID}\r\n ref={graphParentDiv}\r\n aria-label={ariaLabel}\r\n backgroundColor={backgroundColor}\r\n theme={theme}\r\n language={language}\r\n minHeight={minHeight}\r\n width={width}\r\n height={height}\r\n relativeHeight={relativeHeight}\r\n padding={padding}\r\n >\r\n {graphTitle || graphDescription || graphDownload || dataDownload ? (\r\n <GraphHeader\r\n styles={{\r\n title: styles?.title,\r\n description: styles?.description,\r\n }}\r\n classNames={{\r\n title: classNames?.title,\r\n description: classNames?.description,\r\n }}\r\n graphTitle={graphTitle}\r\n graphDescription={graphDescription}\r\n width={width}\r\n graphDownload={graphDownload ? graphParentDiv : undefined}\r\n dataDownload={\r\n dataDownload\r\n ? data.map(d => d.data).filter(d => d !== undefined).length > 0\r\n ? data.map(d => d.data).filter(d => d !== undefined)\r\n : data.filter(d => d !== undefined)\r\n : null\r\n }\r\n />\r\n ) : null}\r\n {timeline.enabled && uniqDatesSorted.length > 0 && markObj ? (\r\n <div className='flex gap-6 items-center' dir='ltr'>\r\n <button\r\n type='button'\r\n onClick={() => {\r\n setPlay(!play);\r\n }}\r\n className='p-0 border-0 cursor-pointer bg-transparent'\r\n aria-label={play ? 'Click to pause animation' : 'Click to play animation'}\r\n >\r\n {play ? <Pause /> : <Play />}\r\n </button>\r\n <SliderUI\r\n min={uniqDatesSorted[0]}\r\n max={uniqDatesSorted[uniqDatesSorted.length - 1]}\r\n marks={markObj}\r\n step={null}\r\n defaultValue={uniqDatesSorted[uniqDatesSorted.length - 1]}\r\n value={uniqDatesSorted[index]}\r\n onChangeComplete={nextValue => {\r\n setIndex(uniqDatesSorted.indexOf(nextValue as number));\r\n }}\r\n onChange={nextValue => {\r\n setIndex(uniqDatesSorted.indexOf(nextValue as number));\r\n }}\r\n aria-label='Time slider. Use arrow keys to adjust selected time period.'\r\n />\r\n </div>\r\n ) : null}\r\n <GraphArea ref={graphDiv}>\r\n {svgWidth && svgHeight && mapShape ? (\r\n <Graph\r\n data={data.filter(d =>\r\n timeline.enabled\r\n ? d.date === format(new Date(uniqDatesSorted[index]), timeline.dateFormat || 'yyyy')\r\n : d,\r\n )}\r\n mapData={\r\n showAntarctica\r\n ? mapShape\r\n : {\r\n ...mapShape,\r\n features: mapShape.features.filter(\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n (el: any) => el.properties.NAME !== 'Antarctica',\r\n ),\r\n }\r\n }\r\n colorDomain={\r\n data.filter(el => el.color).length === 0\r\n ? []\r\n : colorDomain || (uniqBy(data, 'color', true) as string[])\r\n }\r\n width={svgWidth}\r\n height={svgHeight}\r\n scale={scale}\r\n centerPoint={centerPoint}\r\n colors={\r\n data.filter(el => el.color).length === 0\r\n ? colors\r\n ? [colors as string]\r\n : [Colors.primaryColors['blue-600']]\r\n : (colors as string[] | undefined) || Colors[theme].categoricalColors.colors\r\n }\r\n colorLegendTitle={colorLegendTitle}\r\n radius={radius}\r\n mapBorderWidth={mapBorderWidth}\r\n mapNoDataColor={mapNoDataColor}\r\n mapBorderColor={mapBorderColor}\r\n tooltip={tooltip}\r\n onSeriesMouseOver={onSeriesMouseOver}\r\n showLabels={showLabels}\r\n isWorldMap={isWorldMap}\r\n showColorScale={showColorScale}\r\n zoomScaleExtend={zoomScaleExtend}\r\n zoomTranslateExtend={zoomTranslateExtend}\r\n onSeriesMouseClick={onSeriesMouseClick}\r\n highlightedDataPoints={highlightedDataPoints}\r\n resetSelectionOnDoubleClick={resetSelectionOnDoubleClick}\r\n styles={styles}\r\n classNames={classNames}\r\n zoomInteraction={zoomInteraction}\r\n detailsOnClick={detailsOnClick}\r\n mapProjection={mapProjection || (isWorldMap ? 'naturalEarth' : 'mercator')}\r\n animate={\r\n animate === true\r\n ? { duration: 0.5, once: true, amount: 0.5 }\r\n : animate || { duration: 0, once: true, amount: 0 }\r\n }\r\n dimmedOpacity={dimmedOpacity}\r\n customLayers={customLayers}\r\n maxRadiusValue={\r\n !checkIfNullOrUndefined(maxRadiusValue)\r\n ? (maxRadiusValue as number)\r\n : Math.max(...data.map(d => d.radius).filter(d => d !== undefined && d !== null))\r\n }\r\n collapseColorScaleByDefault={collapseColorScaleByDefault}\r\n projectionRotate={projectionRotate}\r\n rewindCoordinatesInMapData={rewindCoordinatesInMapData}\r\n />\r\n ) : (\r\n <div\r\n style={{\r\n height: `${Math.max(\r\n minHeight,\r\n height ||\r\n (relativeHeight\r\n ? minHeight\r\n ? (width || svgWidth) * relativeHeight > minHeight\r\n ? (width || svgWidth) * relativeHeight\r\n : minHeight\r\n : (width || svgWidth) * relativeHeight\r\n : svgHeight),\r\n )}px`,\r\n }}\r\n className='flex items-center justify-center'\r\n >\r\n <Spinner aria-label='Loading graph' />\r\n </div>\r\n )}\r\n </GraphArea>\r\n {sources || footNote ? (\r\n <GraphFooter\r\n styles={{ footnote: styles?.footnote, source: styles?.source }}\r\n classNames={{\r\n footnote: classNames?.footnote,\r\n source: classNames?.source,\r\n }}\r\n sources={sources}\r\n footNote={footNote}\r\n width={width}\r\n />\r\n ) : null}\r\n </GraphContainer>\r\n );\r\n}\r\n"],"names":["Graph","props","data","colors","mapData","colorLegendTitle","colorDomain","radius","height","width","scale","centerPoint","tooltip","showLabels","mapBorderWidth","mapBorderColor","mapNoDataColor","onSeriesMouseOver","showColorScale","zoomScaleExtend","zoomTranslateExtend","highlightedDataPoints","onSeriesMouseClick","resetSelectionOnDoubleClick","detailsOnClick","styles","classNames","mapProjection","zoomInteraction","animate","dimmedOpacity","customLayers","maxRadiusValue","collapseColorScaleByDefault","projectionRotate","rewindCoordinatesInMapData","formattedMapData","useMemo","rewind","reverse","selectedColor","setSelectedColor","useState","undefined","showLegend","setShowLegend","zoomRef","useRef","mouseClickData","setMouseClickData","mouseOverData","setMouseOverData","eventX","setEventX","eventY","setEventY","mapSvg","isInView","useInView","once","amount","mapG","radiusScale","filter","d","length","scaleSqrt","domain","range","nice","useEffect","mapGSelect","select","current","mapSvgSelect","zoomFilter","e","type","includes","isWheel","isTouch","startsWith","isDrag","ctrlKey","button","zoomBehavior","zoom","scaleExtent","translateExtent","on","transform","attr","call","bounds","bbox","center","centerOfMass","lonDiff","latDiff","scaleX","scaleY","scaleVar","Math","min","projection","geoMercator","rotate","geometry","coordinates","translate","geoEqualEarth","geoNaturalEarth1","geoOrthographic","geoAlbersUsa","pathGenerator","geoPath","handleZoom","direction","svg","scaleBy","jsxs","Fragment","jsx","motion","position","map","layer","features","i","path","stroke","strokeWidth","fill","AnimatePresence","color","el","indexOf","Colors","gray","initial","opacity","whileInView","label","transition","duration","event","clientY","clientX","isEqual","long","lat","r","fillOpacity","x","cn","graphObjectValues","textAnchor","colorLegend","X","backgroundColor","display","WebkitLineClamp","WebkitBoxOrient","P","DetailsModal","modal","Tooltip","DotDensityMap","$","_c","t0","graphTitle","sources","graphDescription","footNote","t1","t2","t3","padding","t4","t5","t6","t7","t8","relativeHeight","isWorldMap","t9","t10","t11","graphID","t12","graphDownload","t13","dataDownload","t14","showAntarctica","t15","language","t16","minHeight","t17","theme","t18","ariaLabel","t19","t20","t21","t22","t23","t24","timeline","t25","t26","t27","light","graphNoData","grays","t28","t29","t30","t31","enabled","autoplay","showOnlyActiveDate","t32","svgWidth","setSvgWidth","svgHeight","setSvgHeight","play","setPlay","dates","dateFormat","t33","d_0","parse","date","Date","getTime","Set","_temp","sort","_temp2","uniqDatesSorted","index","setIndex","mapShape","setMapShape","graphDiv","graphParentDiv","t34","Symbol","for","resizeObserver","ResizeObserver","entries","target","clientWidth","clientHeight","observe","disconnect","t35","shape","onUpdateShape","useEffectEvent","t36","fetchAndParseJSON","then","d_1","t37","t38","t39","speed","interval","setInterval","clearInterval","t40","t41","getSliderMarks","markObj","t42","graphContainer","t43","t44","description","title","GraphHeader","_temp3","_temp4","_temp5","_temp6","_temp7","t45","Pause","Play","SliderUI","nextValue","nextValue_0","t46","GraphArea","d_7","format","_temp8","_temp9","uniqBy","_temp0","primaryColors","categoricalColors","checkIfNullOrUndefined","max","_temp1","_temp10","Spinner","t47","footnote","source","GraphFooter","t48","GraphContainer","d_9","d_8","el_1","el_0","properties","NAME","d_4","d_3","d_2","d_6","d_5","a","b"],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as
|
|
1
|
+
import { c as O, j as d } from "./index-CHPV5EwG-DecW7_qr.js";
|
|
2
2
|
import { j as k } from "./Typography-hWfh3H0J.js";
|
|
3
3
|
import { ButterflyChart as S } from "./ButterflyChart.js";
|
|
4
4
|
import { C as N } from "./index-D5ihtaJJ.js";
|
|
@@ -13,10 +13,10 @@ import { MultiLineAltChart as W } from "./MultiLineAltChart.js";
|
|
|
13
13
|
import { SparkLine as j } from "./SparkLine.js";
|
|
14
14
|
import { BiVariateChoroplethMap as z } from "./BiVariateChoroplethMap.js";
|
|
15
15
|
import { ChoroplethMap as F } from "./ChoroplethMap.js";
|
|
16
|
-
import { DotDensityMap as
|
|
17
|
-
import { ParetoChart as
|
|
18
|
-
import { ScatterPlot as
|
|
19
|
-
import { SlopeChart as
|
|
16
|
+
import { DotDensityMap as R } from "./DotDensityMap.js";
|
|
17
|
+
import { ParetoChart as X } from "./ParetoChart.js";
|
|
18
|
+
import { ScatterPlot as Y } from "./ScatterPlot.js";
|
|
19
|
+
import { SlopeChart as E } from "./SlopeChart.js";
|
|
20
20
|
import { AreaChart as G } from "./AreaChart.js";
|
|
21
21
|
import { StatCardFromData as $ } from "./StatCardFromData.js";
|
|
22
22
|
import { TreeMapGraph as _ } from "./TreeMapGraph.js";
|
|
@@ -35,7 +35,7 @@ import { HybridMap as se } from "./HybridMap.js";
|
|
|
35
35
|
import { WaterfallChart as ne } from "./WaterfallChart.js";
|
|
36
36
|
import { g as r } from "./checkIfMultiple-D9fVkeOq.js";
|
|
37
37
|
function Ge(y) {
|
|
38
|
-
const a =
|
|
38
|
+
const a = O.c(24), {
|
|
39
39
|
settings: e,
|
|
40
40
|
graph: s,
|
|
41
41
|
graphData: o,
|
|
@@ -68,10 +68,10 @@ function Ge(y) {
|
|
|
68
68
|
stackedAreaChart: G,
|
|
69
69
|
choroplethMap: F,
|
|
70
70
|
biVariateChoroplethMap: z,
|
|
71
|
-
dotDensityMap:
|
|
71
|
+
dotDensityMap: R,
|
|
72
72
|
donutChart: H,
|
|
73
|
-
slopeChart:
|
|
74
|
-
scatterPlot:
|
|
73
|
+
slopeChart: E,
|
|
74
|
+
scatterPlot: Y,
|
|
75
75
|
dumbbellChart: oe,
|
|
76
76
|
treeMap: _,
|
|
77
77
|
circlePacking: N,
|
|
@@ -81,7 +81,7 @@ function Ge(y) {
|
|
|
81
81
|
butterflyChart: S,
|
|
82
82
|
histogram: v,
|
|
83
83
|
sparkLine: j,
|
|
84
|
-
paretoChart:
|
|
84
|
+
paretoChart: X,
|
|
85
85
|
dataTable: V,
|
|
86
86
|
statCard: $,
|
|
87
87
|
unitChart: q,
|
|
@@ -93,7 +93,7 @@ function Ge(y) {
|
|
|
93
93
|
hybridMap: se,
|
|
94
94
|
waterfallChart: ne
|
|
95
95
|
}, a[6] = m) : m = a[6];
|
|
96
|
-
const
|
|
96
|
+
const M = m;
|
|
97
97
|
let p;
|
|
98
98
|
a[7] !== o || a[8] !== i || a[9] !== t || a[10] !== e || a[11] !== n ? (p = (c) => {
|
|
99
99
|
switch (c) {
|
|
@@ -829,7 +829,9 @@ function Ge(y) {
|
|
|
829
829
|
classNames: e?.classNames,
|
|
830
830
|
zoomInteraction: e?.zoomInteraction,
|
|
831
831
|
animate: e?.animate,
|
|
832
|
-
zoomAndCenterByHighlightedIds: e?.zoomAndCenterByHighlightedIds
|
|
832
|
+
zoomAndCenterByHighlightedIds: e?.zoomAndCenterByHighlightedIds,
|
|
833
|
+
projectionRotate: e?.projectionRotate,
|
|
834
|
+
rewindCoordinatesInMapData: e?.rewindCoordinatesInMapData
|
|
833
835
|
};
|
|
834
836
|
case "biVariateChoroplethMap":
|
|
835
837
|
return {
|
|
@@ -882,7 +884,9 @@ function Ge(y) {
|
|
|
882
884
|
classNames: e?.classNames,
|
|
883
885
|
zoomInteraction: e?.zoomInteraction,
|
|
884
886
|
animate: e?.animate,
|
|
885
|
-
zoomAndCenterByHighlightedIds: e?.zoomAndCenterByHighlightedIds
|
|
887
|
+
zoomAndCenterByHighlightedIds: e?.zoomAndCenterByHighlightedIds,
|
|
888
|
+
projectionRotate: e?.projectionRotate,
|
|
889
|
+
rewindCoordinatesInMapData: e?.rewindCoordinatesInMapData
|
|
886
890
|
};
|
|
887
891
|
case "dotDensityMap":
|
|
888
892
|
return {
|
|
@@ -932,7 +936,9 @@ function Ge(y) {
|
|
|
932
936
|
styles: e?.styles,
|
|
933
937
|
classNames: e?.classNames,
|
|
934
938
|
zoomInteraction: e?.zoomInteraction,
|
|
935
|
-
animate: e?.animate
|
|
939
|
+
animate: e?.animate,
|
|
940
|
+
projectionRotate: e?.projectionRotate,
|
|
941
|
+
rewindCoordinatesInMapData: e?.rewindCoordinatesInMapData
|
|
936
942
|
};
|
|
937
943
|
case "hybridMap":
|
|
938
944
|
return {
|
|
@@ -992,7 +998,9 @@ function Ge(y) {
|
|
|
992
998
|
dotLegendTitle: e?.dotLegendTitle,
|
|
993
999
|
dotColor: e?.dotColor,
|
|
994
1000
|
dotBorderColor: e?.dotBorderColor,
|
|
995
|
-
labelColor: e?.labelColor
|
|
1001
|
+
labelColor: e?.labelColor,
|
|
1002
|
+
projectionRotate: e?.projectionRotate,
|
|
1003
|
+
rewindCoordinatesInMapData: e?.rewindCoordinatesInMapData
|
|
996
1004
|
};
|
|
997
1005
|
case "donutChart":
|
|
998
1006
|
return {
|
|
@@ -1833,7 +1841,7 @@ function Ge(y) {
|
|
|
1833
1841
|
return {};
|
|
1834
1842
|
}
|
|
1835
1843
|
}, a[7] = o, a[8] = i, a[9] = t, a[10] = e, a[11] = n, a[12] = p) : p = a[12];
|
|
1836
|
-
const w = p, u =
|
|
1844
|
+
const w = p, u = M[s];
|
|
1837
1845
|
let f;
|
|
1838
1846
|
a[13] !== w || a[14] !== s ? (f = w(s), a[13] = w, a[14] = s, a[15] = f) : f = a[15];
|
|
1839
1847
|
const x = f, T = `grow my-0 ${s !== "statCard" ? "mx-auto" : "mx-0"} flex flex-col w-full ${s !== "unitChart" && s !== "statCard" ? "justify-center" : "justify-start"} ${e?.theme || "light"}`;
|
|
@@ -1849,4 +1857,4 @@ function Ge(y) {
|
|
|
1849
1857
|
export {
|
|
1850
1858
|
Ge as G
|
|
1851
1859
|
};
|
|
1852
|
-
//# sourceMappingURL=GraphEl-
|
|
1860
|
+
//# sourceMappingURL=GraphEl-L5hNe7wJ.js.map
|