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
|
// @flow
import React, { Component } from 'react';
import { Layout, Container, Header } from './Layout';
import CustomScrollbars from './CustomScrollbars';
import { servers } from '../config';
import type { ServerInfo } from '../lib/backend';
import type { SettingsReduxState } from '../redux/settings/reducers';
import type { RelayLocation } from '../lib/ipc-facade';
export type SelectLocationProps = {
settings: SettingsReduxState,
onClose: () => void;
onSelect: (location: RelayLocation) => void;
};
export default class SelectLocation extends Component {
props: SelectLocationProps;
_selectedCell: ?HTMLElement;
_onSelect(location: RelayLocation) {
if (!this._isSelected(location)) {
this.props.onSelect(location);
}
}
_isSelected(selectedLocation: RelayLocation) {
const { relaySettings } = this.props.settings;
if(relaySettings.normal) {
const otherLocation = relaySettings.normal.location;
if(selectedLocation.country && otherLocation.country &&
selectedLocation.country === otherLocation.country) {
return true;
}
if(Array.isArray(selectedLocation.city) && Array.isArray(otherLocation.city)) {
const selectedCity = selectedLocation.city;
const otherCity = otherLocation.city;
return selectedCity.length === otherCity.length &&
selectedCity.every((v, i) => v === otherCity[i]);
}
}
return false;
}
drawCell(key: string, name: string, selected: bool, icon: ?string, onClick: (e: Event) => void): React.Element<*> {
const classes = ['select-location__cell'];
if(selected) {
classes.push('select-location__cell--selected');
}
const cellClass = classes.join(' ');
const onRef = selected ? (element) => {
this._selectedCell = element;
} : undefined;
return (
<div key={ key } className={ cellClass } onClick={ onClick } ref={ onRef }>
{ icon && <img className="select-location__cell-icon" src={ icon } />}
<div className="select-location__cell-label">{ name }</div>
{ selected && <img className="select-location__cell-accessory" src="./assets/images/icon-tick.svg" /> }
</div>
);
}
componentDidMount() {
// restore scroll to selected cell
const cell = this._selectedCell;
if(cell) {
// this is non-standard webkit method but it works great!
if(typeof(cell.scrollIntoViewIfNeeded) !== 'function') {
console.warn('HTMLElement.scrollIntoViewIfNeeded() is not available anymore! Please replace it with viable alternative.');
return;
}
cell.scrollIntoViewIfNeeded(true);
}
}
render(): React.Element<*> {
return (
<Layout>
<Header hidden={ true } style={ 'defaultDark' } />
<Container>
<div className="select-location">
<button className="select-location__close" onClick={ this.props.onClose } />
<div className="select-location__container">
<div className="select-location__header">
<h2 className="select-location__title">Select location</h2>
</div>
<CustomScrollbars autoHide={ true }>
<div>
<div className="select-location__subtitle">
While connected, your real location is masked with a private and secure location in the selected region
</div>
<div className="select-location__separator"></div>
{ (servers: Array<ServerInfo>).map((server) => {
const { address, name, country_code, city_code } = server;
const relayLocation = {
city: [ country_code, city_code ]
};
const selected = this._isSelected(relayLocation);
const clickHandler = () => this._onSelect(relayLocation);
return this.drawCell(address, name, selected, null, clickHandler);
}) }
</div>
</CustomScrollbars>
</div>
</div>
</Container>
</Layout>
);
}
}
|