@undp/data-viz 2.0.3 → 2.0.5
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/ThreeDGlobe.cjs +1 -1
- package/dist/ThreeDGlobe.cjs.map +1 -1
- package/dist/ThreeDGlobe.d.ts +2 -0
- package/dist/ThreeDGlobe.js +317 -277
- package/dist/ThreeDGlobe.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/style.css +1 -1
- package/package.json +3 -2
package/dist/ThreeDGlobe.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThreeDGlobe.js","sources":["../src/Components/Graphs/Maps/ThreeDGlobe/Graph.tsx","../src/Components/Graphs/Maps/ThreeDGlobe/index.tsx"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-explicit-any */\r\nimport Globe, { GlobeMethods } from 'react-globe.gl';\r\nimport isEqual from 'fast-deep-equal';\r\nimport { useCallback, useEffect, useRef, useState } from 'react';\r\nimport { scaleOrdinal, scaleThreshold } from 'd3-scale';\r\nimport * as THREE from 'three';\r\nimport { Modal } from '@undp/design-system-react/Modal';\r\nimport { P } from '@undp/design-system-react/Typography';\r\nimport { cn } from '@undp/design-system-react/cn';\r\n\r\nimport {\r\n ChoroplethMapDataType,\r\n ClassNameObject,\r\n FogDataType,\r\n LightConfig,\r\n StyleObject,\r\n} from '@/Types';\r\nimport { Tooltip } from '@/Components/Elements/Tooltip';\r\nimport { numberFormattingFunction } from '@/Utils/numberFormattingFunction';\r\nimport { X } from '@/Components/Icons';\r\nimport { string2HTML } from '@/Utils/string2HTML';\r\nimport { getCentroidCoordinates } from '@/Utils/getCentroidCoordinates';\r\n\r\ninterface Props {\r\n width: number;\r\n data: ChoroplethMapDataType[];\r\n autoRotate: number;\r\n enableZoom: boolean;\r\n categorical: boolean;\r\n colorDomain: (number | string)[];\r\n colors: string[];\r\n height: number;\r\n globeMaterial?: THREE.Material;\r\n lights: LightConfig[];\r\n polygonData: any;\r\n mapProperty: string;\r\n mapBorderColor: string;\r\n atmosphereColor: string;\r\n tooltip?: string | ((_d: any) => React.ReactNode);\r\n styles?: StyleObject;\r\n classNames?: ClassNameObject;\r\n onSeriesMouseOver?: (_d: any) => void;\r\n onSeriesMouseClick?: (_d: any) => void;\r\n mapNoDataColor: string;\r\n colorLegendTitle?: string;\r\n showColorScale: boolean;\r\n hoverStrokeColor: string;\r\n detailsOnClick?: string | ((_d: any) => React.ReactNode);\r\n resetSelectionOnDoubleClick: boolean;\r\n highlightedIds: string[];\r\n scale: number;\r\n globeOffset: [number, number];\r\n polygonAltitude: number;\r\n centerLng: number;\r\n centerLat: number;\r\n atmosphereAltitude: number;\r\n globeCurvatureResolution: number;\r\n fogSettings?: FogDataType;\r\n highlightedAltitude: number;\r\n selectedId?: string;\r\n collapseColorScaleByDefault?: boolean;\r\n}\r\n\r\nfunction createLightFromConfig(config: LightConfig): THREE.Light {\r\n let light: THREE.Light;\r\n\r\n switch (config.type) {\r\n case 'ambient':\r\n light = new THREE.AmbientLight(config.color, config.intensity);\r\n break;\r\n case 'directional':\r\n light = new THREE.DirectionalLight(config.color, config.intensity);\r\n if (config.position) {\r\n if (config.position === 'camera') light.position.set(0, 0, 0);\r\n else light.position.set(config.position.x, config.position.y, config.position.z);\r\n }\r\n if (config.target || config.position === 'camera') {\r\n (light as THREE.SpotLight).target.position.set(\r\n config.target?.x || 0,\r\n config.target?.y || 0,\r\n config.target?.z === undefined ? -1 : config.target.z,\r\n );\r\n }\r\n if (config.castShadow) {\r\n (light as THREE.DirectionalLight).castShadow = true;\r\n if (config.shadow) {\r\n (light as THREE.DirectionalLight).shadow.mapSize.width = config.shadow.mapSize.width;\r\n (light as THREE.DirectionalLight).shadow.mapSize.height = config.shadow.mapSize.height;\r\n (light as THREE.DirectionalLight).shadow.camera.near = config.shadow.camera.near;\r\n (light as THREE.DirectionalLight).shadow.camera.far = config.shadow.camera.far;\r\n }\r\n }\r\n break;\r\n case 'point':\r\n light = new THREE.PointLight(\r\n config.color,\r\n config.intensity,\r\n config.distance || 0,\r\n config.decay || 2,\r\n );\r\n if (config.position) {\r\n if (config.position === 'camera') light.position.set(0, 0, 0);\r\n else light.position.set(config.position.x, config.position.y, config.position.z);\r\n }\r\n break;\r\n case 'spot':\r\n light = new THREE.SpotLight(\r\n config.color,\r\n config.intensity,\r\n config.distance || 0,\r\n config.angle || Math.PI / 3,\r\n config.penumbra || 0,\r\n config.decay || 2,\r\n );\r\n if (config.position) {\r\n if (config.position === 'camera') light.position.set(0, 0, 0);\r\n else light.position.set(config.position.x, config.position.y, config.position.z);\r\n }\r\n if (config.target || config.position === 'camera') {\r\n (light as THREE.SpotLight).target.position.set(\r\n config.target?.x || 0,\r\n config.target?.y || 0,\r\n config.target?.z || 0,\r\n );\r\n }\r\n if (config.castShadow) {\r\n (light as THREE.SpotLight).castShadow = true;\r\n if (config.shadow) {\r\n (light as THREE.SpotLight).shadow.mapSize.width = config.shadow.mapSize.width;\r\n (light as THREE.SpotLight).shadow.mapSize.height = config.shadow.mapSize.height;\r\n (light as THREE.SpotLight).shadow.camera.near = config.shadow.camera.near;\r\n (light as THREE.SpotLight).shadow.camera.far = config.shadow.camera.far;\r\n }\r\n }\r\n break;\r\n default:\r\n throw new Error('Unknown light type');\r\n }\r\n\r\n return light;\r\n}\r\nfunction Graph(props: Props) {\r\n const {\r\n width,\r\n autoRotate,\r\n data,\r\n enableZoom,\r\n categorical,\r\n colorDomain,\r\n colors,\r\n globeMaterial,\r\n height,\r\n polygonData,\r\n mapProperty,\r\n mapBorderColor,\r\n atmosphereColor,\r\n tooltip,\r\n styles,\r\n classNames,\r\n mapNoDataColor,\r\n colorLegendTitle,\r\n showColorScale,\r\n hoverStrokeColor,\r\n detailsOnClick,\r\n onSeriesMouseClick,\r\n onSeriesMouseOver,\r\n resetSelectionOnDoubleClick,\r\n highlightedIds,\r\n scale,\r\n globeOffset,\r\n polygonAltitude,\r\n centerLng,\r\n centerLat,\r\n atmosphereAltitude,\r\n globeCurvatureResolution,\r\n fogSettings,\r\n lights,\r\n highlightedAltitude,\r\n selectedId,\r\n collapseColorScaleByDefault,\r\n } = props;\r\n const [globeReady, setGlobeReady] = useState(false);\r\n const globeEl = useRef<GlobeMethods | undefined>(undefined);\r\n const [mouseClickData, setMouseClickData] = useState<any>(undefined);\r\n\r\n const [showLegend, setShowLegend] = useState(\r\n collapseColorScaleByDefault === undefined ? !(width < 680) : !collapseColorScaleByDefault,\r\n );\r\n const [mousePos, setMousePos] = useState({ x: 0, y: 0 });\r\n const [mouseOverData, setMouseOverData] = useState<ChoroplethMapDataType | undefined>(undefined);\r\n const colorScale = categorical\r\n ? scaleOrdinal<number | string, string>().domain(colorDomain).range(colors)\r\n : scaleThreshold<number, string>()\r\n .domain(colorDomain as number[])\r\n .range(colors);\r\n useEffect(() => {\r\n if (globeEl.current) {\r\n globeEl.current.controls().enableZoom = enableZoom;\r\n }\r\n }, [enableZoom]);\r\n useEffect(() => {\r\n if (globeEl.current) {\r\n if (mouseOverData || selectedId) {\r\n globeEl.current.controls().autoRotate = false;\r\n } else {\r\n globeEl.current.controls().autoRotate = autoRotate === 0 ? false : true;\r\n globeEl.current.controls().autoRotateSpeed = autoRotate;\r\n }\r\n }\r\n }, [mouseOverData, selectedId, autoRotate]);\r\n useEffect(() => {\r\n if (globeEl.current && selectedId) {\r\n const selectedPolygon = polygonData.find(\r\n (d: any) => d.properties[mapProperty] === selectedId,\r\n );\r\n const [lng, lat] = getCentroidCoordinates(selectedPolygon);\r\n globeEl.current.pointOfView({ lat, lng, altitude: scale }, 1000);\r\n }\r\n }, [selectedId, scale, polygonData, mapProperty]);\r\n\r\n useEffect(() => {\r\n const canvas = globeEl.current?.renderer().domElement;\r\n if (!canvas) return;\r\n\r\n const handleMouseMove = (e: MouseEvent) => {\r\n setMousePos({ x: e.clientX, y: e.clientY });\r\n };\r\n\r\n canvas.addEventListener('mousemove', handleMouseMove);\r\n return () => canvas.removeEventListener('mousemove', handleMouseMove);\r\n }, []);\r\n\r\n useEffect(() => {\r\n if (globeEl.current) {\r\n globeEl.current.pointOfView({ lat: centerLat, lng: centerLng, altitude: scale }, 1000);\r\n }\r\n }, [scale, centerLng, centerLat]);\r\n const materials =\r\n globeMaterial ||\r\n new THREE.MeshBasicMaterial({\r\n color: '#FFF',\r\n });\r\n const setupCustomLighting = useCallback(() => {\r\n if (!globeEl.current) return;\r\n\r\n const scene = globeEl.current.scene();\r\n const camera = globeEl.current.camera();\r\n\r\n let lightsAndObjToRemove: THREE.Object3D[] = [];\r\n scene.traverse(obj => {\r\n if (obj instanceof THREE.Light) {\r\n lightsAndObjToRemove.push(obj);\r\n }\r\n });\r\n lightsAndObjToRemove = [...lightsAndObjToRemove, ...camera.children];\r\n lightsAndObjToRemove.forEach(light => light.parent?.remove(light));\r\n\r\n const lightConfig = lights.map(config => createLightFromConfig(config));\r\n lightConfig.forEach((light, i) => {\r\n if (lights[i].type !== 'ambient' && lights[i].position === 'camera') {\r\n camera.add(light);\r\n if (lights[i].type !== 'point') {\r\n camera.add((light as THREE.DirectionalLight | THREE.SpotLight).target);\r\n }\r\n } else {\r\n scene.add(light);\r\n }\r\n });\r\n\r\n if (fogSettings) {\r\n scene.fog = new THREE.Fog(fogSettings.color, fogSettings.near, fogSettings.far);\r\n }\r\n }, [lights, fogSettings]);\r\n\r\n const handleGlobeReady = () => {\r\n setGlobeReady(true);\r\n setupCustomLighting();\r\n };\r\n useEffect(() => {\r\n if (globeReady) {\r\n setupCustomLighting();\r\n }\r\n }, [globeReady, setupCustomLighting]);\r\n return (\r\n <div className='relative'>\r\n <Globe\r\n ref={globeEl}\r\n height={height}\r\n width={width}\r\n globeOffset={globeOffset}\r\n lineHoverPrecision={0}\r\n polygonsData={polygonData}\r\n polygonAltitude={(polygon: any) =>\r\n highlightedIds.includes(polygon?.properties?.[mapProperty]) ||\r\n polygon?.properties?.[mapProperty] === selectedId\r\n ? highlightedAltitude * (polygon?.properties?.[mapProperty] === selectedId ? 2 : 1)\r\n : polygon?.properties?.[mapProperty] === mouseOverData?.id ||\r\n polygon?.properties?.[mapProperty] === mouseClickData?.id\r\n ? highlightedAltitude\r\n : polygonAltitude\r\n }\r\n polygonCapColor={(polygon: any) => {\r\n const id = polygon?.properties?.[mapProperty];\r\n const val = data.find(el => el.id === id)?.x;\r\n if (val !== undefined && val !== null) {\r\n return colorScale(val as any);\r\n }\r\n return mapNoDataColor;\r\n }}\r\n polygonSideColor={(polygon: any) => {\r\n const id = polygon?.properties?.[mapProperty];\r\n const val = data.find(el => el.id === id)?.x;\r\n const color = val !== undefined && val !== null ? colorScale(val as any) : mapNoDataColor;\r\n return highlightedIds.includes(polygon?.properties?.[mapProperty]) ||\r\n polygon?.properties?.[mapProperty] === selectedId\r\n ? color\r\n : 'rgba(100,100,100,0)';\r\n }}\r\n polygonStrokeColor={(polygon: any) =>\r\n polygon?.properties?.[mapProperty] === mouseOverData?.id\r\n ? hoverStrokeColor\r\n : mapBorderColor\r\n }\r\n onGlobeClick={() => {\r\n setMouseClickData(undefined);\r\n }}\r\n onPolygonClick={(polygon: any) => {\r\n const clickedData = polygon?.properties?.[mapProperty]\r\n ? data.find(el => el.id === polygon?.properties?.[mapProperty])\r\n : undefined;\r\n if (onSeriesMouseClick || detailsOnClick) {\r\n if (\r\n isEqual(mouseClickData, clickedData) &&\r\n resetSelectionOnDoubleClick &&\r\n clickedData\r\n ) {\r\n setMouseClickData(undefined);\r\n onSeriesMouseClick?.(undefined);\r\n } else {\r\n setMouseClickData(clickedData);\r\n onSeriesMouseClick?.(clickedData);\r\n }\r\n }\r\n }}\r\n onPolygonHover={(polygon: any) => {\r\n const hoverData = polygon?.properties?.[mapProperty]\r\n ? data.find(el => el.id === polygon?.properties?.[mapProperty])\r\n : undefined;\r\n setMouseOverData(hoverData);\r\n onSeriesMouseOver?.(hoverData);\r\n }}\r\n atmosphereColor={atmosphereColor}\r\n atmosphereAltitude={atmosphereAltitude}\r\n globeCurvatureResolution={globeCurvatureResolution}\r\n globeMaterial={materials}\r\n backgroundColor='rgba(0, 0, 0, 0)'\r\n polygonsTransitionDuration={100}\r\n onGlobeReady={() => {\r\n if (globeEl.current) {\r\n globeEl.current.pointOfView({\r\n lat: centerLat,\r\n lng: centerLng,\r\n });\r\n const scene = globeEl.current.scene();\r\n setTimeout(() => {\r\n const polygons = scene.children[3]?.children[0]?.children[4]?.children || [];\r\n polygons.forEach(d => {\r\n const line = d.children[1];\r\n line.renderOrder = 2;\r\n });\r\n }, 300);\r\n const camera = globeEl.current.camera();\r\n scene.add(camera);\r\n handleGlobeReady();\r\n }\r\n }}\r\n />\r\n {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\r\n className='color-legend-box p-2 bg-[rgba(240,240,240,0.7)] dark:bg-[rgba(30,30,30,0.7)]'\r\n style={{\r\n width: categorical ? undefined : '340px',\r\n }}\r\n >\r\n {colorLegendTitle && colorLegendTitle !== '' ? (\r\n <P\r\n size='xs'\r\n marginBottom='xs'\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 {!categorical ? (\r\n <svg width='100%' viewBox='0 0 320 30' direction='ltr'>\r\n <g>\r\n {colorDomain.map((d, i) => (\r\n <g key={i} className='cursor-pointer'>\r\n <rect\r\n x={(i * 320) / colors.length + 1}\r\n y={1}\r\n width={320 / colors.length - 2}\r\n height={8}\r\n style={{\r\n fill: colors[i],\r\n stroke: colors[i],\r\n }}\r\n />\r\n <text\r\n x={((i + 1) * 320) / colors.length}\r\n y={25}\r\n className='fill-primary-gray-700 dark:fill-primary-gray-300 text-xs'\r\n style={{ textAnchor: 'middle' }}\r\n >\r\n {numberFormattingFunction(d as number, 'NA')}\r\n </text>\r\n </g>\r\n ))}\r\n <g>\r\n <rect\r\n x={(colorDomain.length * 320) / colors.length + 1}\r\n y={1}\r\n width={320 / colors.length - 2}\r\n height={8}\r\n style={{\r\n fill: colors[colorDomain.length],\r\n stroke: colors[colorDomain.length],\r\n }}\r\n />\r\n </g>\r\n </g>\r\n </svg>\r\n ) : (\r\n <div className='flex flex-col gap-3'>\r\n {colorDomain.map((d, i) => (\r\n <div key={i} className='flex gap-2 items-center'>\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 )}\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 {mouseOverData && tooltip ? (\r\n <Tooltip\r\n data={mouseOverData}\r\n body={tooltip}\r\n xPos={mousePos.x}\r\n yPos={mousePos.y}\r\n backgroundStyle={styles?.tooltip}\r\n className={classNames?.tooltip}\r\n />\r\n ) : null}\r\n {detailsOnClick && mouseClickData !== undefined ? (\r\n <Modal\r\n open={mouseClickData !== undefined}\r\n onClose={() => {\r\n setMouseClickData(undefined);\r\n }}\r\n >\r\n <div\r\n className='graph-modal-content m-0'\r\n dangerouslySetInnerHTML={\r\n typeof detailsOnClick === 'string'\r\n ? { __html: string2HTML(detailsOnClick, mouseClickData) }\r\n : undefined\r\n }\r\n >\r\n {typeof detailsOnClick === 'function' ? detailsOnClick(mouseClickData) : null}\r\n </div>\r\n </Modal>\r\n ) : null}\r\n </div>\r\n );\r\n}\r\n\r\nexport default Graph;\r\n","import React, { useEffect, useEffectEvent, useRef, useState } from 'react';\r\nimport { Spinner } from '@undp/design-system-react/Spinner';\r\nimport * as THREE from 'three';\r\n\r\nimport Graph from './Graph';\r\n\r\nimport { GraphHeader } from '@/Components/Elements/GraphHeader';\r\nimport { GraphFooter } from '@/Components/Elements/GraphFooter';\r\nimport {\r\n ChoroplethMapDataType,\r\n ClassNameObject,\r\n FogDataType,\r\n Languages,\r\n LightConfig,\r\n ScaleDataType,\r\n SourcesDataType,\r\n StyleObject,\r\n} from '@/Types';\r\nimport { fetchAndParseJSON } from '@/Utils/fetchAndParseData';\r\nimport { Colors } from '@/Components/ColorPalette';\r\nimport { getUniqValue } from '@/Utils/getUniqValue';\r\nimport { getJenks } from '@/Utils/getJenks';\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: ChoroplethMapDataType[];\r\n\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 /** Colors for the choropleth map */\r\n colors?: string[];\r\n /** Domain of colors for the graph */\r\n colorDomain?: number[] | 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 /** 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 /** Stroke color of the regions in the map */\r\n mapBorderColor?: string;\r\n /** Center point of the map */\r\n centerPoint?: [number, number];\r\n /** Defines if the globe rotates automatically */\r\n autoRotate?: number | boolean;\r\n /** Defines the material property applied to the sphere of the globe */\r\n globeMaterial?: THREE.Material;\r\n /** Defines the lights for the 3D scene */\r\n lights?: LightConfig[];\r\n /** Defines the colo of the glow around the globe */\r\n atmosphereColor?: string;\r\n /** Defines if the globe can be zoomed when scrolled */\r\n enableZoom?: boolean;\r\n /** Position offset of the globe relative to the canvas center */\r\n globeOffset?: [number, number];\r\n /** Defines the camera distance from Earth. This helps in defining the default size of the globe. Smaller = closer camera therefore the globe is bigger) */\r\n scale?: number;\r\n /** Defines the spacing between the country shape polygon with the sphere */\r\n polygonAltitude?: number;\r\n /** Scale for the colors */\r\n scaleType?: Exclude<ScaleDataType, 'linear'>;\r\n /** Toggle visibility of color scale. */\r\n showColorScale?: boolean;\r\n /** Toggle if color scale is collapsed by default. */\r\n collapseColorScaleByDefault?: boolean;\r\n /** The max altitude of the atmosphere, in terms of globe radius units. */\r\n atmosphereAltitude?: number;\r\n /** Resolution in angular degrees of the sphere curvature. The finer the resolution, the more the globe is fragmented into smaller faces to approximate the spheric surface, at the cost of performance. */\r\n globeCurvatureResolution?: number;\r\n /** Defines fog settings for the scene. */\r\n fogSettings?: FogDataType;\r\n /** Property in the property object in mapData geoJson object is used to match to the id in the data object */\r\n mapProperty?: string;\r\n /** Countries or regions to be highlighted */\r\n selectedId?: string;\r\n /** Countries or regions to be highlighted */\r\n highlightedIds?: string[];\r\n /** Defines the altitude of the highlighted countries or the countries on mouseover. */\r\n highlightedAltitude?: number;\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\n/** For using these maps you will have to install [`three`](https://threejs.org/manual/) and [react-globe.gl](https://www.npmjs.com/package/react-globe.gl) package to your project */\r\nexport function ThreeDGlobe(props: Props) {\r\n const {\r\n data,\r\n mapData = 'https://raw.githubusercontent.com/UNDP-Data/dv-country-geojson/refs/heads/main/worldMap-simplified.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 colorDomain,\r\n colorLegendTitle,\r\n scaleType = 'threshold',\r\n padding,\r\n mapNoDataColor = Colors.light.graphNoData,\r\n backgroundColor = false,\r\n mapBorderColor = Colors.light.grays['gray-500'],\r\n relativeHeight,\r\n tooltip,\r\n graphID,\r\n mapProperty = 'ISO3',\r\n dataDownload = false,\r\n language = 'en',\r\n minHeight = 0,\r\n theme = 'light',\r\n ariaLabel,\r\n styles,\r\n classNames,\r\n autoRotate = true,\r\n enableZoom = true,\r\n globeMaterial,\r\n centerPoint = [0, 0],\r\n atmosphereColor = '#999',\r\n showColorScale = true,\r\n resetSelectionOnDoubleClick = true,\r\n detailsOnClick,\r\n onSeriesMouseOver,\r\n onSeriesMouseClick,\r\n highlightedIds = [],\r\n highlightedAltitude = 0.1,\r\n scale = 1,\r\n globeOffset = [0, 0],\r\n polygonAltitude = 0.01,\r\n globeCurvatureResolution = 4,\r\n atmosphereAltitude = 0.15,\r\n fogSettings,\r\n lights = [\r\n {\r\n type: 'ambient',\r\n color: 0x404040,\r\n intensity: 0.4,\r\n },\r\n {\r\n type: 'directional',\r\n color: 0xffffff,\r\n intensity: 1,\r\n position: { x: 5, y: 10, z: 5 },\r\n },\r\n ],\r\n selectedId,\r\n collapseColorScaleByDefault,\r\n } = props;\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n const [mapShape, setMapShape] = useState<any>(undefined);\r\n\r\n const [svgWidth, setSvgWidth] = useState(0);\r\n const [svgHeight, setSvgHeight] = useState(0);\r\n\r\n const graphDiv = useRef<HTMLDivElement>(null);\r\n const graphParentDiv = useRef<HTMLDivElement>(null);\r\n\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 if (\r\n mapData ===\r\n 'https://raw.githubusercontent.com/UNDP-Data/dv-country-geojson/refs/heads/main/worldMap-simplified.json'\r\n ) {\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n const features = d.features.map((el: any) => {\r\n if (el.geometry.type === 'Polygon') {\r\n const reversed = [...el.geometry.coordinates[0]].reverse();\r\n const geometry = { ...el.geometry, coordinates: [reversed] };\r\n return { ...el, geometry };\r\n }\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n const coord: any = [];\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n el.geometry.coordinates.forEach((c: any) => {\r\n const reversed = [...c[0]].reverse();\r\n coord.push([reversed]);\r\n });\r\n const geometry = { ...el.geometry, coordinates: coord };\r\n return { ...el, geometry };\r\n });\r\n onUpdateShape(features);\r\n } else onUpdateShape(d.features);\r\n });\r\n } else {\r\n onUpdateShape(mapData.features);\r\n }\r\n }, [mapData]);\r\n\r\n const domain =\r\n colorDomain ||\r\n (scaleType === 'categorical'\r\n ? getUniqValue(data, 'x')\r\n : getJenks(\r\n data.map(d => d.x as number | null | undefined),\r\n colors?.length || 4,\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 || 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={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 <GraphArea ref={graphDiv}>\r\n {svgWidth && svgHeight && mapShape ? (\r\n <Graph\r\n data={data}\r\n globeOffset={globeOffset}\r\n polygonData={mapShape}\r\n colorDomain={domain}\r\n width={svgWidth}\r\n height={svgHeight}\r\n colors={\r\n colors ||\r\n (scaleType === 'categorical'\r\n ? Colors[theme].sequentialColors[\r\n `neutralColorsx0${domain.length as 4 | 5 | 6 | 7 | 8 | 9}`\r\n ]\r\n : Colors[theme].sequentialColors[\r\n `neutralColorsx0${(domain.length + 1) as 4 | 5 | 6 | 7 | 8 | 9}`\r\n ])\r\n }\r\n mapNoDataColor={mapNoDataColor}\r\n categorical={scaleType === 'categorical'}\r\n mapBorderColor={mapBorderColor}\r\n tooltip={tooltip}\r\n mapProperty={mapProperty}\r\n styles={styles}\r\n classNames={classNames}\r\n autoRotate={autoRotate === true ? 1.5 : autoRotate === false ? 0 : autoRotate}\r\n enableZoom={enableZoom}\r\n globeMaterial={globeMaterial}\r\n atmosphereColor={atmosphereColor}\r\n colorLegendTitle={colorLegendTitle}\r\n showColorScale={showColorScale}\r\n hoverStrokeColor={\r\n theme === 'light' ? Colors.light.grays['gray-700'] : Colors.light.grays['gray-300']\r\n }\r\n highlightedIds={highlightedIds}\r\n resetSelectionOnDoubleClick={resetSelectionOnDoubleClick}\r\n detailsOnClick={detailsOnClick}\r\n onSeriesMouseOver={onSeriesMouseOver}\r\n onSeriesMouseClick={onSeriesMouseClick}\r\n scale={scale}\r\n polygonAltitude={polygonAltitude}\r\n centerLat={centerPoint[0]}\r\n centerLng={centerPoint[1]}\r\n atmosphereAltitude={atmosphereAltitude}\r\n globeCurvatureResolution={globeCurvatureResolution}\r\n fogSettings={fogSettings}\r\n lights={lights}\r\n highlightedAltitude={highlightedAltitude}\r\n selectedId={selectedId}\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":["createLightFromConfig","config","light","type","THREE","AmbientLight","color","intensity","DirectionalLight","position","set","x","y","z","target","undefined","castShadow","shadow","mapSize","width","height","camera","near","far","PointLight","distance","decay","SpotLight","angle","Math","PI","penumbra","Error","Graph","props","autoRotate","data","enableZoom","categorical","colorDomain","colors","globeMaterial","polygonData","mapProperty","mapBorderColor","atmosphereColor","tooltip","styles","classNames","mapNoDataColor","colorLegendTitle","showColorScale","hoverStrokeColor","detailsOnClick","onSeriesMouseClick","onSeriesMouseOver","resetSelectionOnDoubleClick","highlightedIds","scale","globeOffset","polygonAltitude","centerLng","centerLat","atmosphereAltitude","globeCurvatureResolution","fogSettings","lights","highlightedAltitude","selectedId","collapseColorScaleByDefault","globeReady","setGlobeReady","useState","globeEl","useRef","mouseClickData","setMouseClickData","showLegend","setShowLegend","mousePos","setMousePos","mouseOverData","setMouseOverData","colorScale","scaleOrdinal","domain","range","scaleThreshold","useEffect","current","controls","autoRotateSpeed","selectedPolygon","find","d","properties","lng","lat","getCentroidCoordinates","pointOfView","altitude","canvas","renderer","domElement","handleMouseMove","e","clientX","clientY","addEventListener","removeEventListener","materials","MeshBasicMaterial","setupCustomLighting","useCallback","scene","lightsAndObjToRemove","traverse","obj","Light","push","children","forEach","parent","remove","map","i","add","fog","Fog","handleGlobeReady","jsxs","jsx","Globe","polygon","includes","id","val","el","clickedData","isEqual","hoverData","setTimeout","polygons","line","renderOrder","cn","colorLegend","Fragment","X","P","display","WebkitLineClamp","WebkitBoxOrient","backgroundColor","length","fill","stroke","textAnchor","numberFormattingFunction","Tooltip","Modal","__html","string2HTML","ThreeDGlobe","$","_c","mapData","t0","graphTitle","sources","graphDescription","footNote","t1","scaleType","t2","padding","t3","t4","t5","relativeHeight","graphID","t6","dataDownload","t7","language","t8","minHeight","t9","theme","t10","ariaLabel","t11","t12","centerPoint","t13","t14","t15","t16","t17","t18","t19","t20","t21","t22","t23","t24","Colors","graphNoData","grays","t25","t26","t27","t28","mapShape","setMapShape","svgWidth","setSvgWidth","svgHeight","setSvgHeight","graphDiv","graphParentDiv","t29","t30","Symbol","for","resizeObserver","ResizeObserver","entries","clientWidth","clientHeight","observe","disconnect","t31","shape","onUpdateShape","useEffectEvent","t32","fetchAndParseJSON","then","features","_temp","t33","t34","getUniqValue","getJenks","_temp2","t35","graphContainer","t36","t37","description","title","GraphHeader","_temp3","filter","_temp4","_temp5","_temp6","_temp7","t38","GraphArea","sequentialColors","max","Spinner","t39","footnote","source","GraphFooter","t40","GraphContainer","d_3","d_2","d_1","d_5","d_4","d_0","geometry","reversed","coordinates","reverse","coord","c","reversed_0","geometry_0"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ThreeDGlobe.js","sources":["../node_modules/hex-to-rgba/build/index.js","../src/Components/Graphs/Maps/ThreeDGlobe/Graph.tsx","../src/Components/Graphs/Maps/ThreeDGlobe/index.tsx"],"sourcesContent":["\"use strict\";\n\nvar removeHash = function removeHash(hex) {\n return hex.charAt(0) === '#' ? hex.slice(1) : hex;\n};\n\nvar parseHex = function parseHex(nakedHex) {\n var isShort = nakedHex.length === 3 || nakedHex.length === 4;\n var twoDigitHexR = isShort ? \"\".concat(nakedHex.slice(0, 1)).concat(nakedHex.slice(0, 1)) : nakedHex.slice(0, 2);\n var twoDigitHexG = isShort ? \"\".concat(nakedHex.slice(1, 2)).concat(nakedHex.slice(1, 2)) : nakedHex.slice(2, 4);\n var twoDigitHexB = isShort ? \"\".concat(nakedHex.slice(2, 3)).concat(nakedHex.slice(2, 3)) : nakedHex.slice(4, 6);\n var twoDigitHexA = (isShort ? \"\".concat(nakedHex.slice(3, 4)).concat(nakedHex.slice(3, 4)) : nakedHex.slice(6, 8)) || 'ff'; // const numericA = +((parseInt(a, 16) / 255).toFixed(2));\n\n return {\n r: twoDigitHexR,\n g: twoDigitHexG,\n b: twoDigitHexB,\n a: twoDigitHexA\n };\n};\n\nvar hexToDecimal = function hexToDecimal(hex) {\n return parseInt(hex, 16);\n};\n\nvar hexesToDecimals = function hexesToDecimals(_ref) {\n var r = _ref.r,\n g = _ref.g,\n b = _ref.b,\n a = _ref.a;\n return {\n r: hexToDecimal(r),\n g: hexToDecimal(g),\n b: hexToDecimal(b),\n a: +(hexToDecimal(a) / 255).toFixed(2)\n };\n};\n\nvar isNumeric = function isNumeric(n) {\n return !isNaN(parseFloat(n)) && isFinite(n);\n}; // eslint-disable-line no-restricted-globals, max-len\n\n\nvar formatRgb = function formatRgb(decimalObject, parameterA) {\n var r = decimalObject.r,\n g = decimalObject.g,\n b = decimalObject.b,\n parsedA = decimalObject.a;\n var a = isNumeric(parameterA) ? parameterA : parsedA;\n return \"rgba(\".concat(r, \", \").concat(g, \", \").concat(b, \", \").concat(a, \")\");\n};\n/**\n * Turns an old-fashioned css hex color value into a rgb color value.\n *\n * If you specify an alpha value, you'll get a rgba() value instead.\n *\n * @param The hex value to convert. ('123456'. '#123456', ''123', '#123')\n * @param An alpha value to apply. (optional) ('0.5', '0.25')\n * @return An rgb or rgba value. ('rgb(11, 22, 33)'. 'rgba(11, 22, 33, 0.5)')\n */\n\n\nvar hexToRgba = function hexToRgba(hex, a) {\n var hashlessHex = removeHash(hex);\n var hexObject = parseHex(hashlessHex);\n var decimalObject = hexesToDecimals(hexObject);\n return formatRgb(decimalObject, a);\n};\n\nmodule.exports = hexToRgba;","/* eslint-disable @typescript-eslint/no-explicit-any */\r\nimport Globe, { GlobeMethods } from 'react-globe.gl';\r\nimport isEqual from 'fast-deep-equal';\r\nimport { useCallback, useEffect, useRef, useState } from 'react';\r\nimport { scaleOrdinal, scaleThreshold } from 'd3-scale';\r\nimport * as THREE from 'three';\r\nimport { Modal } from '@undp/design-system-react/Modal';\r\nimport { P } from '@undp/design-system-react/Typography';\r\nimport { cn } from '@undp/design-system-react/cn';\r\nimport hexToRgba from 'hex-to-rgba';\r\n\r\nimport {\r\n ChoroplethMapDataType,\r\n ClassNameObject,\r\n FogDataType,\r\n LightConfig,\r\n StyleObject,\r\n} from '@/Types';\r\nimport { Tooltip } from '@/Components/Elements/Tooltip';\r\nimport { numberFormattingFunction } from '@/Utils/numberFormattingFunction';\r\nimport { X } from '@/Components/Icons';\r\nimport { string2HTML } from '@/Utils/string2HTML';\r\nimport { getCentroidCoordinates } from '@/Utils/getCentroidCoordinates';\r\n\r\ninterface Props {\r\n width: number;\r\n data: ChoroplethMapDataType[];\r\n autoRotate: number;\r\n enableZoom: boolean;\r\n categorical: boolean;\r\n colorDomain: (number | string)[];\r\n colors: string[];\r\n height: number;\r\n globeMaterial?: THREE.Material;\r\n lights: LightConfig[];\r\n polygonData: any;\r\n mapProperty: string;\r\n mapBorderColor: string;\r\n atmosphereColor: string;\r\n tooltip?: string | ((_d: any) => React.ReactNode);\r\n styles?: StyleObject;\r\n classNames?: ClassNameObject;\r\n onSeriesMouseOver?: (_d: any) => void;\r\n onSeriesMouseClick?: (_d: any) => void;\r\n mapNoDataColor: string;\r\n colorLegendTitle?: string;\r\n showColorScale: boolean;\r\n hoverStrokeColor: string;\r\n detailsOnClick?: string | ((_d: any) => React.ReactNode);\r\n resetSelectionOnDoubleClick: boolean;\r\n highlightedIds: string[];\r\n scale: number;\r\n globeOffset: [number, number];\r\n polygonAltitude: number;\r\n centerLng: number;\r\n centerLat: number;\r\n atmosphereAltitude: number;\r\n globeCurvatureResolution: number;\r\n fogSettings?: FogDataType;\r\n highlightedAltitude: number;\r\n selectedId?: string;\r\n collapseColorScaleByDefault?: boolean;\r\n dimmedOpacity: number;\r\n}\r\n\r\nfunction createLightFromConfig(config: LightConfig): THREE.Light {\r\n let light: THREE.Light;\r\n\r\n switch (config.type) {\r\n case 'ambient':\r\n light = new THREE.AmbientLight(config.color, config.intensity);\r\n break;\r\n case 'directional':\r\n light = new THREE.DirectionalLight(config.color, config.intensity);\r\n if (config.position) {\r\n if (config.position === 'camera') light.position.set(0, 0, 0);\r\n else light.position.set(config.position.x, config.position.y, config.position.z);\r\n }\r\n if (config.target || config.position === 'camera') {\r\n (light as THREE.SpotLight).target.position.set(\r\n config.target?.x || 0,\r\n config.target?.y || 0,\r\n config.target?.z === undefined ? -1 : config.target.z,\r\n );\r\n }\r\n if (config.castShadow) {\r\n (light as THREE.DirectionalLight).castShadow = true;\r\n if (config.shadow) {\r\n (light as THREE.DirectionalLight).shadow.mapSize.width = config.shadow.mapSize.width;\r\n (light as THREE.DirectionalLight).shadow.mapSize.height = config.shadow.mapSize.height;\r\n (light as THREE.DirectionalLight).shadow.camera.near = config.shadow.camera.near;\r\n (light as THREE.DirectionalLight).shadow.camera.far = config.shadow.camera.far;\r\n }\r\n }\r\n break;\r\n case 'point':\r\n light = new THREE.PointLight(\r\n config.color,\r\n config.intensity,\r\n config.distance || 0,\r\n config.decay || 2,\r\n );\r\n if (config.position) {\r\n if (config.position === 'camera') light.position.set(0, 0, 0);\r\n else light.position.set(config.position.x, config.position.y, config.position.z);\r\n }\r\n break;\r\n case 'spot':\r\n light = new THREE.SpotLight(\r\n config.color,\r\n config.intensity,\r\n config.distance || 0,\r\n config.angle || Math.PI / 3,\r\n config.penumbra || 0,\r\n config.decay || 2,\r\n );\r\n if (config.position) {\r\n if (config.position === 'camera') light.position.set(0, 0, 0);\r\n else light.position.set(config.position.x, config.position.y, config.position.z);\r\n }\r\n if (config.target || config.position === 'camera') {\r\n (light as THREE.SpotLight).target.position.set(\r\n config.target?.x || 0,\r\n config.target?.y || 0,\r\n config.target?.z || 0,\r\n );\r\n }\r\n if (config.castShadow) {\r\n (light as THREE.SpotLight).castShadow = true;\r\n if (config.shadow) {\r\n (light as THREE.SpotLight).shadow.mapSize.width = config.shadow.mapSize.width;\r\n (light as THREE.SpotLight).shadow.mapSize.height = config.shadow.mapSize.height;\r\n (light as THREE.SpotLight).shadow.camera.near = config.shadow.camera.near;\r\n (light as THREE.SpotLight).shadow.camera.far = config.shadow.camera.far;\r\n }\r\n }\r\n break;\r\n default:\r\n throw new Error('Unknown light type');\r\n }\r\n\r\n return light;\r\n}\r\nfunction Graph(props: Props) {\r\n const {\r\n width,\r\n autoRotate,\r\n data,\r\n enableZoom,\r\n categorical,\r\n colorDomain,\r\n colors,\r\n globeMaterial,\r\n height,\r\n polygonData,\r\n mapProperty,\r\n mapBorderColor,\r\n atmosphereColor,\r\n tooltip,\r\n styles,\r\n classNames,\r\n mapNoDataColor,\r\n colorLegendTitle,\r\n showColorScale,\r\n hoverStrokeColor,\r\n detailsOnClick,\r\n onSeriesMouseClick,\r\n onSeriesMouseOver,\r\n resetSelectionOnDoubleClick,\r\n highlightedIds,\r\n scale,\r\n globeOffset,\r\n polygonAltitude,\r\n centerLng,\r\n centerLat,\r\n atmosphereAltitude,\r\n globeCurvatureResolution,\r\n fogSettings,\r\n lights,\r\n highlightedAltitude,\r\n selectedId,\r\n collapseColorScaleByDefault,\r\n dimmedOpacity,\r\n } = props;\r\n const [globeReady, setGlobeReady] = useState(false);\r\n const globeEl = useRef<GlobeMethods | undefined>(undefined);\r\n const [mouseClickData, setMouseClickData] = useState<any>(undefined);\r\n\r\n const [showLegend, setShowLegend] = useState(\r\n collapseColorScaleByDefault === undefined ? !(width < 680) : !collapseColorScaleByDefault,\r\n );\r\n const [mousePos, setMousePos] = useState({ x: 0, y: 0 });\r\n const [mouseOverData, setMouseOverData] = useState<ChoroplethMapDataType | undefined>(undefined);\r\n const colorScale = categorical\r\n ? scaleOrdinal<number | string, string>().domain(colorDomain).range(colors)\r\n : scaleThreshold<number, string>()\r\n .domain(colorDomain as number[])\r\n .range(colors);\r\n useEffect(() => {\r\n if (globeEl.current) {\r\n globeEl.current.controls().enableZoom = enableZoom;\r\n }\r\n }, [enableZoom]);\r\n useEffect(() => {\r\n if (globeEl.current) {\r\n if (mouseOverData || selectedId) {\r\n globeEl.current.controls().autoRotate = false;\r\n } else {\r\n globeEl.current.controls().autoRotate = autoRotate === 0 ? false : true;\r\n globeEl.current.controls().autoRotateSpeed = autoRotate;\r\n }\r\n }\r\n }, [mouseOverData, selectedId, autoRotate]);\r\n useEffect(() => {\r\n if (globeEl.current && selectedId) {\r\n const selectedPolygon = polygonData.find(\r\n (d: any) => d.properties[mapProperty] === selectedId,\r\n );\r\n const [lng, lat] = getCentroidCoordinates(selectedPolygon);\r\n globeEl.current.pointOfView({ lat, lng, altitude: scale }, 1000);\r\n }\r\n }, [selectedId, scale, polygonData, mapProperty]);\r\n\r\n useEffect(() => {\r\n const canvas = globeEl.current?.renderer().domElement;\r\n if (!canvas) return;\r\n\r\n const handleMouseMove = (e: MouseEvent) => {\r\n setMousePos({ x: e.clientX, y: e.clientY });\r\n };\r\n\r\n canvas.addEventListener('mousemove', handleMouseMove);\r\n return () => canvas.removeEventListener('mousemove', handleMouseMove);\r\n }, []);\r\n\r\n useEffect(() => {\r\n if (globeEl.current) {\r\n globeEl.current.pointOfView({ lat: centerLat, lng: centerLng, altitude: scale }, 1000);\r\n }\r\n }, [scale, centerLng, centerLat]);\r\n const materials =\r\n globeMaterial ||\r\n new THREE.MeshBasicMaterial({\r\n color: '#FFF',\r\n });\r\n const setupCustomLighting = useCallback(() => {\r\n if (!globeEl.current) return;\r\n\r\n const scene = globeEl.current.scene();\r\n const camera = globeEl.current.camera();\r\n\r\n let lightsAndObjToRemove: THREE.Object3D[] = [];\r\n scene.traverse(obj => {\r\n if (obj instanceof THREE.Light) {\r\n lightsAndObjToRemove.push(obj);\r\n }\r\n });\r\n lightsAndObjToRemove = [...lightsAndObjToRemove, ...camera.children];\r\n lightsAndObjToRemove.forEach(light => light.parent?.remove(light));\r\n\r\n const lightConfig = lights.map(config => createLightFromConfig(config));\r\n lightConfig.forEach((light, i) => {\r\n if (lights[i].type !== 'ambient' && lights[i].position === 'camera') {\r\n camera.add(light);\r\n if (lights[i].type !== 'point') {\r\n camera.add((light as THREE.DirectionalLight | THREE.SpotLight).target);\r\n }\r\n } else {\r\n scene.add(light);\r\n }\r\n });\r\n\r\n if (fogSettings) {\r\n scene.fog = new THREE.Fog(fogSettings.color, fogSettings.near, fogSettings.far);\r\n }\r\n }, [lights, fogSettings]);\r\n\r\n const handleGlobeReady = () => {\r\n setGlobeReady(true);\r\n setupCustomLighting();\r\n };\r\n useEffect(() => {\r\n if (globeReady) {\r\n setupCustomLighting();\r\n }\r\n }, [globeReady, setupCustomLighting]);\r\n return (\r\n <div className='relative'>\r\n <Globe\r\n ref={globeEl}\r\n height={height}\r\n width={width}\r\n globeOffset={globeOffset}\r\n lineHoverPrecision={0}\r\n polygonsData={polygonData}\r\n polygonAltitude={(polygon: any) =>\r\n highlightedIds.includes(polygon?.properties?.[mapProperty]) ||\r\n polygon?.properties?.[mapProperty] === selectedId\r\n ? highlightedAltitude\r\n : polygon?.properties?.[mapProperty] === mouseOverData?.id ||\r\n polygon?.properties?.[mapProperty] === mouseClickData?.id\r\n ? highlightedAltitude\r\n : polygonAltitude\r\n }\r\n polygonCapColor={(polygon: any) => {\r\n const opacity = selectedId\r\n ? polygon?.properties?.[mapProperty] === selectedId\r\n ? 1\r\n : dimmedOpacity\r\n : highlightedIds.length !== 0\r\n ? highlightedIds.includes(polygon?.properties?.[mapProperty])\r\n ? 1\r\n : dimmedOpacity\r\n : 1;\r\n const id = polygon?.properties?.[mapProperty];\r\n const val = data.find(el => el.id === id)?.x;\r\n const color = val !== undefined && val !== null ? colorScale(val as any) : mapNoDataColor;\r\n return hexToRgba(color, `${opacity}`);\r\n }}\r\n polygonSideColor={(polygon: any) => {\r\n const id = polygon?.properties?.[mapProperty];\r\n const val = data.find(el => el.id === id)?.x;\r\n const opacity = selectedId\r\n ? polygon?.properties?.[mapProperty] === selectedId\r\n ? 1\r\n : dimmedOpacity\r\n : highlightedIds.length !== 0\r\n ? highlightedIds.includes(polygon?.properties?.[mapProperty])\r\n ? 1\r\n : dimmedOpacity\r\n : 1;\r\n const color = val !== undefined && val !== null ? colorScale(val as any) : mapNoDataColor;\r\n return hexToRgba(color, `${opacity}`);\r\n }}\r\n polygonStrokeColor={(polygon: any) =>\r\n polygon?.properties?.[mapProperty] === mouseOverData?.id\r\n ? hoverStrokeColor\r\n : mapBorderColor\r\n }\r\n onGlobeClick={() => {\r\n setMouseClickData(undefined);\r\n }}\r\n onPolygonClick={(polygon: any) => {\r\n const clickedData = polygon?.properties?.[mapProperty]\r\n ? data.find(el => el.id === polygon?.properties?.[mapProperty])\r\n : undefined;\r\n if (onSeriesMouseClick || detailsOnClick) {\r\n if (\r\n isEqual(mouseClickData, clickedData) &&\r\n resetSelectionOnDoubleClick &&\r\n clickedData\r\n ) {\r\n setMouseClickData(undefined);\r\n onSeriesMouseClick?.(undefined);\r\n } else {\r\n setMouseClickData(clickedData);\r\n onSeriesMouseClick?.(clickedData);\r\n }\r\n }\r\n }}\r\n onPolygonHover={(polygon: any) => {\r\n const hoverData = polygon?.properties?.[mapProperty]\r\n ? data.find(el => el.id === polygon?.properties?.[mapProperty])\r\n : undefined;\r\n setMouseOverData(hoverData);\r\n onSeriesMouseOver?.(hoverData);\r\n }}\r\n atmosphereColor={atmosphereColor}\r\n atmosphereAltitude={atmosphereAltitude}\r\n globeCurvatureResolution={globeCurvatureResolution}\r\n globeMaterial={materials}\r\n backgroundColor='rgba(0, 0, 0, 0)'\r\n polygonsTransitionDuration={100}\r\n onGlobeReady={() => {\r\n if (globeEl.current) {\r\n globeEl.current.pointOfView({\r\n lat: centerLat,\r\n lng: centerLng,\r\n });\r\n const scene = globeEl.current.scene();\r\n setTimeout(() => {\r\n const polygons = scene.children[3]?.children[0]?.children[4]?.children || [];\r\n polygons.forEach(d => {\r\n const line = d.children[1];\r\n line.renderOrder = 2;\r\n });\r\n }, 300);\r\n const camera = globeEl.current.camera();\r\n scene.add(camera);\r\n handleGlobeReady();\r\n }\r\n }}\r\n />\r\n {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\r\n className='color-legend-box p-2 bg-[rgba(240,240,240,0.7)] dark:bg-[rgba(30,30,30,0.7)]'\r\n style={{\r\n width: categorical ? undefined : '340px',\r\n }}\r\n >\r\n {colorLegendTitle && colorLegendTitle !== '' ? (\r\n <P\r\n size='xs'\r\n marginBottom='xs'\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 {!categorical ? (\r\n <svg width='100%' viewBox='0 0 320 30' direction='ltr'>\r\n <g>\r\n {colorDomain.map((d, i) => (\r\n <g key={i} className='cursor-pointer'>\r\n <rect\r\n x={(i * 320) / colors.length + 1}\r\n y={1}\r\n width={320 / colors.length - 2}\r\n height={8}\r\n style={{\r\n fill: colors[i],\r\n stroke: colors[i],\r\n }}\r\n />\r\n <text\r\n x={((i + 1) * 320) / colors.length}\r\n y={25}\r\n className='fill-primary-gray-700 dark:fill-primary-gray-300 text-xs'\r\n style={{ textAnchor: 'middle' }}\r\n >\r\n {numberFormattingFunction(d as number, 'NA')}\r\n </text>\r\n </g>\r\n ))}\r\n <g>\r\n <rect\r\n x={(colorDomain.length * 320) / colors.length + 1}\r\n y={1}\r\n width={320 / colors.length - 2}\r\n height={8}\r\n style={{\r\n fill: colors[colorDomain.length],\r\n stroke: colors[colorDomain.length],\r\n }}\r\n />\r\n </g>\r\n </g>\r\n </svg>\r\n ) : (\r\n <div className='flex flex-col gap-3'>\r\n {colorDomain.map((d, i) => (\r\n <div key={i} className='flex gap-2 items-center'>\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 )}\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 {mouseOverData && tooltip ? (\r\n <Tooltip\r\n data={mouseOverData}\r\n body={tooltip}\r\n xPos={mousePos.x}\r\n yPos={mousePos.y}\r\n backgroundStyle={styles?.tooltip}\r\n className={classNames?.tooltip}\r\n />\r\n ) : null}\r\n {detailsOnClick && mouseClickData !== undefined ? (\r\n <Modal\r\n open={mouseClickData !== undefined}\r\n onClose={() => {\r\n setMouseClickData(undefined);\r\n }}\r\n >\r\n <div\r\n className='graph-modal-content m-0'\r\n dangerouslySetInnerHTML={\r\n typeof detailsOnClick === 'string'\r\n ? { __html: string2HTML(detailsOnClick, mouseClickData) }\r\n : undefined\r\n }\r\n >\r\n {typeof detailsOnClick === 'function' ? detailsOnClick(mouseClickData) : null}\r\n </div>\r\n </Modal>\r\n ) : null}\r\n </div>\r\n );\r\n}\r\n\r\nexport default Graph;\r\n","import React, { useEffect, useEffectEvent, useRef, useState } from 'react';\r\nimport { Spinner } from '@undp/design-system-react/Spinner';\r\nimport * as THREE from 'three';\r\n\r\nimport Graph from './Graph';\r\n\r\nimport { GraphHeader } from '@/Components/Elements/GraphHeader';\r\nimport { GraphFooter } from '@/Components/Elements/GraphFooter';\r\nimport {\r\n ChoroplethMapDataType,\r\n ClassNameObject,\r\n FogDataType,\r\n Languages,\r\n LightConfig,\r\n ScaleDataType,\r\n SourcesDataType,\r\n StyleObject,\r\n} from '@/Types';\r\nimport { fetchAndParseJSON } from '@/Utils/fetchAndParseData';\r\nimport { Colors } from '@/Components/ColorPalette';\r\nimport { getUniqValue } from '@/Utils/getUniqValue';\r\nimport { getJenks } from '@/Utils/getJenks';\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: ChoroplethMapDataType[];\r\n\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 /** Colors for the choropleth map */\r\n colors?: string[];\r\n /** Domain of colors for the graph */\r\n colorDomain?: number[] | 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 /** 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 /** Stroke color of the regions in the map */\r\n mapBorderColor?: string;\r\n /** Center point of the map */\r\n centerPoint?: [number, number];\r\n /** Defines if the globe rotates automatically */\r\n autoRotate?: number | boolean;\r\n /** Defines the material property applied to the sphere of the globe */\r\n globeMaterial?: THREE.Material;\r\n /** Defines the lights for the 3D scene */\r\n lights?: LightConfig[];\r\n /** Defines the colo of the glow around the globe */\r\n atmosphereColor?: string;\r\n /** Defines if the globe can be zoomed when scrolled */\r\n enableZoom?: boolean;\r\n /** Position offset of the globe relative to the canvas center */\r\n globeOffset?: [number, number];\r\n /** Defines the camera distance from Earth. This helps in defining the default size of the globe. Smaller = closer camera therefore the globe is bigger) */\r\n scale?: number;\r\n /** Defines the spacing between the country shape polygon with the sphere */\r\n polygonAltitude?: number;\r\n /** Scale for the colors */\r\n scaleType?: Exclude<ScaleDataType, 'linear'>;\r\n /** Toggle visibility of color scale. */\r\n showColorScale?: boolean;\r\n /** Toggle if color scale is collapsed by default. */\r\n collapseColorScaleByDefault?: boolean;\r\n /** The max altitude of the atmosphere, in terms of globe radius units. */\r\n atmosphereAltitude?: number;\r\n /** Resolution in angular degrees of the sphere curvature. The finer the resolution, the more the globe is fragmented into smaller faces to approximate the spheric surface, at the cost of performance. */\r\n globeCurvatureResolution?: number;\r\n /** Defines fog settings for the scene. */\r\n fogSettings?: FogDataType;\r\n /** Property in the property object in mapData geoJson object is used to match to the id in the data object */\r\n mapProperty?: string;\r\n /** Countries or regions to be highlighted */\r\n selectedId?: string;\r\n /** Countries or regions to be highlighted */\r\n highlightedIds?: string[];\r\n /** Defines the altitude of the highlighted countries or the countries on mouseover. */\r\n highlightedAltitude?: number;\r\n /** Defines the opacity of the non-highlighted data */\r\n dimmedOpacity?: number;\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\n/** For using these maps you will have to install [`three`](https://threejs.org/manual/) and [react-globe.gl](https://www.npmjs.com/package/react-globe.gl) package to your project */\r\nexport function ThreeDGlobe(props: Props) {\r\n const {\r\n data,\r\n mapData = 'https://raw.githubusercontent.com/UNDP-Data/dv-country-geojson/refs/heads/main/worldMap-simplified.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 colorDomain,\r\n colorLegendTitle,\r\n scaleType = 'threshold',\r\n padding,\r\n mapNoDataColor = Colors.light.graphNoData,\r\n backgroundColor = false,\r\n mapBorderColor = Colors.light.grays['gray-500'],\r\n relativeHeight,\r\n tooltip,\r\n graphID,\r\n mapProperty = 'ISO3',\r\n dataDownload = false,\r\n language = 'en',\r\n minHeight = 0,\r\n theme = 'light',\r\n ariaLabel,\r\n styles,\r\n classNames,\r\n autoRotate = true,\r\n enableZoom = true,\r\n globeMaterial,\r\n centerPoint = [0, 0],\r\n atmosphereColor = '#999',\r\n showColorScale = true,\r\n resetSelectionOnDoubleClick = true,\r\n detailsOnClick,\r\n onSeriesMouseOver,\r\n onSeriesMouseClick,\r\n highlightedIds = [],\r\n highlightedAltitude = 0.1,\r\n dimmedOpacity = 0.3,\r\n scale = 1,\r\n globeOffset = [0, 0],\r\n polygonAltitude = 0.01,\r\n globeCurvatureResolution = 4,\r\n atmosphereAltitude = 0.15,\r\n fogSettings,\r\n lights = [\r\n {\r\n type: 'ambient',\r\n color: 0x404040,\r\n intensity: 0.4,\r\n },\r\n {\r\n type: 'directional',\r\n color: 0xffffff,\r\n intensity: 1,\r\n position: { x: 5, y: 10, z: 5 },\r\n },\r\n ],\r\n selectedId,\r\n collapseColorScaleByDefault,\r\n } = props;\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n const [mapShape, setMapShape] = useState<any>(undefined);\r\n\r\n const [svgWidth, setSvgWidth] = useState(0);\r\n const [svgHeight, setSvgHeight] = useState(0);\r\n\r\n const graphDiv = useRef<HTMLDivElement>(null);\r\n const graphParentDiv = useRef<HTMLDivElement>(null);\r\n\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 if (\r\n mapData ===\r\n 'https://raw.githubusercontent.com/UNDP-Data/dv-country-geojson/refs/heads/main/worldMap-simplified.json'\r\n ) {\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n const features = d.features.map((el: any) => {\r\n if (el.geometry.type === 'Polygon') {\r\n const reversed = [...el.geometry.coordinates[0]].reverse();\r\n const geometry = { ...el.geometry, coordinates: [reversed] };\r\n return { ...el, geometry };\r\n }\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n const coord: any = [];\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n el.geometry.coordinates.forEach((c: any) => {\r\n const reversed = [...c[0]].reverse();\r\n coord.push([reversed]);\r\n });\r\n const geometry = { ...el.geometry, coordinates: coord };\r\n return { ...el, geometry };\r\n });\r\n onUpdateShape(features);\r\n } else onUpdateShape(d.features);\r\n });\r\n } else {\r\n onUpdateShape(mapData.features);\r\n }\r\n }, [mapData]);\r\n\r\n const domain =\r\n colorDomain ||\r\n (scaleType === 'categorical'\r\n ? getUniqValue(data, 'x')\r\n : getJenks(\r\n data.map(d => d.x as number | null | undefined),\r\n colors?.length || 4,\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 || 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={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 <GraphArea ref={graphDiv}>\r\n {svgWidth && svgHeight && mapShape ? (\r\n <Graph\r\n data={data}\r\n globeOffset={globeOffset}\r\n polygonData={mapShape}\r\n colorDomain={domain}\r\n width={svgWidth}\r\n height={svgHeight}\r\n colors={\r\n colors ||\r\n (scaleType === 'categorical'\r\n ? Colors[theme].sequentialColors[\r\n `neutralColorsx0${domain.length as 4 | 5 | 6 | 7 | 8 | 9}`\r\n ]\r\n : Colors[theme].sequentialColors[\r\n `neutralColorsx0${(domain.length + 1) as 4 | 5 | 6 | 7 | 8 | 9}`\r\n ])\r\n }\r\n mapNoDataColor={mapNoDataColor}\r\n categorical={scaleType === 'categorical'}\r\n mapBorderColor={mapBorderColor}\r\n tooltip={tooltip}\r\n mapProperty={mapProperty}\r\n styles={styles}\r\n classNames={classNames}\r\n autoRotate={autoRotate === true ? 1.5 : autoRotate === false ? 0 : autoRotate}\r\n enableZoom={enableZoom}\r\n globeMaterial={globeMaterial}\r\n atmosphereColor={atmosphereColor}\r\n colorLegendTitle={colorLegendTitle}\r\n showColorScale={showColorScale}\r\n hoverStrokeColor={\r\n theme === 'light' ? Colors.light.grays['gray-700'] : Colors.light.grays['gray-300']\r\n }\r\n highlightedIds={highlightedIds}\r\n resetSelectionOnDoubleClick={resetSelectionOnDoubleClick}\r\n detailsOnClick={detailsOnClick}\r\n onSeriesMouseOver={onSeriesMouseOver}\r\n onSeriesMouseClick={onSeriesMouseClick}\r\n scale={scale}\r\n polygonAltitude={polygonAltitude}\r\n centerLat={centerPoint[0]}\r\n centerLng={centerPoint[1]}\r\n atmosphereAltitude={atmosphereAltitude}\r\n globeCurvatureResolution={globeCurvatureResolution}\r\n fogSettings={fogSettings}\r\n lights={lights}\r\n highlightedAltitude={highlightedAltitude}\r\n selectedId={selectedId}\r\n collapseColorScaleByDefault={collapseColorScaleByDefault}\r\n dimmedOpacity={dimmedOpacity}\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":["removeHash","hex","parseHex","nakedHex","isShort","twoDigitHexR","twoDigitHexG","twoDigitHexB","twoDigitHexA","hexToDecimal","hexesToDecimals","_ref","r","g","b","a","isNumeric","n","formatRgb","decimalObject","parameterA","parsedA","hexToRgba","hashlessHex","hexObject","build","createLightFromConfig","config","light","type","THREE","AmbientLight","color","intensity","DirectionalLight","position","set","x","y","z","target","undefined","castShadow","shadow","mapSize","width","height","camera","near","far","PointLight","distance","decay","SpotLight","angle","Math","PI","penumbra","Error","Graph","props","autoRotate","data","enableZoom","categorical","colorDomain","colors","globeMaterial","polygonData","mapProperty","mapBorderColor","atmosphereColor","tooltip","styles","classNames","mapNoDataColor","colorLegendTitle","showColorScale","hoverStrokeColor","detailsOnClick","onSeriesMouseClick","onSeriesMouseOver","resetSelectionOnDoubleClick","highlightedIds","scale","globeOffset","polygonAltitude","centerLng","centerLat","atmosphereAltitude","globeCurvatureResolution","fogSettings","lights","highlightedAltitude","selectedId","collapseColorScaleByDefault","dimmedOpacity","globeReady","setGlobeReady","useState","globeEl","useRef","mouseClickData","setMouseClickData","showLegend","setShowLegend","mousePos","setMousePos","mouseOverData","setMouseOverData","colorScale","scaleOrdinal","domain","range","scaleThreshold","useEffect","current","controls","autoRotateSpeed","selectedPolygon","find","d","properties","lng","lat","getCentroidCoordinates","pointOfView","altitude","canvas","renderer","domElement","handleMouseMove","e","clientX","clientY","addEventListener","removeEventListener","materials","MeshBasicMaterial","setupCustomLighting","useCallback","scene","lightsAndObjToRemove","traverse","obj","Light","push","children","forEach","parent","remove","map","i","add","fog","Fog","handleGlobeReady","jsxs","jsx","Globe","polygon","includes","id","opacity","length","val","el","clickedData","isEqual","hoverData","setTimeout","polygons","line","renderOrder","cn","colorLegend","Fragment","X","P","display","WebkitLineClamp","WebkitBoxOrient","backgroundColor","fill","stroke","textAnchor","numberFormattingFunction","Tooltip","Modal","__html","string2HTML","ThreeDGlobe","$","_c","mapData","t0","graphTitle","sources","graphDescription","footNote","t1","scaleType","t2","padding","t3","t4","t5","relativeHeight","graphID","t6","dataDownload","t7","language","t8","minHeight","t9","theme","t10","ariaLabel","t11","t12","centerPoint","t13","t14","t15","t16","t17","t18","t19","t20","t21","t22","t23","t24","t25","Colors","graphNoData","grays","t26","t27","t28","t29","mapShape","setMapShape","svgWidth","setSvgWidth","svgHeight","setSvgHeight","graphDiv","graphParentDiv","t30","t31","Symbol","for","resizeObserver","ResizeObserver","entries","clientWidth","clientHeight","observe","disconnect","t32","shape","onUpdateShape","useEffectEvent","t33","fetchAndParseJSON","then","features","_temp","t34","t35","getUniqValue","getJenks","_temp2","t36","graphContainer","t37","t38","description","title","GraphHeader","_temp3","filter","_temp4","_temp5","_temp6","_temp7","t39","GraphArea","sequentialColors","max","Spinner","t40","footnote","source","GraphFooter","t41","GraphContainer","d_3","d_2","d_1","d_5","d_4","d_0","geometry","reversed","coordinates","reverse","coord","c","reversed_0","geometry_0"],"mappings":"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","x_google_ignoreList":[0]}
|
package/dist/index.d.ts
CHANGED
|
@@ -5438,6 +5438,8 @@ declare interface Props_16 {
|
|
|
5438
5438
|
highlightedIds?: string[];
|
|
5439
5439
|
/** Defines the altitude of the highlighted countries or the countries on mouseover. */
|
|
5440
5440
|
highlightedAltitude?: number;
|
|
5441
|
+
/** Defines the opacity of the non-highlighted data */
|
|
5442
|
+
dimmedOpacity?: number;
|
|
5441
5443
|
/** Enable data download option as a csv */
|
|
5442
5444
|
dataDownload?: boolean;
|
|
5443
5445
|
/** Reset selection on double-click. Only applicable when used in a dashboard context with filters. */
|