@undp/data-viz 2.1.8 → 2.1.9
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/DotDensityMap.cjs.map +1 -1
- package/dist/DotDensityMap.d.ts +1 -1
- package/dist/DotDensityMap.js.map +1 -1
- package/dist/HybridMap.cjs +1 -1
- package/dist/HybridMap.cjs.map +1 -1
- package/dist/HybridMap.js +111 -110
- package/dist/HybridMap.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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, 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","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.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, 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","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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"}
|
package/dist/DotDensityMap.d.ts
CHANGED
|
@@ -76,7 +76,7 @@ declare interface Props {
|
|
|
76
76
|
/** Color or array of colors for the circle */
|
|
77
77
|
colors?: string | string[];
|
|
78
78
|
/** Domain of colors for the graph */
|
|
79
|
-
colorDomain
|
|
79
|
+
colorDomain?: string[];
|
|
80
80
|
/** Title for the color legend */
|
|
81
81
|
colorLegendTitle?: string;
|
|
82
82
|
/** Color for the areas where data is no available */
|