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
|
// @flow
import React from 'react';
import { Component, Text, Button, View } from 'reactxp';
import { Layout, Container, Header } from './Layout';
import Img from './Img';
import Switch from './Switch';
import styles from './PreferencesStyles';
export type PreferencesProps = {
autoConnect: boolean,
allowLan: boolean,
getAutoStart: () => boolean,
setAutoStart: (boolean) => void,
setAutoConnect: (boolean) => void,
setAllowLan: (boolean) => void,
onClose: () => void,
};
type State = {
autoStart: boolean,
};
export default class Preferences extends Component<PreferencesProps, State> {
state = {
autoStart: false,
};
constructor(props: PreferencesProps) {
super();
this.state.autoStart = props.getAutoStart();
}
render() {
return (
<Layout>
<Header hidden={true} style={'defaultDark'} />
<Container>
<View style={styles.preferences}>
<Button
style={styles.preferences__close}
onPress={this.props.onClose}
testName="closeButton">
<View style={styles.preferences__close_content}>
<Img style={styles.preferences__close_icon} source="icon-back" />
<Text style={styles.preferences__close_title}>Settings</Text>
</View>
</Button>
<View style={styles.preferences__container}>
<View style={styles.preferences__header}>
<Text style={styles.preferences__title}>Preferences</Text>
</View>
<View style={styles.preferences__content}>
<View style={styles.preferences__cell}>
<View style={styles.preferences__cell_label_container}>
<Text style={styles.preferences__cell_label}>Auto-connect</Text>
</View>
<View style={styles.preferences__cell_accessory}>
<Switch isOn={this.props.autoConnect} onChange={this.props.setAutoConnect} />
</View>
</View>
<View style={styles.preferences__cell_footer}>
<Text style={styles.preferences__cell_footer_label}>
{'Automatically connect the VPN when the computer starts.'}
</Text>
</View>
<View style={styles.preferences__cell}>
<View style={styles.preferences__cell_label_container}>
<Text style={styles.preferences__cell_label}>Auto-start</Text>
</View>
<View style={styles.preferences__cell_accessory}>
<Switch isOn={this.state.autoStart} onChange={this._onChangeAutoStart} />
</View>
</View>
<View style={styles.preferences__cell_footer}>
<Text style={styles.preferences__cell_footer_label}>
{'Automatically open Mullvad VPN at login to the system.'}
</Text>
</View>
<View style={styles.preferences__cell}>
<View style={styles.preferences__cell_label_container}>
<Text style={styles.preferences__cell_label}>Local network sharing</Text>
</View>
<View style={styles.preferences__cell_accessory}>
<Switch isOn={this.props.allowLan} onChange={this.props.setAllowLan} />
</View>
</View>
<View style={styles.preferences__cell_footer}>
<Text style={styles.preferences__cell_footer_label}>
{
'Allows access to other devices on the same network for sharing, printing etc.'
}
</Text>
</View>
</View>
</View>
</View>
</Container>
</Layout>
);
}
_onChangeAutoStart = (autoStart: boolean) => {
this.props.setAutoStart(autoStart);
this.setState({ autoStart });
};
}
|