summaryrefslogtreecommitdiffhomepage
path: root/app/components/HeaderBar.js
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2018-07-18 15:07:37 +0200
committerAndrej Mihajlov <and@mullvad.net>2018-08-15 17:39:38 +0200
commit71592249b2dd669b6f24f37bfb7b0f4e43b74998 (patch)
treea6097dc7e5d94d06e99c65fdfe160e824395f50c /app/components/HeaderBar.js
parente84e87f4ce5a8c242f756566cdc6fb59a45f7bea (diff)
downloadmullvadvpn-71592249b2dd669b6f24f37bfb7b0f4e43b74998.tar.xz
mullvadvpn-71592249b2dd669b6f24f37bfb7b0f4e43b74998.zip
Add workspaces
Diffstat (limited to 'app/components/HeaderBar.js')
-rw-r--r--app/components/HeaderBar.js149
1 files changed, 0 insertions, 149 deletions
diff --git a/app/components/HeaderBar.js b/app/components/HeaderBar.js
deleted file mode 100644
index 8a82ba7843..0000000000
--- a/app/components/HeaderBar.js
+++ /dev/null
@@ -1,149 +0,0 @@
-// @flow
-
-import React from 'react';
-import { Component, Text, Button, View, Styles } from 'reactxp';
-import Img from './Img';
-import { colors } from '../config';
-
-export type HeaderBarStyle = 'default' | 'defaultDark' | 'error' | 'success';
-type HeaderBarProps = {
- barStyle: HeaderBarStyle,
-};
-
-const headerBarStyles = {
- container: {
- base: Styles.createViewStyle({
- paddingTop: 12,
- paddingBottom: 12,
- paddingLeft: 12,
- paddingRight: 12,
- }),
- platformOverride: {
- darwin: Styles.createViewStyle({
- paddingTop: 24,
- }),
- linux: Styles.createViewStyle({
- WebkitAppRegion: 'drag',
- }),
- },
- },
- 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<HeaderBarProps> {
- static defaultProps: HeaderBarProps = {
- barStyle: 'default',
- };
-
- render() {
- const style = [
- headerBarStyles.container.base,
- headerBarStyles.container.platformOverride[process.platform],
- 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',
- }),
- title: Styles.createTextStyle({
- fontFamily: 'DINPro',
- fontSize: 24,
- fontWeight: '900',
- lineHeight: 30,
- letterSpacing: -0.5,
- color: colors.white60,
- marginLeft: 8,
- }),
-};
-
-export class Brand extends Component {
- render() {
- return (
- <View style={brandStyles.container} testName="headerbar__container">
- <Img width={50} height={50} source="logo-icon" />
- <Text style={brandStyles.title}>{'MULLVAD VPN'}</Text>
- </View>
- );
- }
-}
-
-type SettingsButtonProps = {
- onPress: ?() => void,
-};
-
-const settingsBarButtonStyles = {
- container: {
- base: Styles.createViewStyle({
- cursor: 'default',
- padding: 0,
- marginLeft: 8,
- }),
- platformOverride: {
- linux: Styles.createViewStyle({
- WebkitAppRegion: 'no-drag',
- }),
- },
- },
- icon: {
- normal: Styles.createViewStyle({
- color: colors.white60,
- }),
- hover: Styles.createViewStyle({
- color: colors.white,
- }),
- },
-};
-
-export class SettingsBarButton extends Component<SettingsButtonProps> {
- render() {
- return (
- <Button
- style={[
- settingsBarButtonStyles.container.base,
- settingsBarButtonStyles.container.platformOverride[process.platform],
- ]}
- onPress={this.props.onPress}
- testName="headerbar__settings">
- <Img
- height={24}
- width={24}
- source="icon-settings"
- style={settingsBarButtonStyles.icon.normal}
- hoverStyle={settingsBarButtonStyles.icon.hover}
- />
- </Button>
- );
- }
-}