@dxos/react-ui-geo 0.8.4-main.b97322e → 0.8.4-main.bd9b33e6c8

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.
Files changed (59) hide show
  1. package/dist/lib/browser/index.mjs +399 -446
  2. package/dist/lib/browser/index.mjs.map +4 -4
  3. package/dist/lib/browser/meta.json +1 -1
  4. package/dist/lib/node-esm/index.mjs +399 -446
  5. package/dist/lib/node-esm/index.mjs.map +4 -4
  6. package/dist/lib/node-esm/meta.json +1 -1
  7. package/dist/types/src/components/Globe/Globe.d.ts +10 -4
  8. package/dist/types/src/components/Globe/Globe.d.ts.map +1 -1
  9. package/dist/types/src/components/Globe/Globe.stories.d.ts +31 -9
  10. package/dist/types/src/components/Globe/Globe.stories.d.ts.map +1 -1
  11. package/dist/types/src/components/Map/Map.d.ts +38 -18
  12. package/dist/types/src/components/Map/Map.d.ts.map +1 -1
  13. package/dist/types/src/components/Map/Map.stories.d.ts +14 -8
  14. package/dist/types/src/components/Map/Map.stories.d.ts.map +1 -1
  15. package/dist/types/src/components/Toolbar/Controls.d.ts.map +1 -1
  16. package/dist/types/src/components/index.d.ts +0 -1
  17. package/dist/types/src/components/index.d.ts.map +1 -1
  18. package/dist/types/src/hooks/context.d.ts +6 -8
  19. package/dist/types/src/hooks/context.d.ts.map +1 -1
  20. package/dist/types/src/hooks/useGlobeZoomHandler.d.ts +1 -1
  21. package/dist/types/src/hooks/useGlobeZoomHandler.d.ts.map +1 -1
  22. package/dist/types/src/hooks/useMapZoomHandler.d.ts +1 -1
  23. package/dist/types/src/hooks/useMapZoomHandler.d.ts.map +1 -1
  24. package/dist/types/src/hooks/useSpinner.d.ts +1 -1
  25. package/dist/types/src/hooks/useSpinner.d.ts.map +1 -1
  26. package/dist/types/src/hooks/useTour.d.ts +4 -3
  27. package/dist/types/src/hooks/useTour.d.ts.map +1 -1
  28. package/dist/types/src/index.d.ts +1 -0
  29. package/dist/types/src/index.d.ts.map +1 -1
  30. package/dist/types/src/translations.d.ts +12 -0
  31. package/dist/types/src/translations.d.ts.map +1 -0
  32. package/dist/types/src/types.d.ts +2 -1
  33. package/dist/types/src/types.d.ts.map +1 -1
  34. package/dist/types/src/util/path.d.ts +5 -8
  35. package/dist/types/src/util/path.d.ts.map +1 -1
  36. package/dist/types/src/util/render.d.ts +4 -4
  37. package/dist/types/src/util/render.d.ts.map +1 -1
  38. package/dist/types/tsconfig.tsbuildinfo +1 -1
  39. package/package.json +30 -23
  40. package/src/components/Globe/Globe.stories.tsx +83 -35
  41. package/src/components/Globe/Globe.tsx +101 -54
  42. package/src/components/Map/Map.stories.tsx +28 -15
  43. package/src/components/Map/Map.tsx +220 -94
  44. package/src/components/Toolbar/Controls.tsx +14 -20
  45. package/src/components/index.ts +0 -2
  46. package/src/hooks/context.tsx +11 -34
  47. package/src/hooks/useGlobeZoomHandler.ts +9 -3
  48. package/src/hooks/useMapZoomHandler.ts +1 -1
  49. package/src/hooks/useSpinner.ts +2 -1
  50. package/src/hooks/useTour.ts +10 -8
  51. package/src/index.ts +1 -0
  52. package/src/translations.ts +20 -0
  53. package/src/types.ts +3 -1
  54. package/src/util/inertia.ts +1 -1
  55. package/src/util/path.ts +5 -6
  56. package/src/util/render.ts +5 -3
  57. package/dist/types/src/components/types.d.ts +0 -15
  58. package/dist/types/src/components/types.d.ts.map +0 -1
  59. package/src/components/types.ts +0 -19
