-
Notifications
You must be signed in to change notification settings - Fork 387
/
Copy pathSpecialLocationList.tsx
156 lines (140 loc) · 5.52 KB
/
SpecialLocationList.tsx
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
import React, { useCallback } from 'react';
import styled from 'styled-components';
import { colors } from '../../../config.json';
import { messages } from '../../../shared/gettext';
import { useHistory } from '../../lib/history';
import { RoutePath } from '../../lib/routes';
import { useSelector } from '../../redux/store';
import ImageView from '../ImageView';
import InfoButton from '../InfoButton';
import { SpecialLocationIndicator } from '../RelayStatusIndicator';
import {
getButtonColor,
StyledHoverInfoButton,
StyledLocationRowButton,
StyledLocationRowContainerWithMargin,
StyledLocationRowIcon,
StyledLocationRowLabel,
} from './LocationRowStyles';
import { SpecialBridgeLocationType, SpecialLocation } from './select-location-types';
interface SpecialLocationsProps<T> {
source: Array<SpecialLocation<T>>;
selectedElementRef: React.Ref<HTMLDivElement>;
onSelect: (value: T) => void;
}
export default function SpecialLocationList<T>({ source, ...props }: SpecialLocationsProps<T>) {
return (
<>
{source.map((location) => (
<SpecialLocationRow key={location.label} source={location} {...props} />
))}
</>
);
}
const StyledSpecialLocationInfoButton = styled(InfoButton)({ padding: '0 25px', margin: 0 });
const StyledSpecialLocationSideButton = styled(ImageView)({ padding: '0 3px' });
interface SpecialLocationRowProps<T> {
source: SpecialLocation<T>;
selectedElementRef: React.Ref<HTMLDivElement>;
onSelect: (value: T) => void;
}
function SpecialLocationRow<T>(props: SpecialLocationRowProps<T>) {
const onSelect = useCallback(() => {
if (!props.source.selected) {
props.onSelect(props.source.value);
}
}, [props.source.selected, props.onSelect, props.source.value]);
const innerProps: SpecialLocationRowInnerProps<T> = {
...props,
onSelect,
};
return <props.source.component {...innerProps} />;
}
export interface SpecialLocationRowInnerProps<T>
extends Omit<SpecialLocationRowProps<T>, 'onSelect'> {
onSelect: () => void;
}
export function AutomaticLocationRow(
props: SpecialLocationRowInnerProps<SpecialBridgeLocationType>,
) {
const selectedRef = props.source.selected ? props.selectedElementRef : undefined;
const background = getButtonColor(props.source.selected, 0, props.source.disabled);
return (
<StyledLocationRowContainerWithMargin ref={selectedRef}>
<StyledLocationRowButton onClick={props.onSelect} $level={0} {...background}>
<SpecialLocationIndicator />
<StyledLocationRowLabel>{props.source.label}</StyledLocationRowLabel>
</StyledLocationRowButton>
<StyledLocationRowIcon
as={StyledSpecialLocationInfoButton}
title={messages.gettext('Automatic')}
message={messages.pgettext(
'select-location-view',
'The app selects a random bridge server, but servers have a higher probability the closer they are to you.',
)}
aria-label={messages.pgettext('accessibility', 'info')}
{...background}
/>
</StyledLocationRowContainerWithMargin>
);
}
export function CustomExitLocationRow(props: SpecialLocationRowInnerProps<undefined>) {
const selectedRef = props.source.selected ? props.selectedElementRef : undefined;
const background = getButtonColor(props.source.selected, 0, props.source.disabled);
return (
<StyledLocationRowContainerWithMargin ref={selectedRef}>
<StyledLocationRowButton $level={0} {...background}>
<StyledLocationRowLabel>{props.source.label}</StyledLocationRowLabel>
</StyledLocationRowButton>
</StyledLocationRowContainerWithMargin>
);
}
const StyledInfoButton = styled(StyledHoverInfoButton)({ display: 'block' });
export function CustomBridgeLocationRow(
props: SpecialLocationRowInnerProps<SpecialBridgeLocationType>,
) {
const history = useHistory();
const bridgeSettings = useSelector((state) => state.settings.bridgeSettings);
const bridgeConfigured = bridgeSettings.custom !== undefined;
const icon = bridgeConfigured ? 'icon-edit' : 'icon-add';
const selectedRef = props.source.selected ? props.selectedElementRef : undefined;
const background = getButtonColor(props.source.selected, 0, props.source.disabled);
const navigate = useCallback(() => history.push(RoutePath.editCustomBridge), [history.push]);
return (
<StyledLocationRowContainerWithMargin ref={selectedRef} disabled={props.source.disabled}>
<StyledLocationRowButton
as="button"
onClick={props.onSelect}
$level={0}
disabled={props.source.disabled}
{...background}>
<SpecialLocationIndicator />
<StyledLocationRowLabel>{props.source.label}</StyledLocationRowLabel>
</StyledLocationRowButton>
<StyledInfoButton
{...background}
$isLast
title={messages.pgettext('select-location-view', 'Custom bridge')}
message={messages.pgettext(
'select-location-view',
'A custom bridge server can be used to circumvent censorship when regular Mullvad bridge servers don’t work.',
)}
/>
<StyledLocationRowIcon
{...background}
aria-label={
bridgeConfigured
? messages.pgettext('accessibility', 'Edit custom bridge')
: messages.pgettext('accessibility', 'Add new custom bridge')
}
onClick={navigate}>
<StyledSpecialLocationSideButton
source={icon}
width={18}
tintColor={colors.white}
tintHoverColor={colors.white80}
/>
</StyledLocationRowIcon>
</StyledLocationRowContainerWithMargin>
);
}