-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathHome.js
267 lines (249 loc) · 6.8 KB
/
Home.js
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
import React, { useState } from 'react';
import { StyleSheet, View, Image, Button, StatusBar, Switch, Text, Linking } from 'react-native';
import NewFeature from 'react-native-new-feature';
import Icon from 'react-native-vector-icons/FontAwesome';
const COLOR_BLUE = 'rgb(21, 124, 247)'
const COLOR_LITE_BLUE = 'rgb(100, 201, 246)'
const COLOR_ORANGE = 'rgb(235, 119, 33)'
const COLOR_PURPLE = 'rgb(182, 53, 251)'
const TINT_COLORS = [COLOR_BLUE, COLOR_LITE_BLUE,COLOR_ORANGE,COLOR_PURPLE]
const COLOR_WHITE = 'white'
const COLOR_BLACK = 'black'
const IMAGE_SIZE = 45
const BACKGROUND_WHITE = 'white'
const BACKGROUND_DARK = 'rgb(20, 29, 38)'
let currentColorIndex = 0
const Home = (props) => {
const [isDark, setIsDark] = useState(false)
const [tintColor, setTintColor] = useState(COLOR_BLUE)
const [visible, setVisible] = useState(false)
const [animation, setAnimation] = useState('fade')
const [appearAnimation, setAppearAnimation] = useState('fade')
const [align, setAlign] = useState('left')
const background = isDark ? BACKGROUND_DARK : BACKGROUND_WHITE
const textColor = isDark ? COLOR_WHITE : COLOR_BLACK
const data = {
background,
title: {
text: 'What\'s New',
color: textColor,
size: 35,
weight: '600',
margin: {
top: 15,
},
padding: {
top: 10,
}
},
items: [
{
title: {
text: 'Easy setup',
color: textColor,
size: 18,
margin: {
top: 15,
},
padding: {
top: 10,
}
},
subtitle: {
text: 'The simple and typesafe WhatsNew struct enables you to structurize your awesome new app features',
color: textColor,
size: 15,
margin: {
top: 5,
},
padding: {
top: 5,
}
},
image: {
// component: <Icon name="rocket" size={30} color={tintColor} />,
component: <Image source={require('./assets/icons8-approval-100.png')} style={{ width: IMAGE_SIZE, height: IMAGE_SIZE, tintColor }}/>,
margin: {
right: 15,
},
padding: {
top: 5,
}
}
},
{
title: {
text: 'Themes',
color: textColor,
size: 18
},
subtitle: {
text: 'You can apply different themes to perfectly match with your existing app design',
color: textColor,
size: 15
},
image: {
component: <Image
source={require('./assets/icons8-picture-100.png')}
style={{ width: IMAGE_SIZE, height: IMAGE_SIZE, tintColor }}
/>,
}
},
{
title: {
text: 'Installation',
color: textColor,
size: 18
},
subtitle: {
text: 'You can install WhatsNewKit via CocoaPods and Carthage',
color: textColor,
size: 15
},
image: {
component: <Image source={require('./assets/icons8-puzzle-100.png')} style={{ width: IMAGE_SIZE, height: IMAGE_SIZE, tintColor }}/>,
}
},
{
title: {
text: 'Open Source',
color: textColor,
size: 18
},
subtitle: {
text: 'Contributions are very welcome 👨💻',
color: textColor,
size: 15,
},
image: {
component: <Image source={require('./assets/icons8-github-100.png')} style={{ width: IMAGE_SIZE, height: IMAGE_SIZE, tintColor }}/>,
}
}
],
detailButton: {
text: 'Read more',
color: tintColor,
size: 17,
weight: 'normal',
margin: {
top: 15,
},
padding: {
top: 10,
}
},
completionButton: {
text: 'Continue',
color: 'white',
background: tintColor,
size: 17,
weight: '600',
margin: {
top: 15,
},
}
}
const onDetailButtonPress = () => {
Linking.openURL('https://google.com')
}
const onCompletionButtonPress = () => {
setVisible(!visible)
}
const show = (anim) => {
setTintColor(TINT_COLORS[currentColorIndex])
setAnimation(anim)
setVisible(!visible)
currentColorIndex = currentColorIndex === TINT_COLORS.length - 1 ? 0 : currentColorIndex + 1
}
const appear = (anim) => {
setTintColor(TINT_COLORS[currentColorIndex])
setAppearAnimation(anim)
setVisible(!visible)
currentColorIndex = currentColorIndex === TINT_COLORS.length - 1 ? 0 : currentColorIndex + 1
}
const changeAlignment = (alignment) => {
setAlign(alignment)
setTintColor(TINT_COLORS[currentColorIndex])
setVisible(!visible)
currentColorIndex = currentColorIndex === TINT_COLORS.length - 1 ? 0 : currentColorIndex + 1
}
return (
<View style={[styles.container, { backgroundColor: isDark ? '#aaa' : '#ddd' }]}>
<StatusBar barStyle={isDark ? 'light-content' : 'dark-content'} backgroundColor={background} />
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
<Text style={{ fontSize: 20, marginRight: 10, color: textColor }}>Dark mode</Text>
<Switch
onValueChange={() => setIsDark(!isDark)}
value={isDark}
/>
</View>
<Button
title={'Fade'}
onPress={() => show('fade')}
/>
<Button
title={'Slide up'}
onPress={() => show('slide-up')}
/>
<Button
title={'Slide down'}
onPress={() => show('slide-down')}
/>
<Button
title={'Slide right'}
onPress={() => show('slide-right')}
/>
<Button
title={'Slide left'}
onPress={() => show('slide-left')}
/>
<Button
title={'Appear Fade'}
onPress={() => appear('fade')}
/>
<Button
title={'Appear Slide'}
onPress={() => appear('slide')}
/>
<Button
title={'Align center'}
onPress={() => changeAlignment('center')}
/>
<NewFeature
visible={visible}
appearAnimation={appearAnimation}
contentAlignment={align}
animation={animation}
background={data.background}
title={data.title}
items={data.items}
detailButton={{
...data.detailButton,
handler: onDetailButtonPress
}}
completionButton={{
...data.completionButton,
handler: onCompletionButtonPress
}}
/>
</View>
)
}
export default Home
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
});