This repository was archived by the owner on May 26, 2020. It is now read-only.
forked from mohebifar/react-native-copilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
175 lines (165 loc) · 4.72 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
173
174
175
import * as React from 'react'
import { StyleSheet, Text, View, TouchableOpacity, Image } from 'react-native'
import { Ionicons } from '@expo/vector-icons'
import {
copilot,
TourGuideZone,
CopilotWrapper,
Step,
TourGuideZoneByPosition,
SVGMaskPathParam,
} from './src'
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,
},
})
interface Props {
copilotEvents: any
start(stepNumber?: number): void
stop(): void
}
function App({ copilotEvents, start, stop }: Props) {
const handleStepChange = (step: Step) =>
console.log(`Current step is: ${step.name}`)
React.useEffect(() => {
copilotEvents.on('stepChange', handleStepChange)
return () => {
copilotEvents.off('*')
}
}, [])
const iconProps = { size: 40, color: '#888' }
return (
<>
<View style={styles.container}>
<TourGuideZone
zone={1}
isTourGuide
text={'A react-native-copilot remastered! 🎉'}
>
<CopilotWrapper>
<Text style={styles.title}>
{'Welcome to the demo of\n"rn-tourguide"'}
</Text>
</CopilotWrapper>
</TourGuideZone>
<View style={styles.middleView}>
<TourGuideZone
zone={2}
isTourGuide
shape='circle'
text={'With animated SVG morphing with awesome flubber 🍮💯'}
>
<CopilotWrapper>
<Image
source={{
uri:
'https://pbs.twimg.com/profile_images/1223192265969016833/U8AX9Lfn_400x400.jpg',
}}
style={styles.profilePhoto}
/>
</CopilotWrapper>
</TourGuideZone>
<TouchableOpacity style={styles.button} onPress={() => start()}>
<Text style={styles.buttonText}>START THE TUTORIAL!</Text>
</TouchableOpacity>
<TourGuideZone zone={3} isTourGuide>
<CopilotWrapper>
<TouchableOpacity style={styles.button} onPress={() => start(4)}>
<Text style={styles.buttonText}>step 4</Text>
</TouchableOpacity>
</CopilotWrapper>
</TourGuideZone>
<TouchableOpacity style={styles.button} onPress={() => start(2)}>
<Text style={styles.buttonText}>step 2</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.button} onPress={() => start(7)}>
<Text style={styles.buttonText}>step 7</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.button} onPress={stop}>
<Text style={styles.buttonText}>stop</Text>
</TouchableOpacity>
</View>
<View style={styles.row}>
<TourGuideZone zone={4} isTourGuide shape={'circle'}>
<CopilotWrapper>
<Ionicons name='ios-contact' {...iconProps} />
</CopilotWrapper>
</TourGuideZone>
<Ionicons name='ios-chatbubbles' {...iconProps} />
<Ionicons name='ios-globe' {...iconProps} />
<TourGuideZone zone={5} isTourGuide>
<CopilotWrapper>
<Ionicons name='ios-navigate' {...iconProps} />
</CopilotWrapper>
</TourGuideZone>
<TourGuideZone zone={6} isTourGuide shape={'circle'}>
<CopilotWrapper>
<Ionicons name='ios-rainy' {...iconProps} />
</CopilotWrapper>
</TourGuideZone>
</View>
</View>
<TourGuideZoneByPosition
zone={7}
shape={'circle'}
isTourGuide
top={30}
left={35}
width={300}
height={300}
/>
</>
)
}
const svgMaskPath = ({ size, position, canvasSize }: SVGMaskPathParam) => {
return `M0,0H${canvasSize.x}V${canvasSize.y}H0V0ZM${position.x},${
position.y
}H${position.x + size.x}V${position.y + size.y}H${position.x}V${position.y}Z`
}
export default copilot({
animated: true,
svgMaskPath,
androidStatusBarVisible: false,
animationDuration: 777,
})(App)