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
|
import React from 'react';
import { StyleSheet, View, Text, GestureResponderEvent, ActivityIndicator, Linking } from 'react-native';
import { FontAwesome } from '@expo/vector-icons';
import { getStatusBarHeight } from '../helper';
import { LatLng } from '../Api/interfaces';
type Props = {
goToMe: (e: GestureResponderEvent) => void;
refresh: (e: GestureResponderEvent) => void;
onOpenPortal: (guid: string, coords: LatLng) => void;
loading: Number;
selectedPortal: any;
}
export default (props: Props) => (
<View style={styles.overlay}>
<View style={styles.button}>
<FontAwesome.Button
name={'crosshairs'}
onPress={props.goToMe}
iconStyle={styles.icon}
color={"#000"}
size={24}
backgroundColor={"#e3e3e3"}
/>
</View>
<View style={styles.button}>
<FontAwesome.Button
name={'refresh'}
onPress={props.refresh}
iconStyle={styles.icon}
color={"#000"}
size={24}
backgroundColor={"#e3e3e3"}
/>
</View>
{props.selectedPortal ? (
<>
<View style={styles.button}>
<FontAwesome.Button
name={'info'}
onPress={() => {
props.onOpenPortal(props.selectedPortal.guid, props.selectedPortal.coords)
}}
iconStyle={styles.icon}
color={"#000"}
size={24}
backgroundColor={"#e3e3e3"}
/>
</View>
<View style={styles.button}>
<FontAwesome.Button
name={'location-arrow'}
onPress={() => Linking.openURL(`geo:${props.selectedPortal.coords.latitude},${props.selectedPortal.coords.longitude}`)}
iconStyle={styles.icon}
color={"#000"}
size={24}
backgroundColor={"#e3e3e3"}
/>
</View>
</>
) : null}
<View style={styles.button}>
<Text>{props.loading}</Text>
</View>
{props.loading > 0 ? (
<View style={styles.loader}>
<ActivityIndicator color={"#000"} />
</View>
) : null}
</View>
);
const styles = StyleSheet.create({
overlay: {
position: 'absolute',
top: 8 + getStatusBarHeight(true),
right: 8,
},
button: {
margin: 8,
},
icon: {
marginRight: 0,
},
loader: {
margin: 8,
paddingHorizontal: 8,
}
});
|