This repository has been archived by the owner on Mar 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathApp.js
213 lines (196 loc) · 5.22 KB
/
App.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
import React from 'react'
import {
ActivityIndicator,
Dimensions,
Image,
Linking,
StatusBar,
StyleSheet,
Text,
View,
} from 'react-native'
import { Constants, Font, ScreenOrientation } from 'expo'
import { Ionicons } from '@expo/vector-icons'
import { Button } from 'react-native-elements'
import { cartImage } from './assets/images'
import { convertDictionaryToQueryString } from './urlUtils'
const { height: screenHeight, width: screenWidth } = Dimensions.get('window')
export default class App extends React.Component {
constructor(props) {
super(props)
this.state = {
error: null,
fontLoaded: false,
}
this.onPressCheckout = this.onPressCheckout.bind(this)
}
async componentDidMount() {
ScreenOrientation.allow(ScreenOrientation.Orientation.PORTRAIT_UP)
fetch(
'http://api.vtex.com/instore/functions/vtex.instore-functions-example-cart-v0/run',
{
headers: {
'Content-Type': 'application/json',
},
}
)
.then(result => result.json())
.then(({ order }) => {
this.setState({
order,
})
})
.catch(e =>
this.setState({
error: `Error on getting new orderForm: ${e.message || e.toString()}`,
})
)
await Font.loadAsync({
'Fabriga-Bold': require('./assets/fonts/Fabriga-Bold.otf'),
'Fabriga-BoldItalic': require('./assets/fonts/Fabriga-BoldItalic.otf'),
'AvenirNextCondensed-Bold': require('./assets/fonts/AvenirNextCondensed-Bold.ttf'),
})
this.setState({ fontLoaded: true })
}
getInstoreUrl(order) {
const params = {
orderFormId: order.orderFormId,
forceIdentification: true,
next: 'payment',
}
return `instore://cart-change/?${convertDictionaryToQueryString(params)}`
}
onPressCheckout() {
const order = this.state.order
console.log(`Checkout do pedido ${order.orderFormId}`)
const url = this.getInstoreUrl(order)
Linking.openURL(url)
.then(data => {
console.log(`APPLINKING opened url: ${url}, data: ${data}`)
})
.catch(e => {
console.warn('APPLINKING error on opening url: ', url, e)
})
}
render() {
const order = this.state.order
console.log('render App', order && order.orderFormId)
return (
<View style={styles.container}>
<View style={styles.headerContainer}>
<StatusBar backgroundColor="#141f32" barStyle="light-content" />
<View style={styles.header}>
<View style={styles.headerSearch}>
<Ionicons name="ios-search" size={24} color="white" />
</View>
{this.state.fontLoaded ? (
<Text style={styles.headerText}>IMPÉRIO DA CEREJA</Text>
) : null}
<View style={styles.headerCart}>
<Ionicons name="md-cart" size={24} color="white" />
</View>
</View>
</View>
{this.state.fontLoaded ? (
<View style={styles.bodyContainer}>
<Image style={styles.itemImage} source={cartImage} />
<Text style={styles.itemLabel}>
Cerveja Colorado Rosália Cereja, 600ml
</Text>
<Text style={styles.itemPrice}>R$ 29,90</Text>
</View>
) : (
<View style={styles.bodyContainer}>
<ActivityIndicator size="small" color="#e3145e" />
</View>
)}
{this.state.fontLoaded ? (
<Button
onPress={this.onPressCheckout}
buttonStyle={styles.buttonContainer}
textStyle={styles.buttonText}
title="COMPRAR"
accessibilityLabel="COMPRAR"
/>
) : (
<View style={styles.buttonContainer} />
)}
</View>
)
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#f6f6f6',
alignItems: 'center',
},
headerContainer: {
flexDirection: 'row',
},
headerText: {
fontFamily: 'AvenirNextCondensed-Bold',
fontSize: 21,
color: 'white',
},
header: {
flex: 1,
flexDirection: 'row',
position: 'relative',
height: 66 + Constants.statusBarHeight,
paddingTop: Constants.statusBarHeight,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: '#141f32',
},
headerSearch: {
position: 'absolute',
flex: 1,
left: 14,
top: Constants.statusBarHeight + 19,
height: 24,
},
headerCart: {
position: 'absolute',
flex: 1,
right: 14,
top: Constants.statusBarHeight + 19,
height: 24,
},
buttonContainer: {
width: screenWidth - 28,
backgroundColor: '#e3145e',
height: 54,
marginBottom: 14,
borderBottomWidth: 4,
borderColor: '#830a36',
},
buttonText: {
color: 'white',
fontFamily: 'Fabriga-Bold',
},
bodyContainer: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
itemLabel: {
fontFamily: 'Fabriga-Bold',
fontSize: 26,
textAlign: 'center',
color: '#141f32',
marginBottom: 20,
},
itemPrice: {
fontFamily: 'Fabriga-BoldItalic',
fontSize: 26,
textAlign: 'center',
color: '#e3145e',
},
itemImage: {
width: 220,
height: 220,
backgroundColor: '#FFF',
marginBottom: 20,
},
})