datastake-daf 0.6.273 → 0.6.274
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/components/index.js +40 -265
- package/dist/utils/index.js +2 -2
- package/package.json +1 -1
- package/src/@daf/core/components/Dashboard/Globe/Globe.stories.js +5 -30
- package/src/@daf/core/components/Dashboard/Globe/hook.js +7 -63
- package/src/@daf/core/components/Dashboard/Globe/index.jsx +6 -24
- package/src/@daf/core/components/Dashboard/Globe/style.js +23 -7
- package/src/@daf/utils/tooltip.js +2 -2
- package/src/index.js +0 -1
- package/src/@daf/core/components/Dashboard/Globe/README.md +0 -106
- package/src/@daf/core/components/Dashboard/Globe/SimpleGlobe.jsx +0 -259
- package/src/@daf/core/components/Dashboard/Globe/SimpleGlobe.stories.js +0 -202
- package/src/@daf/core/components/Dashboard/Globe/SimpleGlobeDebug.jsx +0 -85
- package/src/@daf/core/components/Dashboard/Globe/SimpleGlobeExample.jsx +0 -75
- package/src/@daf/core/components/Dashboard/Globe/SimpleGlobeTest.jsx +0 -48
- package/src/@daf/core/components/Dashboard/Globe/storyConfig.js +0 -243
- package/src/@daf/core/components/Dashboard/Globe/storyConfig1.js +0 -354
|
@@ -1,202 +0,0 @@
|
|
|
1
|
-
import SimpleGlobe from "./SimpleGlobe";
|
|
2
|
-
import SimpleGlobeDebug from "./SimpleGlobeDebug";
|
|
3
|
-
import ThemeLayout from "../../ThemeLayout";
|
|
4
|
-
import Widget from "../Widget";
|
|
5
|
-
|
|
6
|
-
// Sample project data
|
|
7
|
-
const SAMPLE_PROJECTS = [
|
|
8
|
-
{
|
|
9
|
-
_id: "sample-1",
|
|
10
|
-
name: "Dakar Solar Initiative",
|
|
11
|
-
country: "SN",
|
|
12
|
-
datastakeId: "PRJ-SAMPLE-001",
|
|
13
|
-
sectoralScope: "energy",
|
|
14
|
-
percentageCompletion: 75,
|
|
15
|
-
projectDescription: "Large-scale solar energy project in Dakar region",
|
|
16
|
-
latitude: 14.7167,
|
|
17
|
-
longitude: -17.4677,
|
|
18
|
-
author: { name: "Dakar Energy Co." }
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
_id: "sample-2",
|
|
22
|
-
name: "Saint-Louis Wind Farm",
|
|
23
|
-
country: "SN",
|
|
24
|
-
datastakeId: "PRJ-SAMPLE-002",
|
|
25
|
-
sectoralScope: "energy",
|
|
26
|
-
percentageCompletion: 45,
|
|
27
|
-
projectDescription: "Wind energy project in Saint-Louis region",
|
|
28
|
-
latitude: 16.0167,
|
|
29
|
-
longitude: -16.4833,
|
|
30
|
-
author: { name: "Wind Power Solutions" }
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
_id: "sample-3",
|
|
34
|
-
name: "Casamance Reforestation",
|
|
35
|
-
country: "SN",
|
|
36
|
-
datastakeId: "PRJ-SAMPLE-003",
|
|
37
|
-
sectoralScope: "agricultureForestryAndOtherLandUse",
|
|
38
|
-
percentageCompletion: 60,
|
|
39
|
-
projectDescription: "Forest restoration project in Casamance region",
|
|
40
|
-
latitude: 12.5833,
|
|
41
|
-
longitude: -16.2667,
|
|
42
|
-
author: { name: "Green Casamance" }
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
_id: "sample-4",
|
|
46
|
-
name: "Lagos Tech Hub",
|
|
47
|
-
country: "NG",
|
|
48
|
-
datastakeId: "PRJ-SAMPLE-004",
|
|
49
|
-
sectoralScope: "technology",
|
|
50
|
-
percentageCompletion: 30,
|
|
51
|
-
projectDescription: "Technology innovation center in Lagos",
|
|
52
|
-
latitude: 6.5244,
|
|
53
|
-
longitude: 3.3792,
|
|
54
|
-
author: { name: "Lagos Tech Foundation" }
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
_id: "sample-5",
|
|
58
|
-
name: "Cairo Water Management",
|
|
59
|
-
country: "EG",
|
|
60
|
-
datastakeId: "PRJ-SAMPLE-005",
|
|
61
|
-
sectoralScope: "water",
|
|
62
|
-
percentageCompletion: 85,
|
|
63
|
-
projectDescription: "Water conservation project in Cairo",
|
|
64
|
-
latitude: 30.0444,
|
|
65
|
-
longitude: 31.2357,
|
|
66
|
-
author: { name: "Cairo Water Authority" }
|
|
67
|
-
}
|
|
68
|
-
];
|
|
69
|
-
|
|
70
|
-
export default {
|
|
71
|
-
title: "Dashboard/Globe/SimpleGlobe",
|
|
72
|
-
component: SimpleGlobe,
|
|
73
|
-
tags: ["autodocs"],
|
|
74
|
-
args: {
|
|
75
|
-
projects: SAMPLE_PROJECTS,
|
|
76
|
-
showSider: false,
|
|
77
|
-
onProjectClick: (project) => console.log('Project clicked:', project)
|
|
78
|
-
},
|
|
79
|
-
decorators: [
|
|
80
|
-
(Story) => (
|
|
81
|
-
|
|
82
|
-
<ThemeLayout>
|
|
83
|
-
<Widget title="Simple Globe with Project Pins" className="no-px no-pb-body">
|
|
84
|
-
{/* <div style={{ width: '100%', height: '600px' }}> */}
|
|
85
|
-
<Story />
|
|
86
|
-
{/* </div> */}
|
|
87
|
-
</Widget>
|
|
88
|
-
</ThemeLayout>
|
|
89
|
-
|
|
90
|
-
),
|
|
91
|
-
],
|
|
92
|
-
};
|
|
93
|
-
|
|
94
|
-
export const Default = {
|
|
95
|
-
name: "Default Project Globe",
|
|
96
|
-
args: {
|
|
97
|
-
projects: SAMPLE_PROJECTS,
|
|
98
|
-
showSider: false
|
|
99
|
-
}
|
|
100
|
-
};
|
|
101
|
-
|
|
102
|
-
export const TestSimple = {
|
|
103
|
-
name: "Test Simple Data",
|
|
104
|
-
args: {
|
|
105
|
-
projects: [
|
|
106
|
-
{
|
|
107
|
-
name: "Test Project 1",
|
|
108
|
-
latitude: 14.7167,
|
|
109
|
-
longitude: -17.4677,
|
|
110
|
-
percentageCompletion: 75,
|
|
111
|
-
projectDescription: "Test project in Dakar"
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
name: "Test Project 2",
|
|
115
|
-
latitude: 16.0167,
|
|
116
|
-
longitude: -16.4833,
|
|
117
|
-
percentageCompletion: 45,
|
|
118
|
-
projectDescription: "Test project in Saint-Louis"
|
|
119
|
-
}
|
|
120
|
-
],
|
|
121
|
-
showSider: true
|
|
122
|
-
}
|
|
123
|
-
};
|
|
124
|
-
|
|
125
|
-
export const WithSidebar = {
|
|
126
|
-
name: "With Sidebar",
|
|
127
|
-
args: {
|
|
128
|
-
projects: SAMPLE_PROJECTS,
|
|
129
|
-
showSider: true
|
|
130
|
-
}
|
|
131
|
-
};
|
|
132
|
-
|
|
133
|
-
export const CustomMapConfig = {
|
|
134
|
-
name: "Custom Map Configuration",
|
|
135
|
-
args: {
|
|
136
|
-
projects: SAMPLE_PROJECTS,
|
|
137
|
-
showSider: true,
|
|
138
|
-
mapConfig: {
|
|
139
|
-
maxZoom: 6,
|
|
140
|
-
minZoom: 2
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
};
|
|
144
|
-
|
|
145
|
-
export const SingleProject = {
|
|
146
|
-
name: "Single Project",
|
|
147
|
-
args: {
|
|
148
|
-
projects: [SAMPLE_PROJECTS[0]],
|
|
149
|
-
showSider: true
|
|
150
|
-
}
|
|
151
|
-
};
|
|
152
|
-
|
|
153
|
-
export const EmptyState = {
|
|
154
|
-
name: "Empty State",
|
|
155
|
-
args: {
|
|
156
|
-
projects: [],
|
|
157
|
-
showSider: false
|
|
158
|
-
}
|
|
159
|
-
};
|
|
160
|
-
|
|
161
|
-
export const LocationMarkers = {
|
|
162
|
-
name: "Location Markers (Map Pin Style)",
|
|
163
|
-
args: {
|
|
164
|
-
projects: SAMPLE_PROJECTS,
|
|
165
|
-
showSider: true,
|
|
166
|
-
type: "location"
|
|
167
|
-
}
|
|
168
|
-
};
|
|
169
|
-
|
|
170
|
-
export const CustomColorMarkers = {
|
|
171
|
-
name: "Custom Color Markers",
|
|
172
|
-
args: {
|
|
173
|
-
projects: SAMPLE_PROJECTS,
|
|
174
|
-
showSider: true,
|
|
175
|
-
color: "#FF6B6B"
|
|
176
|
-
}
|
|
177
|
-
};
|
|
178
|
-
|
|
179
|
-
export const LocationCustomColor = {
|
|
180
|
-
name: "Location Markers with Custom Color",
|
|
181
|
-
args: {
|
|
182
|
-
projects: SAMPLE_PROJECTS,
|
|
183
|
-
showSider: true,
|
|
184
|
-
type: "location",
|
|
185
|
-
color: "#4ECDC4"
|
|
186
|
-
}
|
|
187
|
-
};
|
|
188
|
-
|
|
189
|
-
export const DebugVersion = {
|
|
190
|
-
name: "Debug Version (Direct Mapbox)",
|
|
191
|
-
render: () => (
|
|
192
|
-
<div style={{ margin: "3em" }}>
|
|
193
|
-
<ThemeLayout>
|
|
194
|
-
<Widget title="Debug Globe (Direct Mapbox)" className="no-px no-pb-body">
|
|
195
|
-
<div style={{ width: '100%', height: '600px' }}>
|
|
196
|
-
<SimpleGlobeDebug projects={SAMPLE_PROJECTS} />
|
|
197
|
-
</div>
|
|
198
|
-
</Widget>
|
|
199
|
-
</ThemeLayout>
|
|
200
|
-
</div>
|
|
201
|
-
)
|
|
202
|
-
};
|
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
import React, { useEffect, useRef } from 'react';
|
|
2
|
-
import mapboxgl from 'mapbox-gl';
|
|
3
|
-
import 'mapbox-gl/dist/mapbox-gl.css';
|
|
4
|
-
|
|
5
|
-
const SimpleGlobeDebug = ({ projects = [] }) => {
|
|
6
|
-
const mapContainer = useRef(null);
|
|
7
|
-
const map = useRef(null);
|
|
8
|
-
|
|
9
|
-
useEffect(() => {
|
|
10
|
-
if (map.current) return; // Initialize map only once
|
|
11
|
-
|
|
12
|
-
// Set Mapbox access token
|
|
13
|
-
mapboxgl.accessToken = 'pk.eyJ1IjoicmVkaXM5OTkiLCJhIjoiY2x4YWV5MzA5MmtuZzJpcXM5Y201Z2E2YiJ9.m5bwPg-Tj4Akesl1yQUa3w';
|
|
14
|
-
|
|
15
|
-
console.log('🗺️ [DEBUG] Creating map...');
|
|
16
|
-
|
|
17
|
-
// Create map
|
|
18
|
-
map.current = new mapboxgl.Map({
|
|
19
|
-
container: mapContainer.current,
|
|
20
|
-
style: 'mapbox://styles/mapbox/satellite-v9',
|
|
21
|
-
center: [0, 0],
|
|
22
|
-
zoom: 3,
|
|
23
|
-
projection: 'globe'
|
|
24
|
-
});
|
|
25
|
-
|
|
26
|
-
// Add markers when map loads
|
|
27
|
-
map.current.on('load', () => {
|
|
28
|
-
console.log('🗺️ [DEBUG] Map loaded, adding markers...');
|
|
29
|
-
|
|
30
|
-
projects.forEach((project, index) => {
|
|
31
|
-
console.log(`📍 [DEBUG] Adding marker ${index}:`, project);
|
|
32
|
-
|
|
33
|
-
// Create marker element
|
|
34
|
-
const el = document.createElement('div');
|
|
35
|
-
el.className = 'mapboxgl-marker';
|
|
36
|
-
el.style.width = '20px';
|
|
37
|
-
el.style.height = '20px';
|
|
38
|
-
el.style.backgroundColor = '#00809E';
|
|
39
|
-
el.style.borderRadius = '50%';
|
|
40
|
-
el.style.border = '2px solid white';
|
|
41
|
-
el.style.cursor = 'pointer';
|
|
42
|
-
el.style.boxShadow = '0px 3.45px 3.45px 0px #00000029';
|
|
43
|
-
el.style.display = 'flex';
|
|
44
|
-
el.style.alignItems = 'center';
|
|
45
|
-
el.style.justifyContent = 'center';
|
|
46
|
-
el.style.color = 'white';
|
|
47
|
-
el.style.fontWeight = 'bold';
|
|
48
|
-
el.innerHTML = `<span>${project.percentageCompletion || 0}</span>`;
|
|
49
|
-
|
|
50
|
-
// Create popup
|
|
51
|
-
const popup = new mapboxgl.Popup({ offset: 25 })
|
|
52
|
-
.setHTML(`
|
|
53
|
-
<div>
|
|
54
|
-
<h3>${project.name}</h3>
|
|
55
|
-
<p>${project.projectDescription || 'No description'}</p>
|
|
56
|
-
<p>Completion: ${project.percentageCompletion || 0}%</p>
|
|
57
|
-
</div>
|
|
58
|
-
`);
|
|
59
|
-
|
|
60
|
-
// Add marker to map
|
|
61
|
-
new mapboxgl.Marker(el)
|
|
62
|
-
.setLngLat([project.longitude, project.latitude])
|
|
63
|
-
.setPopup(popup)
|
|
64
|
-
.addTo(map.current);
|
|
65
|
-
|
|
66
|
-
console.log(`✅ [DEBUG] Marker ${index} added at:`, [project.longitude, project.latitude]);
|
|
67
|
-
});
|
|
68
|
-
});
|
|
69
|
-
|
|
70
|
-
return () => {
|
|
71
|
-
if (map.current) {
|
|
72
|
-
map.current.remove();
|
|
73
|
-
map.current = null;
|
|
74
|
-
}
|
|
75
|
-
};
|
|
76
|
-
}, []);
|
|
77
|
-
|
|
78
|
-
return (
|
|
79
|
-
<div style={{ width: '100%', height: '600px', border: '2px solid #ccc' }}>
|
|
80
|
-
<div ref={mapContainer} style={{ width: '100%', height: '100%' }} />
|
|
81
|
-
</div>
|
|
82
|
-
);
|
|
83
|
-
};
|
|
84
|
-
|
|
85
|
-
export default SimpleGlobeDebug;
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import SimpleGlobe from './SimpleGlobe';
|
|
3
|
-
|
|
4
|
-
// Your sample project data
|
|
5
|
-
const SAMPLE_PROJECTS = [
|
|
6
|
-
{
|
|
7
|
-
_id: "sample-1",
|
|
8
|
-
name: "Dakar Solar Initiative",
|
|
9
|
-
country: "SN",
|
|
10
|
-
datastakeId: "PRJ-SAMPLE-001",
|
|
11
|
-
sectoralScope: "energy",
|
|
12
|
-
percentageCompletion: 75,
|
|
13
|
-
projectDescription: "Large-scale solar energy project in Dakar region",
|
|
14
|
-
latitude: 14.7167,
|
|
15
|
-
longitude: -17.4677,
|
|
16
|
-
author: { name: "Dakar Energy Co." }
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
_id: "sample-2",
|
|
20
|
-
name: "Saint-Louis Wind Farm",
|
|
21
|
-
country: "SN",
|
|
22
|
-
datastakeId: "PRJ-SAMPLE-002",
|
|
23
|
-
sectoralScope: "energy",
|
|
24
|
-
percentageCompletion: 45,
|
|
25
|
-
projectDescription: "Wind energy project in Saint-Louis region",
|
|
26
|
-
latitude: 16.0167,
|
|
27
|
-
longitude: -16.4833,
|
|
28
|
-
author: { name: "Wind Power Solutions" }
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
_id: "sample-3",
|
|
32
|
-
name: "Casamance Reforestation",
|
|
33
|
-
country: "SN",
|
|
34
|
-
datastakeId: "PRJ-SAMPLE-003",
|
|
35
|
-
sectoralScope: "agricultureForestryAndOtherLandUse",
|
|
36
|
-
percentageCompletion: 60,
|
|
37
|
-
projectDescription: "Forest restoration project in Casamance region",
|
|
38
|
-
latitude: 12.5833,
|
|
39
|
-
longitude: -16.2667,
|
|
40
|
-
author: { name: "Green Casamance" }
|
|
41
|
-
}
|
|
42
|
-
];
|
|
43
|
-
|
|
44
|
-
/**
|
|
45
|
-
* SimpleGlobeExample - Example usage of the SimpleGlobe component
|
|
46
|
-
*
|
|
47
|
-
* This shows how easy it is to display your project data as pins on a 3D globe.
|
|
48
|
-
* Just pass your project array to the SimpleGlobe component!
|
|
49
|
-
*/
|
|
50
|
-
const SimpleGlobeExample = () => {
|
|
51
|
-
const handleProjectClick = (projectData) => {
|
|
52
|
-
console.log('Project clicked:', projectData);
|
|
53
|
-
// You can add your custom logic here, like:
|
|
54
|
-
// - Navigate to project details page
|
|
55
|
-
// - Show project information in a modal
|
|
56
|
-
// - Update application state
|
|
57
|
-
alert(`Clicked on: ${projectData.name}\nCompletion: ${projectData.percentageCompletion}%`);
|
|
58
|
-
};
|
|
59
|
-
|
|
60
|
-
return (
|
|
61
|
-
<div style={{ width: '100%', height: '600px' }}>
|
|
62
|
-
<SimpleGlobe
|
|
63
|
-
projects={SAMPLE_PROJECTS}
|
|
64
|
-
showSider={true}
|
|
65
|
-
onProjectClick={handleProjectClick}
|
|
66
|
-
mapConfig={{
|
|
67
|
-
maxZoom: 8,
|
|
68
|
-
minZoom: 2
|
|
69
|
-
}}
|
|
70
|
-
/>
|
|
71
|
-
</div>
|
|
72
|
-
);
|
|
73
|
-
};
|
|
74
|
-
|
|
75
|
-
export default SimpleGlobeExample;
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import SimpleGlobe from './SimpleGlobe';
|
|
3
|
-
|
|
4
|
-
// Test with a simple, known working dataset
|
|
5
|
-
const TEST_PROJECTS = [
|
|
6
|
-
{
|
|
7
|
-
_id: "test-1",
|
|
8
|
-
name: "Test Project 1",
|
|
9
|
-
latitude: 14.7167,
|
|
10
|
-
longitude: -17.4677,
|
|
11
|
-
percentageCompletion: 75,
|
|
12
|
-
projectDescription: "Test project in Dakar"
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
_id: "test-2",
|
|
16
|
-
name: "Test Project 2",
|
|
17
|
-
latitude: 16.0167,
|
|
18
|
-
longitude: -16.4833,
|
|
19
|
-
percentageCompletion: 45,
|
|
20
|
-
projectDescription: "Test project in Saint-Louis"
|
|
21
|
-
}
|
|
22
|
-
];
|
|
23
|
-
|
|
24
|
-
const SimpleGlobeTest = () => {
|
|
25
|
-
console.log('🧪 [SIMPLE GLOBE TEST] Test projects:', TEST_PROJECTS);
|
|
26
|
-
|
|
27
|
-
const handleProjectClick = (projectData) => {
|
|
28
|
-
console.log('🧪 [SIMPLE GLOBE TEST] Project clicked:', projectData);
|
|
29
|
-
alert(`Clicked: ${projectData.name} at ${projectData.gps?.latitude}, ${projectData.gps?.longitude}`);
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
return (
|
|
33
|
-
<div style={{ width: '100%', height: '600px', border: '2px solid #ccc' }}>
|
|
34
|
-
<h3>SimpleGlobe Test</h3>
|
|
35
|
-
<SimpleGlobe
|
|
36
|
-
projects={TEST_PROJECTS}
|
|
37
|
-
showSider={true}
|
|
38
|
-
onProjectClick={handleProjectClick}
|
|
39
|
-
mapConfig={{
|
|
40
|
-
maxZoom: 8,
|
|
41
|
-
minZoom: 2
|
|
42
|
-
}}
|
|
43
|
-
/>
|
|
44
|
-
</div>
|
|
45
|
-
);
|
|
46
|
-
};
|
|
47
|
-
|
|
48
|
-
export default SimpleGlobeTest;
|
|
@@ -1,243 +0,0 @@
|
|
|
1
|
-
import { storyConfig as EventConfig } from "./storyConfig1.js";
|
|
2
|
-
// Create default configs since the other files were deleted
|
|
3
|
-
const DefaultGlobeConfig = {
|
|
4
|
-
data: [
|
|
5
|
-
{
|
|
6
|
-
gps: { latitude: 40.7128, longitude: -74.0060 },
|
|
7
|
-
name: "New York City",
|
|
8
|
-
description: "Major metropolitan area in the United States",
|
|
9
|
-
total: 15,
|
|
10
|
-
sources: 3,
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
gps: { latitude: 51.5074, longitude: -0.1278 },
|
|
14
|
-
name: "London",
|
|
15
|
-
description: "Capital of the United Kingdom",
|
|
16
|
-
total: 12,
|
|
17
|
-
sources: 2,
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
gps: { latitude: 35.6762, longitude: 139.6503 },
|
|
21
|
-
name: "Tokyo",
|
|
22
|
-
description: "Capital of Japan",
|
|
23
|
-
total: 8,
|
|
24
|
-
sources: 1,
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
gps: { latitude: -33.8688, longitude: 151.2093 },
|
|
28
|
-
name: "Sydney",
|
|
29
|
-
description: "Major city in Australia",
|
|
30
|
-
total: 6,
|
|
31
|
-
sources: 2,
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
gps: { latitude: -22.9068, longitude: -43.1729 },
|
|
35
|
-
name: "Rio de Janeiro",
|
|
36
|
-
description: "Major city in Brazil",
|
|
37
|
-
total: 10,
|
|
38
|
-
sources: 1,
|
|
39
|
-
},
|
|
40
|
-
],
|
|
41
|
-
renderTooltip: (data) => [
|
|
42
|
-
{ label: "City", value: data.name || "-" },
|
|
43
|
-
{ label: "Total Events", value: data.total || 0 },
|
|
44
|
-
{ label: "Sources", value: data.sources || 0 },
|
|
45
|
-
{ label: "Description", value: data.description || "-" },
|
|
46
|
-
],
|
|
47
|
-
primaryLink: true,
|
|
48
|
-
showSider: false,
|
|
49
|
-
};
|
|
50
|
-
|
|
51
|
-
const TerritoryGlobeConfig = {
|
|
52
|
-
data: [
|
|
53
|
-
{
|
|
54
|
-
gps: { latitude: 39.9042, longitude: 116.4074 },
|
|
55
|
-
name: "Beijing Territory",
|
|
56
|
-
description: "Administrative region in China",
|
|
57
|
-
total: 25,
|
|
58
|
-
sources: 4,
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
gps: { latitude: 55.7558, longitude: 37.6176 },
|
|
62
|
-
name: "Moscow Region",
|
|
63
|
-
description: "Federal subject of Russia",
|
|
64
|
-
total: 18,
|
|
65
|
-
sources: 3,
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
gps: { latitude: -26.2041, longitude: 28.0473 },
|
|
69
|
-
name: "Gauteng Province",
|
|
70
|
-
description: "Province in South Africa",
|
|
71
|
-
total: 14,
|
|
72
|
-
sources: 2,
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
gps: { latitude: 19.4326, longitude: -99.1332 },
|
|
76
|
-
name: "Mexico City Territory",
|
|
77
|
-
description: "Federal district in Mexico",
|
|
78
|
-
total: 20,
|
|
79
|
-
sources: 3,
|
|
80
|
-
},
|
|
81
|
-
],
|
|
82
|
-
renderTooltip: (data) => [
|
|
83
|
-
{ label: "Territory", value: data.name || "-" },
|
|
84
|
-
{ label: "Total Events", value: data.total || 0 },
|
|
85
|
-
{ label: "Sources", value: data.sources || 0 },
|
|
86
|
-
{ label: "Description", value: data.description || "-" },
|
|
87
|
-
],
|
|
88
|
-
primaryLink: true,
|
|
89
|
-
showSider: false,
|
|
90
|
-
};
|
|
91
|
-
|
|
92
|
-
const StakeholderGlobeConfig = {
|
|
93
|
-
data: [
|
|
94
|
-
{
|
|
95
|
-
gps: { latitude: 48.8566, longitude: 2.3522 },
|
|
96
|
-
name: "Paris NGO",
|
|
97
|
-
description: "Environmental NGO in France",
|
|
98
|
-
total: 12,
|
|
99
|
-
sources: 2,
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
gps: { latitude: 37.7749, longitude: -122.4194 },
|
|
103
|
-
name: "San Francisco Tech",
|
|
104
|
-
description: "Technology company in California",
|
|
105
|
-
total: 8,
|
|
106
|
-
sources: 1,
|
|
107
|
-
},
|
|
108
|
-
{
|
|
109
|
-
gps: { latitude: 1.3521, longitude: 103.8198 },
|
|
110
|
-
name: "Singapore Corp",
|
|
111
|
-
description: "Multinational corporation",
|
|
112
|
-
total: 15,
|
|
113
|
-
sources: 3,
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
gps: { latitude: 52.5200, longitude: 13.4050 },
|
|
117
|
-
name: "Berlin Institute",
|
|
118
|
-
description: "Research institute in Germany",
|
|
119
|
-
total: 9,
|
|
120
|
-
sources: 2,
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
gps: { latitude: -34.6037, longitude: -58.3816 },
|
|
124
|
-
name: "Buenos Aires Union",
|
|
125
|
-
description: "Labor union in Argentina",
|
|
126
|
-
total: 11,
|
|
127
|
-
sources: 1,
|
|
128
|
-
},
|
|
129
|
-
],
|
|
130
|
-
renderTooltip: (data) => [
|
|
131
|
-
{ label: "Stakeholder", value: data.name || "-" },
|
|
132
|
-
{ label: "Total Events", value: data.total || 0 },
|
|
133
|
-
{ label: "Sources", value: data.sources || 0 },
|
|
134
|
-
{ label: "Description", value: data.description || "-" },
|
|
135
|
-
],
|
|
136
|
-
primaryLink: true,
|
|
137
|
-
showSider: false,
|
|
138
|
-
};
|
|
139
|
-
|
|
140
|
-
const ChainGlobeConfig = {
|
|
141
|
-
data: [
|
|
142
|
-
{
|
|
143
|
-
gps: { latitude: 23.1291, longitude: 113.2644 },
|
|
144
|
-
name: "Guangzhou Manufacturing",
|
|
145
|
-
description: "Electronics manufacturing hub in China",
|
|
146
|
-
total: 22,
|
|
147
|
-
sources: 4,
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
gps: { latitude: 12.9716, longitude: 77.5946 },
|
|
151
|
-
name: "Bangalore Tech Hub",
|
|
152
|
-
description: "Software development center in India",
|
|
153
|
-
total: 18,
|
|
154
|
-
sources: 3,
|
|
155
|
-
},
|
|
156
|
-
{
|
|
157
|
-
gps: { latitude: 41.8781, longitude: -87.6298 },
|
|
158
|
-
name: "Chicago Logistics",
|
|
159
|
-
description: "Transportation and logistics hub in USA",
|
|
160
|
-
total: 16,
|
|
161
|
-
sources: 2,
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
gps: { latitude: 25.2048, longitude: 55.2708 },
|
|
165
|
-
name: "Dubai Trade Center",
|
|
166
|
-
description: "International trade and commerce hub",
|
|
167
|
-
total: 14,
|
|
168
|
-
sources: 3,
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
gps: { latitude: -23.5505, longitude: -46.6333 },
|
|
172
|
-
name: "São Paulo Distribution",
|
|
173
|
-
description: "Distribution center in Brazil",
|
|
174
|
-
total: 12,
|
|
175
|
-
sources: 2,
|
|
176
|
-
},
|
|
177
|
-
],
|
|
178
|
-
renderTooltip: (data) => [
|
|
179
|
-
{ label: "Supply Chain Node", value: data.name || "-" },
|
|
180
|
-
{ label: "Total Events", value: data.total || 0 },
|
|
181
|
-
{ label: "Sources", value: data.sources || 0 },
|
|
182
|
-
{ label: "Description", value: data.description || "-" },
|
|
183
|
-
],
|
|
184
|
-
primaryLink: true,
|
|
185
|
-
showSider: false,
|
|
186
|
-
};
|
|
187
|
-
|
|
188
|
-
const ProjectGlobeConfig = {
|
|
189
|
-
data: [
|
|
190
|
-
{
|
|
191
|
-
gps: { latitude: 6.5244, longitude: 3.3792 },
|
|
192
|
-
name: "Lagos Solar Project",
|
|
193
|
-
description: "Renewable energy project in Nigeria",
|
|
194
|
-
total: 8,
|
|
195
|
-
sources: 2,
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
gps: { latitude: -1.2921, longitude: 36.8219 },
|
|
199
|
-
name: "Nairobi Water Initiative",
|
|
200
|
-
description: "Water management project in Kenya",
|
|
201
|
-
total: 12,
|
|
202
|
-
sources: 3,
|
|
203
|
-
},
|
|
204
|
-
{
|
|
205
|
-
gps: { latitude: 13.7563, longitude: 100.5018 },
|
|
206
|
-
name: "Bangkok Green City",
|
|
207
|
-
description: "Urban sustainability project in Thailand",
|
|
208
|
-
total: 15,
|
|
209
|
-
sources: 4,
|
|
210
|
-
},
|
|
211
|
-
{
|
|
212
|
-
gps: { latitude: -12.0464, longitude: -77.0428 },
|
|
213
|
-
name: "Lima Education Hub",
|
|
214
|
-
description: "Educational development project in Peru",
|
|
215
|
-
total: 10,
|
|
216
|
-
sources: 2,
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
gps: { latitude: 30.0444, longitude: 31.2357 },
|
|
220
|
-
name: "Cairo Infrastructure",
|
|
221
|
-
description: "Infrastructure development project in Egypt",
|
|
222
|
-
total: 14,
|
|
223
|
-
sources: 3,
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
gps: { latitude: 55.7558, longitude: 37.6176 },
|
|
227
|
-
name: "Moscow Innovation Center",
|
|
228
|
-
description: "Technology innovation project in Russia",
|
|
229
|
-
total: 9,
|
|
230
|
-
sources: 2,
|
|
231
|
-
},
|
|
232
|
-
],
|
|
233
|
-
renderTooltip: (data) => [
|
|
234
|
-
{ label: "Project Name", value: data.name || "-" },
|
|
235
|
-
{ label: "Total Events", value: data.total || 0 },
|
|
236
|
-
{ label: "Sources", value: data.sources || 0 },
|
|
237
|
-
{ label: "Description", value: data.description || "-" },
|
|
238
|
-
],
|
|
239
|
-
primaryLink: true,
|
|
240
|
-
showSider: false,
|
|
241
|
-
};
|
|
242
|
-
|
|
243
|
-
export { DefaultGlobeConfig, TerritoryGlobeConfig, StakeholderGlobeConfig, EventConfig, ChainGlobeConfig, ProjectGlobeConfig };
|