package/package.json CHANGED
@@ -1,20 +1,26 @@
1
1
  {
2
2
  "name": "@dxos/react-ui-geo",
3
- "version": "0.8.4-main.b97322e",
3
+ "version": "0.8.4-main.bd9b33e6c8",
4
4
  "description": "Geo components.",
5
5
  "homepage": "https://github.com/dxos",
6
6
  "bugs": "https://github.com/dxos/issues",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/dxos/dxos"
10
+ },
7
11
  "license": "MIT",
8
12
  "author": "DXOS.org",
9
13
  "sideEffects": true,
10
14
  "type": "module",
11
15
  "exports": {
12
16
  "./data": {
17
+ "source": "./src/data.ts",
13
18
  "types": "./dist/types/src/data.d.ts",
14
19
  "browser": "./dist/lib/browser/data.mjs",
15
20
  "node": "./dist/lib/node-esm/data.mjs"
16
21
  },
17
22
  ".": {
23
+ "source": "./src/index.ts",
18
24
  "types": "./dist/types/src/index.d.ts",
19
25
  "browser": "./dist/lib/browser/index.mjs",
20
26
  "node": "./dist/lib/node-esm/index.mjs"
@@ -34,51 +40,52 @@
34
40
  "src"
35
41
  ],
36
42
  "dependencies": {
37
- "@preact-signals/safe-react": "^0.9.0",
43
+ "@radix-ui/react-compose-refs": "1.1.1",
44
+ "@radix-ui/react-context": "1.1.1",
38
45
  "d3": "^7.9.0",
39
46
  "d3-geo-projection": "^4.0.0",
40
47
  "d3-hexbin": "^0.2.2",
41
48
  "geojson": "^0.5.0",
42
49
  "leaflet": "^1.9.4",
43
50
  "lodash.defaultsdeep": "^4.6.1",
44
- "react-leaflet": "^4.2.1",
51
+ "react-leaflet": "^5.0.0",
45
52
  "react-resize-detector": "^11.0.1",
46
53
  "topojson-client": "^3.1.0",
47
54
  "topojson-simplify": "^3.0.3",
48
55
  "versor": "^0.2.0",
49
- "@dxos/async": "0.8.4-main.b97322e",
50
- "@dxos/debug": "0.8.4-main.b97322e",
51
- "@dxos/log": "0.8.4-main.b97322e",
52
- "@dxos/node-std": "0.8.4-main.b97322e",
53
- "@dxos/util": "0.8.4-main.b97322e"
56
+ "@dxos/async": "0.8.4-main.bd9b33e6c8",
57
+ "@dxos/debug": "0.8.4-main.bd9b33e6c8",
58
+ "@dxos/log": "0.8.4-main.bd9b33e6c8",
59
+ "@dxos/node-std": "0.8.4-main.bd9b33e6c8",
60
+ "@dxos/util": "0.8.4-main.bd9b33e6c8"
54
61
  },
55
62
  "devDependencies": {
56
- "@react-three/drei": "^9.99.0",
57
- "@react-three/fiber": "^8.15.0",
63
+ "@react-three/drei": "^10.7.7",
64
+ "@react-three/fiber": "^9.5.0",
58
65
  "@types/d3": "^7.4.3",
59
66
  "@types/geojson": "^7946.0.14",
60
67
  "@types/leaflet": "^1.9.16",
61
- "@types/react": "~18.2.0",
62
- "@types/react-dom": "~18.2.0",
68
+ "@types/react": "~19.2.7",
69
+ "@types/react-dom": "~19.2.3",
63
70
  "@types/three": "0.165.0",
64
71
  "@types/topojson-client": "^3.1.4",
65
72
  "@types/topojson-simplify": "^3.0.3",
66
73
  "@types/topojson-specification": "^1.0.5",
67
74
  "JSONStream": "^1.3.5",
68
75
  "geojson2h3": "^1.2.0",
69
- "leva": "^0.9.35",
70
- "react": "~18.2.0",
71
- "react-dom": "~18.2.0",
72
- "three": "0.165.0",
73
- "@dxos/react-ui-theme": "0.8.4-main.b97322e",
74
- "@dxos/react-ui": "0.8.4-main.b97322e",
75
- "@dxos/storybook-utils": "0.8.4-main.b97322e"
76
+ "leva": "^0.10.1",
77
+ "react": "~19.2.3",
78
+ "react-dom": "~19.2.3",
79
+ "three": "^0.178.0",
80
+ "@dxos/react-ui": "0.8.4-main.bd9b33e6c8",
81
+ "@dxos/storybook-utils": "0.8.4-main.bd9b33e6c8",
82
+ "@dxos/ui-theme": "0.8.4-main.bd9b33e6c8"
76
83
  },
77
84
  "peerDependencies": {
78
- "react": "~18.2.0",
79
- "react-dom": "~18.2.0",
80
- "@dxos/react-ui": "0.8.4-main.b97322e",
81
- "@dxos/react-ui-theme": "0.8.4-main.b97322e"
85
+ "react": "~19.2.3",
86
+ "react-dom": "~19.2.3",
87
+ "@dxos/ui-theme": "0.8.4-main.bd9b33e6c8",
88
+ "@dxos/react-ui": "0.8.4-main.bd9b33e6c8"
82
89
  },
83
90
  "publishConfig": {
84
91
  "access": "public"
@@ -2,22 +2,22 @@
2
2
  // Copyright 2018 DXOS.org
3
3
  //
4
4
 
5
- import '@dxos-theme';
6
-
7
- import { type Meta } from '@storybook/react-vite';
5
+ import { type Meta, type StoryObj } from '@storybook/react-vite';
8
6
  import { type FeatureCollection, type Geometry, type Position } from 'geojson';
9
7
  import { Leva } from 'leva';
10
8
  import React, { useMemo, useRef, useState } from 'react';
11
9
  import { type Topology } from 'topojson-specification';
12
10
 
13
11
  import { useAsyncState } from '@dxos/react-ui';
14
- import { withTheme, withLayout } from '@dxos/storybook-utils';
12
+ import { withLayout, withTheme } from '@dxos/react-ui/testing';
15
13
 
16
- import { Globe, type GlobeCanvasProps, type GlobeController, type GlobeRootProps } from './Globe';
17
- import { useDrag, useGlobeZoomHandler, useSpinner, useTour, type Vector } from '../../hooks';
18
- import { closestPoint, type LatLng, type StyleSet } from '../../util';
14
+ import { type Vector, useDrag, useGlobeZoomHandler, useSpinner, useTour } from '../../hooks';
15
+ import { type LatLngLiteral } from '../../types';
16
+ import { type StyleSet, closestPoint } from '../../util';
19
17
  import { type ControlProps } from '../Toolbar';
20
18
 
19
+ import { Globe, type GlobeCanvasProps, type GlobeController, type GlobeRootProps } from './Globe';
20
+
21
21
  // TODO(burdon): Load from JSON at runtime?
22
22
  const useTopology = () => {
23
23
  return useAsyncState(async () => (await import('../../../data/countries-110m.ts')).default);
@@ -95,8 +95,11 @@ const createTrip = (
95
95
  routes: Record<string, string[]>,
96
96
  points: Position[] = [],
97
97
  ) => {
98
- let previousHub: LatLng;
99
- return Object.entries(routes).reduce<{ points: LatLng[]; lines: { source: LatLng; target: LatLng }[] }>(
98
+ let previousHub: LatLngLiteral;
99
+ return Object.entries(routes).reduce<{
100
+ points: LatLngLiteral[];
101
+ lines: { source: LatLngLiteral; target: LatLngLiteral }[];
102
+ }>(
100
103
  (features, [hub, regional]) => {
101
104
  const hubAirport = airports.features.find(({ properties }) => properties.iata === hub);
102
105
  if (hubAirport) {
@@ -125,7 +128,7 @@ const createTrip = (
125
128
  );
126
129
  };
127
130
 
128
- type StoryProps = Pick<GlobeRootProps, 'scale' | 'translation' | 'rotation'> &
131
+ type DefaultStoryProps = Pick<GlobeRootProps, 'zoom' | 'translation' | 'rotation'> &
129
132
  Pick<GlobeCanvasProps, 'projection' | 'styles'> & {
130
133
  drag?: boolean;
131
134
  spin?: boolean;
@@ -133,8 +136,8 @@ type StoryProps = Pick<GlobeRootProps, 'scale' | 'translation' | 'rotation'> &
133
136
  xAxis?: boolean;
134
137
  };
135
138
 
136
- const Story = ({
137
- scale: _scale = 1,
139
+ const DefaultStory = ({
140
+ zoom: zoomProp = 1,
138
141
  translation,
139
142
  rotation = [0, 0, 0],
140
143
  projection,
@@ -143,7 +146,7 @@ const Story = ({
143
146
  spin = false,
144
147
  tour = false,
145
148
  xAxis = false,
146
- }: StoryProps) => {
149
+ }: DefaultStoryProps) => {
147
150
  const controller = useRef<GlobeController>(null);
148
151
  const [dots] = useAsyncState(async () => {
149
152
  const points = (await import('../../../data/countries-dots-3.ts')).default;
@@ -154,6 +157,7 @@ const Story = ({
154
157
  });
155
158
  const [topology] = useTopology();
156
159
  const [airports] = useAsyncState(async () => (await import('../../../data/airports.ts')).default);
160
+
157
161
  const features = useMemo(() => {
158
162
  return airports ? createTrip(airports, routes, (dots?.objects.dots as any)?.geometries[0].coordinates) : undefined;
159
163
  }, [airports, routes, dots]);
@@ -188,24 +192,24 @@ const Story = ({
188
192
  break;
189
193
  }
190
194
  case 'zoom-in': {
191
- controller.current.setScale((scale) => scale * 1.1);
195
+ controller.current.setZoom((scale) => scale * 1.1);
192
196
  break;
193
197
  }
194
198
  case 'zoom-out': {
195
- controller.current.setScale((scale) => scale * 0.9);
199
+ controller.current.setZoom((scale) => scale * 0.9);
196
200
  break;
197
201
  }
198
202
  }
199
203
  };
200
204
 
201
205
  return (
202
- <Globe.Root classNames='absolute inset-0' scale={_scale} translation={translation} rotation={rotation}>
206
+ <Globe.Root zoom={zoomProp} translation={translation} rotation={rotation}>
203
207
  <Globe.Canvas
204
- ref={controller}
205
208
  topology={styles?.dots ? dots : topology}
206
209
  projection={projection}
207
210
  styles={styles}
208
211
  features={tour ? { points: features?.points ?? [] } : features}
212
+ ref={controller}
209
213
  />
210
214
  <Globe.Zoom onAction={handleAction} />
211
215
  <Globe.Action onAction={handleAction} />
@@ -219,11 +223,15 @@ const Story = ({
219
223
 
220
224
  const initialRotation: Vector = [0, -40, 0];
221
225
 
222
- const meta: Meta = {
226
+ const meta = {
223
227
  title: 'ui/react-ui-geo/Globe',
224
228
  component: Globe.Root,
225
- decorators: [withTheme, withLayout({ fullscreen: true, classNames: 'bg-[#000]' })],
226
- };
229
+ render: DefaultStory,
230
+ decorators: [withTheme(), withLayout({ layout: 'fullscreen' })],
231
+ parameters: {
232
+ layout: 'fullscreen',
233
+ },
234
+ } satisfies Meta;
227
235
 
228
236
  export default meta;
229
237
 
@@ -234,7 +242,7 @@ export const Earth1 = () => {
234
242
  useDrag(controller);
235
243
 
236
244
  return (
237
- <Globe.Root scale={1.2} rotation={[Math.random() * 360, 0, 0]}>
245
+ <Globe.Root zoom={1.2} rotation={[Math.random() * 360, 0, 0]}>
238
246
  <Globe.Canvas ref={setController} topology={topology} styles={defaultStyles} />
239
247
  <Globe.Zoom onAction={handleAction} />
240
248
  </Globe.Root>
@@ -249,7 +257,7 @@ export const Earth2 = () => {
249
257
 
250
258
  return (
251
259
  <div className='absolute bottom-0 left-0 right-0 '>
252
- <Globe.Root classNames='h-[400px]' scale={2.8} translation={{ x: 0, y: 400 }}>
260
+ <Globe.Root classNames='h-[400px]' zoom={2.8} translation={{ x: 0, y: 400 }}>
253
261
  <Globe.Canvas ref={setController} topology={topology} styles={defaultStyles} />
254
262
  <Globe.Zoom onAction={handleAction} />
255
263
  </Globe.Root>
@@ -283,33 +291,73 @@ export const Mercator = () => {
283
291
  useDrag(controller);
284
292
 
285
293
  return (
286
- <Globe.Root classNames='flex grow overflow-hidden' scale={0.7} rotation={initialRotation}>
294
+ <Globe.Root classNames='flex grow overflow-hidden' zoom={0.7} rotation={initialRotation}>
287
295
  <Globe.Canvas ref={setController} topology={topology} projection='mercator' styles={monochrome} />
288
296
  <Globe.Zoom onAction={handleAction} />
289
297
  </Globe.Root>
290
298
  );
291
299
  };
292
300
 
293
- export const Globe1 = () => {
294
- return <Story drag projection='mercator' scale={0.8} rotation={initialRotation} styles={defaultStyles} />;
301
+ type Story = StoryObj<typeof DefaultStory>;
302
+
303
+ export const Globe1: Story = {
304
+ args: {
305
+ drag: true,
306
+ projection: 'mercator',
307
+ zoom: 0.8,
308
+ rotation: initialRotation,
309
+ styles: defaultStyles,
310
+ },
295
311
  };
296
312
 
297
- export const Globe2 = () => {
298
- return <Story drag projection='transverse-mercator' scale={0.8} rotation={initialRotation} styles={defaultStyles} />;
313
+ export const Globe2: Story = {
314
+ args: {
315
+ drag: true,
316
+ projection: 'transverse-mercator',
317
+ zoom: 0.8,
318
+ rotation: initialRotation,
319
+ styles: defaultStyles,
320
+ },
299
321
  };
300
322
 
301
- export const Globe3 = () => {
302
- return <Story drag spin scale={1.5} rotation={initialRotation} styles={defaultStyles} />;
323
+ export const Globe3: Story = {
324
+ args: {
325
+ drag: true,
326
+ spin: true,
327
+ zoom: 1.5,
328
+ rotation: initialRotation,
329
+ styles: defaultStyles,
330
+ },
303
331
  };
304
332
 
305
- export const Globe4 = () => {
306
- return <Story drag tour scale={2} rotation={initialRotation} styles={defaultStyles} />;
333
+ export const Globe4: Story = {
334
+ args: {
335
+ drag: true,
336
+ tour: true,
337
+ zoom: 2,
338
+ rotation: initialRotation,
339
+ styles: defaultStyles,
340
+ },
307
341
  };
308
342
 
309
- export const Globe5 = () => {
310
- return <Story drag tour scale={0.9} rotation={initialRotation} styles={dotStyles} />;
343
+ export const Globe5: Story = {
344
+ args: {
345
+ drag: true,
346
+ tour: true,
347
+ zoom: 0.9,
348
+ rotation: initialRotation,
349
+ styles: dotStyles,
350
+ },
311
351
  };
312
352
 
313
- export const Globe6 = () => {
314
- return <Story drag xAxis tour scale={2} translation={{ x: 0, y: 600 }} rotation={[0, -20, 0]} styles={dotStyles} />;
353
+ export const Globe6: Story = {
354
+ args: {
355
+ drag: true,
356
+ xAxis: true,
357
+ tour: true,
358
+ zoom: 2,
359
+ translation: { x: 0, y: 600 },
360
+ rotation: [0, -20, 0],
361
+ styles: dotStyles,
362
+ },
315
363
  };
@@ -4,14 +4,14 @@
4
4
 
5
5
  import {
6
6
  type GeoProjection,
7
+ easeLinear,
8
+ easeSinOut,
7
9
  geoMercator,
8
10
  geoOrthographic,
9
11
  geoPath,
10
12
  geoTransverseMercator,
11
13
  interpolateNumber,
12
14
  transition,
13
- easeLinear,
14
- easeSinOut,
15
15
  } from 'd3';
16
16
  import { type ControlPosition } from 'leaflet';
17
17
  import React, {
@@ -26,15 +26,17 @@ import React, {
26
26
  import { useResizeDetector } from 'react-resize-detector';
27
27
  import { type Topology } from 'topojson-specification';
28
28
 
29
- import { type ThemedClassName, type ThemeMode, useDynamicRef, useThemeContext } from '@dxos/react-ui';
30
- import { mx } from '@dxos/react-ui-theme';
31
-
32
29
  import {
33
- GlobeContextProvider,
34
- type GlobeContextProviderProps,
35
- type GlobeContextType,
36
- useGlobeContext,
37
- } from '../../hooks';
30
+ type ThemeMode,
31
+ type ThemedClassName,
32
+ useComposedRefs,
33
+ useControlledState,
34
+ useDynamicRef,
35
+ useThemeContext,
36
+ } from '@dxos/react-ui';
37
+ import { composable, composableProps, mx } from '@dxos/ui-theme';
38
+
39
+ import { GlobeContext, type GlobeContextType, type Point, type Vector, useGlobeContext } from '../../hooks';
38
40
  import {
39
41
  type Features,
40
42
  type StyleSet,
@@ -44,7 +46,7 @@ import {
44
46
  renderLayers,
45
47
  timer,
46
48
  } from '../../util';
47
- import { ZoomControls, ActionControls, type ControlProps, controlPositions } from '../Toolbar';
49
+ import { ActionControls, type ControlProps, ZoomControls, controlPositions } from '../Toolbar';
48
50
 
49
51
  /**
50
52
  * https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute
@@ -103,7 +105,7 @@ const defaultStyles: Record<ThemeMode, StyleSet> = {
103
105
  export type GlobeController = {
104
106
  canvas: HTMLCanvasElement;
105
107
  projection: GeoProjection;
106
- } & Pick<GlobeContextType, 'scale' | 'translation' | 'rotation' | 'setScale' | 'setTranslation' | 'setRotation'>;
108
+ } & Pick<GlobeContextType, 'zoom' | 'translation' | 'rotation' | 'setZoom' | 'setTranslation' | 'setRotation'>;
107
109
 
108
110
  export type ProjectionType = 'orthographic' | 'mercator' | 'transverse-mercator';
109
111
 
@@ -126,18 +128,43 @@ const getProjection = (type: GlobeCanvasProps['projection'] = 'orthographic'): G
126
128
  // Root
127
129
  //
128
130
 
129
- type GlobeRootProps = PropsWithChildren<ThemedClassName<GlobeContextProviderProps>>;
130
-
131
- const GlobeRoot = ({ classNames, children, ...props }: GlobeRootProps) => {
132
- const { ref, width, height } = useResizeDetector<HTMLDivElement>();
133
- return (
134
- <div ref={ref} className={mx('relative flex grow overflow-hidden', classNames)}>
135
- <GlobeContextProvider size={{ width, height }} {...props}>
136
- {children}
137
- </GlobeContextProvider>
138
- </div>
139
- );
140
- };
131
+ type GlobeRootProps = Partial<Pick<GlobeContextType, 'center' | 'zoom' | 'translation' | 'rotation'>>;
132
+
133
+ const GlobeRoot = composable<HTMLDivElement, GlobeRootProps>(
134
+ (
135
+ { children, center: centerProp, zoom: zoomProp, translation: translationProp, rotation: rotationProp, ...props },
136
+ forwardedRef,
137
+ ) => {
138
+ const localRef = useRef<HTMLDivElement>(null);
139
+ const composedRef = useComposedRefs<HTMLDivElement>(localRef, forwardedRef);
140
+ const { width, height } = useResizeDetector<HTMLDivElement>({ targetRef: localRef });
141
+
142
+ const [center, setCenter] = useControlledState(centerProp);
143
+ const [zoom, setZoom] = useControlledState(zoomProp ?? 4);
144
+ const [translation, setTranslation] = useControlledState<Point>(translationProp);
145
+ const [rotation, setRotation] = useControlledState<Vector>(rotationProp);
146
+
147
+ return (
148
+ <GlobeContext.Provider
149
+ value={{
150
+ size: { width, height },
151
+ center,
152
+ zoom,
153
+ translation,
154
+ rotation,
155
+ setCenter,
156
+ setZoom,
157
+ setTranslation,
158
+ setRotation,
159
+ }}
160
+ >
161
+ <div {...composableProps(props, { classNames: 'relative dx-container' })} ref={composedRef}>
162
+ {children}
163
+ </div>
164
+ </GlobeContext.Provider>
165
+ );
166
+ },
167
+ );
141
168
 
142
169
  //
143
170
  // Canvas
@@ -154,17 +181,18 @@ type GlobeCanvasProps = {
154
181
  * Basic globe renderer.
155
182
  * https://github.com/topojson/world-atlas
156
183
  */
184
+ // TODO(burdon): Move controller to root.
157
185
  const GlobeCanvas = forwardRef<GlobeController, GlobeCanvasProps>(
158
- ({ projection: _projection, topology, features, styles: _styles }, forwardRef) => {
186
+ ({ projection: projectionProp, topology, features, styles: stylesProp }, forwardRef) => {
159
187
  const { themeMode } = useThemeContext();
160
- const styles = useMemo(() => _styles ?? defaultStyles[themeMode], [_styles, themeMode]);
188
+ const styles = useMemo(() => stylesProp ?? defaultStyles[themeMode], [stylesProp, themeMode]);
161
189
 
162
190
  // Canvas.
163
191
  const [canvas, setCanvas] = useState<HTMLCanvasElement>(null);
164
192
  const canvasRef = (canvas: HTMLCanvasElement) => setCanvas(canvas);
165
193
 
166
194
  // Projection.
167
- const projection = useMemo(() => getProjection(_projection), [_projection]);
195
+ const projection = useMemo(() => getProjection(projectionProp), [projectionProp]);
168
196
 
169
197
  // Layers.
170
198
  // TODO(burdon): Generate on the fly based on what is visible.
@@ -173,15 +201,14 @@ const GlobeCanvas = forwardRef<GlobeController, GlobeCanvasProps>(
173
201
  }, [topology, features, styles]);
174
202
 
175
203
  // State.
176
- const { size, center, scale, translation, rotation, setCenter, setScale, setTranslation, setRotation } =
204
+ const { size, center, zoom, translation, rotation, setCenter, setZoom, setTranslation, setRotation } =
177
205
  useGlobeContext();
178
-
179
- const scaleRef = useDynamicRef(scale);
206
+ const zoomRef = useDynamicRef(zoom);
180
207
 
181
208
  // Update rotation.
182
209
  useEffect(() => {
183
210
  if (center) {
184
- setScale(1);
211
+ setZoom(1);
185
212
  setRotation(positionToRotation(geoToPosition(center)));
186
213
  }
187
214
  }, [center]);
@@ -193,25 +220,25 @@ const GlobeCanvas = forwardRef<GlobeController, GlobeCanvasProps>(
193
220
  canvas,
194
221
  projection,
195
222
  center,
196
- get scale() {
197
- return scaleRef.current;
223
+ get zoom() {
224
+ return zoomRef.current;
198
225
  },
199
226
  translation,
200
227
  rotation,
201
228
  setCenter,
202
- setScale: (s) => {
203
- if (typeof s === 'function') {
204
- const is = interpolateNumber(scaleRef.current, s(scaleRef.current));
229
+ setZoom: (state) => {
230
+ if (typeof state === 'function') {
231
+ const is = interpolateNumber(zoomRef.current, state(zoomRef.current));
205
232
  // Stop easing if already zooming.
206
233
  transition()
207
234
  .ease(zooming.current ? easeLinear : easeSinOut)
208
235
  .duration(200)
209
- .tween('scale', () => (t) => setScale(is(t)))
236
+ .tween('scale', () => (t) => setZoom(is(t)))
210
237
  .on('end', () => {
211
238
  zooming.current = false;
212
239
  });
213
240
  } else {
214
- setScale(s);
241
+ setZoom(state);
215
242
  }
216
243
  },
217
244
  setTranslation,
@@ -232,14 +259,14 @@ const GlobeCanvas = forwardRef<GlobeController, GlobeCanvasProps>(
232
259
  timer(() => {
233
260
  // https://d3js.org/d3-geo/projection
234
261
  projection
235
- .scale((Math.min(size.width, size.height) / 2) * scale)
262
+ .scale((Math.min(size.width, size.height) / 2) * zoom)
236
263
  .translate([size.width / 2 + (translation?.x ?? 0), size.height / 2 + (translation?.y ?? 0)])
237
264
  .rotate(rotation ?? [0, 0, 0]);
238
265
 
239
- renderLayers(generator, layers, scale, styles);
266
+ renderLayers(generator, layers, zoom, styles);
240
267
  });
241
268
  }
242
- }, [generator, size, scale, translation, rotation, layers]);
269
+ }, [generator, size, zoom, translation, rotation, layers]);
243
270
 
244
271
  if (!size.width || !size.height) {
245
272
  return null;
@@ -249,22 +276,30 @@ const GlobeCanvas = forwardRef<GlobeController, GlobeCanvasProps>(
249
276
  },
250
277
  );
251
278
 
279
+ //
280
+ // Debug
281
+ //
282
+
252
283
  const GlobeDebug = ({ position = 'topleft' }: { position?: ControlPosition }) => {
253
- const { size, scale, translation, rotation } = useGlobeContext();
284
+ const { size, zoom, translation, rotation } = useGlobeContext();
254
285
  return (
255
286
  <div
256
287
  className={mx(
257
- 'z-10 absolute w-96 p-2 overflow-hidden border border-green-700 rounded',
288
+ 'z-10 absolute w-96 p-2 overflow-hidden border border-green-700 rounded-sm',
258
289
  controlPositions[position],
259
290
  )}
260
291
  >
261
292
  <pre className='font-mono text-xs text-green-700'>
262
- {JSON.stringify({ size, scale, translation, rotation }, null, 2)}
293
+ {JSON.stringify({ size, zoom, translation, rotation }, null, 2)}
263
294
  </pre>
264
295
  </div>
265
296
  );
266
297
  };
267
298
 
299
+ //
300
+ // Panel
301
+ //
302
+
268
303
  const GlobePanel = ({
269
304
  position,
270
305
  classNames,
@@ -273,25 +308,37 @@ const GlobePanel = ({
273
308
  return <div className={mx('z-10 absolute overflow-hidden', controlPositions[position], classNames)}>{children}</div>;
274
309
  };
275
310
 
311
+ //
312
+ // Controls
313
+ //
314
+
276
315
  const CustomControl = ({ position, children }: PropsWithChildren<{ position: ControlPosition }>) => {
277
316
  return <div className={mx('z-10 absolute overflow-hidden', controlPositions[position])}>{children}</div>;
278
317
  };
279
318
 
280
319
  type GlobeControlProps = { position?: ControlPosition } & Pick<ControlProps, 'onAction'>;
281
320
 
321
+ const GlobeZoom = ({ onAction, position = 'bottomleft', ...props }: GlobeControlProps) => (
322
+ <CustomControl position={position} {...props}>
323
+ <ZoomControls onAction={onAction} />
324
+ </CustomControl>
325
+ );
326
+
327
+ const GlobeAction = ({ onAction, position = 'bottomright', ...props }: GlobeControlProps) => (
328
+ <CustomControl position={position} {...props}>
329
+ <ActionControls onAction={onAction} />
330
+ </CustomControl>
331
+ );
332
+
333
+ //
334
+ // Globe
335
+ //
336
+
282
337
  export const Globe = {
283
338
  Root: GlobeRoot,
284
339
  Canvas: GlobeCanvas,
285
- Zoom: ({ onAction, position = 'bottomleft', ...props }: GlobeControlProps) => (
286
- <CustomControl position={position} {...props}>
287
- <ZoomControls onAction={onAction} />
288
- </CustomControl>
289
- ),
290
- Action: ({ onAction, position = 'bottomright', ...props }: GlobeControlProps) => (
291
- <CustomControl position={position} {...props}>
292
- <ActionControls onAction={onAction} />
293
- </CustomControl>
294
- ),
340
+ Zoom: GlobeZoom,
341
+ Action: GlobeAction,
295
342
  Debug: GlobeDebug,
296
343
  Panel: GlobePanel,
297
344
  };