-
Notifications
You must be signed in to change notification settings - Fork 2
/
App.js
273 lines (254 loc) · 6.45 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
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
268
269
270
271
272
273
/**
* Copyright (c) 2017-present, Viro, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
import React, { Component } from 'react';
import {
Image,
Text,
View,
StyleSheet,
FlatList,
TouchableOpacity,
} from 'react-native';
import {
ViroARSceneNavigator
} from 'react-viro';
/*
TODO: Insert your API key below
*/
var sharedProps = {
apiKey:"API_KEY_HERE",
}
// Sets the default scene you want for AR and VR
var InitialARScene = require('./js/HelloWorldSceneAR');
var UNSET = "UNSET";
var AR_NAVIGATOR_TYPE = "AR";
var defaultNavigatorType = UNSET;
const ModelItems = [
{
"id" : 1,
"name": "Modern Lamp",
"description":"Beautiful lamp to decorate your home.",
"price":20,
"selected": false,
"icon_img": require("./js/res/lamp/lamp.png"),
"obj": require("./js/res/lamp/object_lamp.vrx"),
"materials": null,
"animation":{name:"02", delay:0, loop:true, run:true},
"scale": [.2, .2, .2],
"position" : [0, 0, 0],
"type" : "VRX",
"physics": undefined,
"ref_pointer": undefined,
"resources": [
require('./js/res/lamp/object_lamp_diffuse.png'),
require('./js/res/lamp/object_lamp_normal.png'),
require('./js/res/lamp/object_lamp_specular.png'),
],
},
{
"id" : 2,
"name": "Blue Lamp",
"description":"Beautiful lamp to decorate your home.",
"price":21,
"selected": false,
"icon_img": require("./js/res/lamp/lamp.png"),
"obj": require("./js/res/lamp/object_lamp.vrx"),
"materials": null,
"animation":{name:"02", delay:0, loop:true, run:true},
"scale": [.2, .2, .2],
"position" : [0, 0, 0],
"type" : "VRX",
"physics": undefined,
"ref_pointer": undefined,
"resources": [
require('./js/res/lamp/object_lamp_diffuse.png'),
require('./js/res/lamp/object_lamp_normal.png'),
require('./js/res/lamp/object_lamp_specular.png'),
],
},
{
"id" : 3,
"name": "Modern Lamp",
"description":"Beautiful lamp to decorate your home.",
"price":22,
"icon_img": require("./js/res/lamp/lamp.png"),
"obj": require("./js/res/lamp/object_lamp.vrx"),
"scale": [.2, .2, .2],
"position" : [0, 0, 0],
"type" : "VRX",
"resources": [
require('./js/res/lamp/object_lamp_diffuse.png'),
require('./js/res/lamp/object_lamp_normal.png'),
require('./js/res/lamp/object_lamp_specular.png'),
],
},
]
export default class ViroSample extends Component {
constructor() {
super();
this.state = {
navigatorType : defaultNavigatorType,
sharedProps : sharedProps,
product: null
}
}
render() {
if (this.state.navigatorType == UNSET) {
return this._getEcommerce();
} else if (this.state.navigatorType == AR_NAVIGATOR_TYPE) {
return this._getARNavigator();
}
}
_getEcommerce() {
return (
<View style={localStyles.outer} >
<View style={localStyles.inner} >
<Text style={localStyles.titleText}>
Ecommerce AR
</Text>
<FlatList
keyExtractor={ (item, index) => item.id.toString()}
showsVerticalScrollIndicator={false}
extraData={ModelItems}
data={ModelItems}
renderItem={({item}) => this.renderCard(item)} />
</View>
</View>
);
}
renderCard = (item) => {
return (
<View key={item.id} style={localStyles.card}>
<View style={{flex:1}}>
<Image style={localStyles.image} source={item.icon_img}/>
</View>
<View style={{flex:1}}>
<View style={localStyles.viewText}>
<Text style={localStyles.name}>{item.name}</Text>
<Text style={localStyles.price}>${item.price}</Text>
<View style={localStyles.description}>
<Text style={localStyles.p}>{item.description}</Text>
</View>
</View>
<TouchableOpacity
onPress={() => this.setState({ product : item, navigatorType : AR_NAVIGATOR_TYPE})}
style={localStyles.button}>
<Text style={localStyles.txtBtn}>SHOW</Text>
</TouchableOpacity>
</View>
</View>
)
}
close = () => {
this.setState({ navigatorType : UNSET })
}
// Returns the ViroARSceneNavigator which will start the AR experience
_getARNavigator() {
return (
<ViroARSceneNavigator
close={this.state.navigatorType}
{...this.state.sharedProps}
viroAppProps={ { product : this.state.product , close : () => this.close()}}
initialScene={{ scene: InitialARScene }} />
);
}
// This function returns an anonymous/lambda function to be used
// by the experience selector buttons
_getExperienceButtonOnPress(navigatorType) {
return () => {
this.setState({
navigatorType : navigatorType
})
}
}
// This function "exits" Viro by setting the navigatorType to UNSET.
_exitViro() {
this.setState({
navigatorType : UNSET
})
}
}
var localStyles = StyleSheet.create({
viroContainer :{
flex : 1,
},
card: {
flexDirection:'row',
alignItems:'center',
justifyContent:'center',
backgroundColor:'white',
padding:10,
borderRadius:10,
margin:10,
width:300,
shadowOpacity: 0.29,
shadowRadius: 4.65,
elevation: 3,
},
viewText: {
flex:1,
marginTop:15,
paddingHorizontal:10,
},
image: {
width:70,
height:100,
resizeMode: 'stretch'
},
name: {
fontSize:20,
fontWeight:'bold',
color:'black'
},
price:{
fontSize:18,
fontWeight:'bold',
color: "#728783"
},
p:{
fontSize:14,
color:'black',
flexWrap: 'wrap'
},
description: {
flexDirection:'row',
padding:2,
marginVertical:10
},
button: {
marginBottom:10,
alignItems:'center',
borderRadius:10,
justifyContent:'center',
padding:10,
backgroundColor:'black'
},
txtBtn:{
color: 'white',
},
outer : {
flex : 1,
flexDirection: 'row',
alignItems:'center',
},
inner: {
flex : 1,
flexDirection: 'column',
alignItems:'center',
},
titleText: {
color:'black',
fontWeight:'bold',
paddingTop: 30,
paddingBottom: 20,
textAlign:'center',
fontSize : 25
},
});
module.exports = ViroSample