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
|
import * as React from 'react';
import { Button, Component, Styles, Text, Types, View } from 'reactxp';
import { colors } from '../../config.json';
import { messages } from '../../shared/gettext';
import ImageView from './ImageView';
export enum HeaderBarStyle {
default = 'default',
defaultDark = 'defaultDark',
error = 'error',
success = 'success',
}
export interface IHeaderBarProps {
barStyle: HeaderBarStyle;
style?: Types.ViewStyleRuleSet;
}
const headerBarStyles = {
container: {
base: Styles.createViewStyle({
paddingTop: 12,
paddingBottom: 12,
paddingLeft: 12,
paddingRight: 12,
}),
darwin: Styles.createViewStyle({
paddingTop: 24,
}),
},
content: Styles.createViewStyle({
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'flex-end',
// the size of "brand" logo
minHeight: 51,
}),
barStyle: {
default: Styles.createViewStyle({
backgroundColor: colors.blue,
}),
defaultDark: Styles.createViewStyle({
backgroundColor: colors.darkBlue,
}),
error: Styles.createViewStyle({
backgroundColor: colors.red,
}),
success: Styles.createViewStyle({
backgroundColor: colors.green,
}),
},
};
export default class HeaderBar extends Component<IHeaderBarProps> {
public static defaultProps: IHeaderBarProps = {
barStyle: HeaderBarStyle.default,
};
public render() {
const style = [
headerBarStyles.container.base,
process.platform === 'darwin' ? headerBarStyles.container.darwin : undefined,
headerBarStyles.barStyle[this.props.barStyle],
this.props.style,
];
return (
<View style={style}>
<View style={headerBarStyles.content}>{this.props.children}</View>
</View>
);
}
}
const brandStyles = {
container: Styles.createViewStyle({
flex: 1,
flexDirection: 'row',
alignItems: 'center',
}),
icon: Styles.createViewStyle({
marginLeft: 6,
}),
title: Styles.createTextStyle({
fontFamily: 'DINPro',
fontSize: 24,
fontWeight: '900',
lineHeight: 30,
letterSpacing: -0.5,
color: colors.white80,
marginLeft: 9,
}),
};
export class Brand extends Component {
public render() {
return (
<View style={brandStyles.container}>
<ImageView width={44} height={44} source="logo-icon" style={brandStyles.icon} />
<Text style={brandStyles.title}>{messages.pgettext('generic', 'MULLVAD VPN')}</Text>
</View>
);
}
}
interface ISettingsButtonProps {
onPress?: () => void;
}
const settingsBarButtonStyle = Styles.createButtonStyle({
cursor: 'default',
padding: 0,
marginLeft: 8,
});
export class SettingsBarButton extends Component<ISettingsButtonProps> {
public render() {
return (
<Button style={settingsBarButtonStyle} onPress={this.props.onPress}>
<ImageView
height={24}
width={24}
source="icon-settings"
tintColor={'rgba(255, 255, 255, 0.8)'}
tintHoverColor={'rgba(255, 255, 255, 1.0)'}
/>
</Button>
);
}
}
|