-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppHeader.js
126 lines (118 loc) · 2.63 KB
/
AppHeader.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
import React from 'react';
import {
View,
StyleSheet,
Text,
Image,
TouchableOpacity,
SafeAreaView
} from 'react-native';
import Colors from "../constants/Colors";
import SettingsList from "react-native-settings-list";
export default class AppHeader extends React.Component {
constructor(props) {
super(props);
const { navigation, screenProps } = this.props;
this.state = {
siteInfo: null,
}
}
render() {
let loginBubbleStyle = styles.loginBubble;
let pullDownText;
if (this.props.screenProps.isConnected && this.props.screenProps.loggedIn) {
loginBubbleStyle = styles.loginBubbleLoggedIn;
pullDownText = <Text style={styles.smallText}>Pull Down to Sync Content</Text>;
}
let siteLogo = <Image
style={styles.siteIcon}
source={require('../assets/images/profileIcon.png')}
/>;
if (this.state.siteInfo && this.state.siteInfo.logo.length > 0) {
siteLogo = <Image
style={styles.siteIcon}
source={{uri: 'data:image/png;base64,' + this.state.logo}}
/>;
}
return <SafeAreaView>
<View style={styles.container}>
<View style={styles.siteIconView}>
{siteLogo}
<Text style={loginBubbleStyle}></Text>
</View>
<View style={styles.siteName}>
<Text>{this.props.url}</Text>
{pullDownText}
</View>
</View>
</SafeAreaView>;
}
}
const styles = StyleSheet.create({
container: {
backgroundColor: "#fff",
flex: 0,
justifyContent: 'center',
alignItems: 'center',
flexDirection: 'row',
height: 46,
marginTop: 0
},
siteIcon: {
height: 26,
width: 26
},
siteName: {
flex: 1,
justifyContent: 'flex-start',
marginLeft: 20
},
siteIconView: {
height: 26,
width: 26,
flex: 0,
justifyContent: 'flex-start',
marginLeft: 10
},
loginBubble: {
height: 10,
width: 10,
flex: 0,
position: 'absolute',
right: -3,
bottom: -3,
backgroundColor: '#e64949',
borderRadius: 100
},
loginBubbleLoggedIn: {
height: 10,
width: 10,
flex: 0,
position: 'absolute',
right: -3,
bottom: -3,
backgroundColor: '#87c415',
borderRadius: 100
},
smallText: {
fontSize: 12
},
loginButton: {
color: Colors.primary,
backgroundColor: 'transparent',
borderWidth: 2,
borderColor: Colors.primary,
borderRadius: 3,
paddingTop: 3,
paddingBottom: 3,
paddingLeft: 6,
paddingRight: 6,
textAlign: 'center',
marginRight: 10
},
loginButtonText: {
color: Colors.primary,
textTransform: 'uppercase',
textAlign: 'center'
}
});