@undp/data-viz 2.3.1 → 2.3.2

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.
@@ -1 +1 @@
1
- {"version":3,"file":"DotDensityMap.cjs","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","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
+ {"version":3,"file":"DotDensityMap.cjs","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 className='undp-map-dots'\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","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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"}
@@ -95,7 +95,7 @@ function eo(a) {
95
95
  }),
96
96
  /* @__PURE__ */ o.jsx(qe, { children: t.map((e) => {
97
97
  const f = t.filter((i) => i.color).length === 0 ? r[0] : e.color ? r[h.indexOf(`${e.color}`)] : b.gray;
98
- return /* @__PURE__ */ o.jsxs(Jt.g, { variants: {
98
+ return /* @__PURE__ */ o.jsxs(Jt.g, { className: "undp-map-dots", variants: {
99
99
  initial: {
100
100
  opacity: 0
101
101
  },