-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHistory.js
150 lines (136 loc) · 3.47 KB
/
History.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
import React, { Component } from 'react';
import {
Text,
StyleSheet,
View,
Pressable,
ScrollView,
Animated,
} from 'react-native';
class History extends Component {
render() {
const {
history,
deleteHistory,
closeHistory,
slideIn,
} = this.props;
return(
<View style={styles.historyComponent}>
<Animated.View style ={{...styles.historyContainer, bottom: slideIn.interpolate({
inputRange: [0, 1],
outputRange: ['100%', '0%'],
})}}>
<View style={styles.historyHeader}>
<View style={styles.headingTextContainer}>
<Text style={styles.historyText}>History</Text>
</View>
<Pressable
style={styles.clearHistoryButton}
onPress={deleteHistory}
android_ripple={{color: 'white', borderless: true}}
>
<Text style={styles.clearText}>Clear</Text>
</Pressable>
<View>
</View>
</View>
<View style={styles.historyContent}>
<ScrollView style={{flex: 1}}>
{history.map(item => {
return (
<View style={styles.historyItem}>
<Text style={styles.historyExpression}>{item.expression}</Text>
<Text style={styles.historyResult}>{item.result}</Text>
</View>
);
})}
</ScrollView>
</View>
<Pressable style={styles.historyCloseBtn}
onPress={closeHistory}
android_ripple={{color: 'white', borderless: false}}
>
<Text style={styles.closeText}> Close</Text>
</Pressable>
</Animated.View>
<View style={styles.disabledArea}></View>
</View>
)
}
}
const styles = StyleSheet.create({
historyComponent: {
flex: 1,
},
historyContainer: {
flex: 9,
backgroundColor: 'darkred',
borderBottomLeftRadius: 20,
borderBottomRightRadius: 20,
},
disabledArea: {
flex: 1,
},
historyHeader: {
flex: 1,
borderBottomWidth: 1,
borderBottomColor: 'white',
flexDirection: 'row',
},
historyContent: {
flex: 8,
// borderWidth: 1,
// borderColor: 'white',
},
historyCloseBtn: {
flex: 1,
// borderWidth: 1,
// borderColor: 'white',
},
closeText: {
fontSize: 30,
color: 'white',
textAlign: 'center',
textAlignVertical: 'center',
height: '100%',
borderTopColor: 'white',
borderTopWidth: 1,
},
headingTextContainer: {
flex: 7,
justifyContent: 'center'
},
historyText: {
color: 'white',
// border: '1px solid white',
fontSize: 30,
paddingLeft: 10,
},
clearHistoryButton: {
flex: 3,
// border: '1px solid yellow',
borderLeft: '1px solid white',
justifyContent: 'center',
textAlign: 'Center',
},
clearText: {
textAlign: 'center',
fontSize: 24,
color: 'white',
},
historyItem: {
// border: '1px solid white',
marginBottom: 35,
paddingLeft: 10,
},
historyExpression: {
color: 'white',
fontSize: 24
},
historyResult: {
color: 'white',
fontSize: 18,
}
});
export default History;