forked from xcarpentier/rn-tourguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
172 lines (163 loc) · 4.4 KB
/
App.tsx
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
import { Ionicons } from '@expo/vector-icons'
import * as React from 'react'
import {
Image,
Platform,
StyleSheet,
Text,
TouchableOpacity,
View,
} from 'react-native'
import {
TourGuideProvider,
TourGuideZone,
TourGuideZoneByPosition,
useTourGuideController,
} from './src'
const uri =
'https://pbs.twimg.com/profile_images/1223192265969016833/U8AX9Lfn_400x400.jpg'
// Add <TourGuideProvider/> at the root of you app!
function App() {
return (
<TourGuideProvider {...{ borderRadius: 16, androidStatusBarVisible: true }}>
<AppContent />
</TourGuideProvider>
)
}
const AppContent = () => {
const iconProps = { size: 40, color: '#888' }
// Use Hooks to control!
const { start, canStart, stop, eventEmitter } = useTourGuideController()
React.useEffect(() => {
// start at mount
if (canStart) {
start()
}
}, [canStart]) // wait until everything is registered
React.useEffect(() => {
eventEmitter.on('start', () => console.log('start'))
eventEmitter.on('stop', () => console.log('stop'))
eventEmitter.on('stepChange', () => console.log(`stepChange`))
return () => eventEmitter.off('*', null)
}, [])
return (
<View style={styles.container}>
{/* Use TourGuideZone only to wrap */}
<TourGuideZone
keepTooltipPosition
zone={2}
text={'A react-native-copilot remastered! 🎉'}
borderRadius={16}
>
<Text style={styles.title}>
{'Welcome to the demo of\n"rn-tourguide"'}
</Text>
</TourGuideZone>
<View style={styles.middleView}>
<TouchableOpacity style={styles.button} onPress={() => start()}>
<Text style={styles.buttonText}>START THE TUTORIAL!</Text>
</TouchableOpacity>
<TourGuideZone zone={3} shape={'rectangle_and_keep'}>
<TouchableOpacity style={styles.button} onPress={() => start(4)}>
<Text style={styles.buttonText}>Step 4</Text>
</TouchableOpacity>
</TourGuideZone>
<TouchableOpacity style={styles.button} onPress={() => start(2)}>
<Text style={styles.buttonText}>Step 2</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.button} onPress={stop}>
<Text style={styles.buttonText}>Stop</Text>
</TouchableOpacity>
<TourGuideZone
zone={7}
shape='circle'
text={'With animated SVG morphing with awesome flubber 🍮💯'}
>
<Image source={{ uri }} style={styles.profilePhoto} />
</TourGuideZone>
</View>
<View style={styles.row}>
<TourGuideZone zone={4} shape={'circle'} tooltipBottomOffset={200}>
<Ionicons name='ios-add-circle' {...iconProps} />
</TourGuideZone>
<Ionicons name='ios-chatbubbles' {...iconProps} />
<Ionicons name='ios-globe' {...iconProps} />
<TourGuideZone zone={5}>
<Ionicons name='ios-navigate' {...iconProps} />
</TourGuideZone>
<TourGuideZone zone={6} shape={'circle'}>
<Ionicons name='ios-rainy' {...iconProps} />
</TourGuideZone>
</View>
<View
style={[
StyleSheet.absoluteFillObject,
{
top: 250,
left: 50,
width: 64,
height: 64,
backgroundColor: 'red',
},
]}
/>
{Platform.OS !== 'web' ? (
<TourGuideZoneByPosition
zone={1}
shape={'circle'}
isTourGuide
top={250}
left={50}
width={64}
height={64}
/>
) : null}
</View>
)
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
paddingTop: 40,
},
title: {
fontSize: 24,
textAlign: 'center',
},
profilePhoto: {
width: 140,
height: 140,
borderRadius: 70,
marginVertical: 20,
},
middleView: {
flex: 1,
alignItems: 'center',
},
button: {
backgroundColor: '#2980b9',
paddingVertical: 10,
paddingHorizontal: 15,
margin: 2,
},
buttonText: {
color: 'white',
fontSize: 16,
},
row: {
width: '100%',
padding: 15,
flexDirection: 'row',
justifyContent: 'space-between',
},
activeSwitchContainer: {
flexDirection: 'row',
justifyContent: 'space-between',
marginBottom: 20,
alignItems: 'center',
paddingHorizontal: 40,
},
})
export default App