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
|
// @flow
import React from 'react';
import { Component, Text, View } from 'reactxp';
import { Layout, Container } from './Layout';
import NavigationBar, { BackBarItem } from './NavigationBar';
import SettingsHeader, { HeaderTitle } from './SettingsHeader';
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>
<Container>
<View style={styles.preferences}>
<NavigationBar>
<BackBarItem action={this.props.onClose} title={'Settings'} />
</NavigationBar>
<View style={styles.preferences__container}>
<SettingsHeader>
<HeaderTitle>Preferences</HeaderTitle>
</SettingsHeader>
<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);
// TODO: Handle failure to set auto-start
this.setState({ autoStart });
};
}
|