-
Notifications
You must be signed in to change notification settings - Fork 2
/
CheckScreen.js
129 lines (125 loc) · 3.07 KB
/
CheckScreen.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
import React from 'react';
import {
Image,
Platform,
Button,
ScrollView,
StyleSheet,
Text,
TouchableOpacity,
FlatList,
View, } from 'react-native';
import * as constants from '../constants/file.js';
const scenarios = constants.scenarios;
const cardsText = constants.cards;
const answers = constants.answers;//0 is fixit and 1 is big pic
const explanation = constants.explanation;
export default class CheckScreen extends React.Component {
missing:Array;
correct:Array;
corresEx: Array;
static navigationOptions = {
title: 'CheckForAnswers',
};
constructor(){
super();
this.missing = new Array();
this.correct = new Array();
}
render() {
const {navigation} = this.props;
const param = navigation.getParam('para', 'TEST');
const answer = navigation.getParam('correct', 'test');// pass in all correct answers
const scene = navigation.getParam('scene', -1);
const corresEx = navigation.getParam('corresEx', 'test');
var explains = explanation[scene].explain;//cards with explanation
for(var i = 0; i < answer.length; i++){
if(param.indexOf(answer[i]) != -1){
this.correct.push(corresEx[i]);
} else{
this.missing.push(corresEx[i]);
}
}
return (
<View style = {{flex:1}}>
<ScrollView contentContainerStyle = {styles.container}>
<View style = {styles.scene}>
<Text buttonStyle={styles.button}>{scenarios[JSON.stringify(scene)]}</Text>
</View>
<View style = {styles.cardscontainer}>
<Text>Missing</Text>
{
this.missing.map((item) =>
(
<View style = { styles.missingCards }>
<Text>{explains[item]}</Text>
</View>
))
}
<Text>Correct</Text>
{
this.correct.map((item) =>
(
<View style = { styles.correctCards }>
<Text>{explains[item]}</Text>
</View>
))
}
</View>
</ScrollView>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flexGrow: 1,
paddingTop: 30,
paddingVertical: 20,
backgroundColor: '#fff',
alignItems:'center',
height: 400,
},
scene:{
//flex: 1,
width:300,
height: 80,
top: 5,
borderColor: '#d6d7da',
borderWidth:2,
borderRadius: 8,
flexDirection:"row",
alignItems:'center',
backgroundColor:'rgba(0, 150, 200, 0.5)',
},
cardscontainer:{
top: 25,
alignItems:'center',
},
missingCards:{
flex: 1,
width:300,
height: 80,
top: 5,
borderColor: '#d6d7da',
borderWidth:2,
borderRadius: 8,
flexDirection:"row",
alignItems:'center',
backgroundColor:'rgba(128, 128, 128, 0.8)',
margin:10,
},
correctCards:{
flex: 1,
width:300,
height: 80,
top: 5,
borderColor: '#d6d7da',
borderWidth:2,
borderRadius: 8,
flexDirection:"row",
alignItems:'center',
backgroundColor:'rgba(0, 255, 5, 0.8)',
margin:10,
},
});