-
-
Notifications
You must be signed in to change notification settings - Fork 940
Expand file tree
/
Copy pathGroupAndItem.tsx
More file actions
417 lines (373 loc) · 9.99 KB
/
GroupAndItem.tsx
File metadata and controls
417 lines (373 loc) · 9.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
import type { NativeStackScreenProps } from '@react-navigation/native-stack';
import { Icon } from '@rneui/base';
import React, { useState, useCallback, useEffect } from 'react';
import {
FlatList,
StyleSheet,
Text,
TouchableOpacity,
View,
} from 'react-native';
import AsyncStorage from '@react-native-async-storage/async-storage';
import type { BaseExampleProps } from '../examples/common/BaseExamplePropTypes';
import MapHeader from '../examples/common/MapHeader';
import Page, { type PageProps } from '../examples/common/Page';
import sheet from '../styles/sheet';
// ANIMATIONS
import * as Animations from '../examples/Animations';
// ANNOTATIONS
import * as Annotations from '../examples/Annotations';
// CAMERA
import * as Camera from '../examples/Camera';
// FILLRASTERLAYER
import * as FillRasterLayer from '../examples/FillRasterLayer';
// LINE LAYER
import * as LineLayer from '../examples/LineLayer';
// MAP
import * as Map from '../examples/Map';
// SYMBOLCIRCLELAYER
import * as SymbolCircleLayer from '../examples/SymbolCircleLayer';
// USERLOCATION
import * as UserLocation from '../examples/UserLocation';
// WEB
import * as Web from '../examples/Web';
// MISC
import BugReportExample from '../examples/BugReportExample';
import BugReportExampleTS from '../examples/BugReportExampleTS';
import CompilerTestExample from '../examples/CompilerTestExample';
// Cache Management
import * as CacheOffline from '../examples/CacheOffline';
// V10
import * as V10 from '../examples/V10';
/*
import CameraAnimation from '../examples/V10/CameraAnimation';
import GlobeProjection from '../examples/V10/GlobeProjection';
import MapHandlers from '../examples/V10/MapHandlers';
import Markers from '../examples/V10/Markers';
import QueryTerrainElevation from '../examples/V10/QueryTerrainElevation';
import TerrainSkyAtmosphere from '../examples/V10/TerrainSkyAtmosphere';
*/
// V11
import StyleImportConfig from '../examples/V11/StyleImportConfig';
import RasterParticle from '../examples/V11/RasterParticle';
const MostRecentExampleKey = '@recent_example';
//type with all uppercase letters from A-Z
type UpercaseLetter =
| 'A'
| 'B'
| 'C'
| 'D'
| 'E'
| 'F'
| 'G'
| 'H'
| 'I'
| 'J'
| 'K'
| 'L'
| 'M'
| 'N'
| 'O'
| 'P'
| 'Q'
| 'R'
| 'S'
| 'T'
| 'X'
| 'Y'
| 'Z';
const styles = StyleSheet.create({
exampleList: {
flex: 1,
},
exampleListItem: {
flexDirection: 'row',
justifyContent: 'space-between',
paddingHorizontal: 16,
paddingVertical: 16,
},
exampleListItemBorder: {
borderBottomColor: '#ccc',
borderBottomWidth: StyleSheet.hairlineWidth,
},
exampleListLabel: {
fontSize: 18,
},
});
type NavigationType = 'Group' | 'Item';
type ItemComponentProps = BaseExampleProps;
type ItemComponent = React.ComponentType<Partial<ItemComponentProps>>;
interface ExampleNode {
label: string;
navigationType: NavigationType;
path: string[];
updateIfNeeded(updated: () => void): void;
setParent(parent: string[]): void;
find(path: string[]): ExampleNode | undefined;
}
class MostRecentExampleItem implements ExampleNode {
label: string;
navigationType: NavigationType;
path: string[];
constructor() {
this.label = 'Most recent';
this.navigationType = 'Item';
this.path = [];
}
setParent(parent: string[]) {
this.path = [...parent, this.label];
}
find(path: string[]) {
if (path.length === 1 && path[0] === this.label) {
return this;
} else {
return undefined;
}
}
updateIfNeeded(updated: () => void): void {
(async () => {
const pathJSON = await AsyncStorage.getItem(MostRecentExampleKey);
if (pathJSON) {
const path = JSON.parse(pathJSON);
this.label = `Most recent: ${path.slice(-1)}`;
this.path = path;
updated();
}
})();
}
}
class ExampleItem implements ExampleNode {
label: string;
Component: ItemComponent;
navigationType: NavigationType;
path: string[];
constructor(label: string, Component: unknown) {
this.label = label;
this.Component = Component as ItemComponent;
this.navigationType = 'Item';
this.path = [label];
}
setParent(parent: string[]) {
this.path = [...parent, this.label];
}
find(path: string[]) {
if (path.length === 1 && path[0] === this.label) {
return this;
} else {
return undefined;
}
}
async getPath(): Promise<string[]> {
return this.path;
}
updateIfNeeded(_updated: () => void): void {}
}
type RootStackParamList = {
Group: { path: string[] };
Item: { path: string[] };
Earthquakes: { path: string[] };
};
type GroupProps = NativeStackScreenProps<RootStackParamList, 'Group'>;
export type ItemProps = NativeStackScreenProps<RootStackParamList, 'Item'>;
class ExampleGroup implements ExampleNode {
label: string;
navigationType: NavigationType;
path: string[];
items: ExampleNode[];
constructor(label: string, items: ExampleNode[]) {
this.label = label;
this.items = items;
this.navigationType = 'Group';
this.path = [label];
this.setParent([]);
}
setParent(parent: string[]) {
this.path = [...parent, this.label];
this.items.forEach((i) => i.setParent(this.path));
}
find(path: string[]): ExampleNode | undefined {
const [root, ...rest] = path;
if (root === this.label) {
if (rest.length > 0) {
return this.items.reduce<ExampleNode | undefined>(
(prev, act) => prev || act.find(rest),
undefined,
);
} else {
return this;
}
} else {
return undefined;
}
}
async getPath(): Promise<string[]> {
return this.path;
}
updateIfNeeded(_updated: () => void): void {}
}
const PageWrapper = (Component: ItemComponent) => (props: BaseExampleProps) => (
<Page
label={props.label}
onDismissExample={props.onDismissExample}
navigation={props.navigation}
>
<Component {...props} />
</Page>
);
function example(
Component: ItemComponent & {
metadata?: {
title?: string;
tags?: string[];
docs?: string;
page?: boolean;
};
},
title: string | undefined = undefined,
) {
return new ExampleItem(
Component?.metadata?.title ?? title ?? 'n/a',
Component?.metadata?.page ? Component : PageWrapper(Component),
);
}
function exampleGroup(
group: { [key: `${UpercaseLetter}${string}`]: ItemComponent } & {
metadata: { title: string };
},
) {
const { metadata, ...components } = group;
return new ExampleGroup(
metadata.title,
Object.entries(components).map(([key, value]) => {
return example(value, key);
}),
);
}
const BugReportPage =
(Klass: React.ComponentType<PageProps>) =>
({ ...props }: PageProps) => (
<Page {...props}>
<Klass {...props} />
</Page>
);
const Examples = new ExampleGroup('React Native Mapbox', [
new MostRecentExampleItem(),
new ExampleItem('Bug Report Template', BugReportPage(BugReportExample)),
new ExampleItem('Bug Report Template TS', BugReportPage(BugReportExampleTS)),
new ExampleItem('React Compiler Test', BugReportPage(CompilerTestExample)),
exampleGroup(V10),
new ExampleGroup('V11', [
example(StyleImportConfig),
example(RasterParticle),
]),
exampleGroup(Map),
exampleGroup(Camera),
exampleGroup(UserLocation),
exampleGroup(SymbolCircleLayer),
exampleGroup(FillRasterLayer),
exampleGroup(LineLayer),
exampleGroup(Annotations),
exampleGroup(Animations),
exampleGroup(Web),
exampleGroup(CacheOffline),
]);
function ExampleGroupComponent({
items,
navigation,
showBack,
title,
}: {
items: ExampleNode[];
navigation: GroupProps['navigation'];
showBack?: boolean;
title: string;
}) {
async function itemPress(item: ExampleNode) {
const { path } = item;
if (path.length > 0) {
navigation.push(item.navigationType, { path });
}
}
function renderItem({ item }: { item: ExampleNode }) {
return (
<View style={styles.exampleListItemBorder}>
<TouchableOpacity onPress={() => itemPress(item)}>
<View style={styles.exampleListItem}>
<Text style={styles.exampleListLabel}>{item.label}</Text>
<Icon name="keyboard-arrow-right" />
</View>
</TouchableOpacity>
</View>
);
}
const back = showBack
? {
onBack: () => {
navigation.goBack();
},
}
: {};
const [, updateState] = useState<object>();
const forceUpdate = useCallback(() => updateState({}), []);
useEffect(() => {
items.forEach((item) => {
item.updateIfNeeded(forceUpdate);
});
}, [items, forceUpdate]);
return (
<View style={sheet.matchParent}>
<MapHeader label={title} {...back} />
<View style={sheet.matchParent}>
<FlatList
testID="example-list"
style={styles.exampleList}
data={items}
keyExtractor={(item) => item.label}
renderItem={renderItem}
/>
</View>
</View>
);
}
export const Group = ({ route, navigation }: GroupProps) => {
const path = route?.params?.path || [Examples.label];
const item = Examples.find(path);
if (!(item instanceof ExampleGroup)) {
throw Error(`error:Expected group not node! path:${path} item:${item}`);
}
const { items } = item;
return (
<ExampleGroupComponent
items={items}
navigation={navigation}
showBack={path.length > 1}
title={item.label}
/>
);
};
export const Item = ({ route, navigation }: ItemProps) => {
const onDismissExample = useCallback(() => {
navigation.goBack();
}, [navigation]);
useEffect(() => {
AsyncStorage.setItem(
MostRecentExampleKey,
JSON.stringify(route.params.path),
);
}, [route.params.path]);
const { path } = route.params;
const item = Examples.find(path);
if (!(item instanceof ExampleItem)) {
throw Error(
`error:Expected item not group|undefined! path:${path} item:${item}`,
);
}
const { label, Component } = item;
return (
<Component
label={label}
onDismissExample={onDismissExample}
navigation={navigation}
/>
);
};