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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
|
import React, { useCallback } from 'react';
import { sprintf } from 'sprintf-js';
import { colors } from '../../config.json';
import { AccountDataError, AccountToken } from '../../shared/daemon-rpc-types';
import { messages } from '../../shared/gettext';
import { useAppContext } from '../context';
import { formatAccountToken } from '../lib/account';
import { formatHtml } from '../lib/html-formatter';
import { LoginState } from '../redux/account/reducers';
import { useSelector } from '../redux/store';
import Accordion from './Accordion';
import * as AppButton from './AppButton';
import { AriaControlGroup, AriaControlled, AriaControls } from './AriaGroup';
import { Brand, HeaderBarSettingsButton } from './HeaderBar';
import ImageView from './ImageView';
import { Container, Header, Layout } from './Layout';
import {
StyledAccountDropdownContainer,
StyledAccountDropdownItem,
StyledAccountDropdownItemButton,
StyledAccountDropdownItemButtonLabel,
StyledAccountDropdownRemoveButton,
StyledAccountDropdownRemoveIcon,
StyledAccountInputBackdrop,
StyledAccountInputGroup,
StyledBlockMessage,
StyledBlockMessageContainer,
StyledBlockTitle,
StyledDropdownSpacer,
StyledFooter,
StyledInput,
StyledInputButton,
StyledInputSubmitIcon,
StyledLoginFooterPrompt,
StyledLoginForm,
StyledStatusIcon,
StyledSubtitle,
StyledTitle,
StyledTopInfo,
} from './LoginStyles';
interface IProps {
accountToken?: AccountToken;
accountHistory?: AccountToken;
loginState: LoginState;
showBlockMessage: boolean;
openExternalLink: (type: string) => void;
login: (accountToken: AccountToken) => void;
resetLoginError: () => void;
updateAccountToken: (accountToken: AccountToken) => void;
clearAccountHistory: () => Promise<void>;
createNewAccount: () => void;
isPerformingPostUpgrade?: boolean;
}
interface IState {
isActive: boolean;
}
const MIN_ACCOUNT_TOKEN_LENGTH = 10;
export default class Login extends React.Component<IProps, IState> {
public state: IState = {
isActive: true,
};
private accountInput = React.createRef<HTMLInputElement>();
private shouldResetLoginError = false;
constructor(props: IProps) {
super(props);
if (props.loginState.type === 'failed') {
this.shouldResetLoginError = true;
}
}
public componentDidUpdate(prevProps: IProps, _prevState: IState) {
if (
this.props.loginState.type !== prevProps.loginState.type &&
this.props.loginState.type === 'failed'
) {
this.shouldResetLoginError = true;
// focus on login field when failed to log in
this.accountInput.current?.focus();
}
}
public render() {
const allowInteraction = this.allowInteraction();
return (
<Layout>
<Header>
<Brand />
<HeaderBarSettingsButton disabled={!allowInteraction} />
</Header>
<Container>
<StyledTopInfo>
{this.props.showBlockMessage ? <BlockMessage /> : this.getStatusIcon()}
</StyledTopInfo>
<StyledLoginForm>
<StyledTitle aria-live="polite">{this.formTitle()}</StyledTitle>
{this.createLoginForm()}
</StyledLoginForm>
<StyledFooter $show={allowInteraction}>{this.createFooter()}</StyledFooter>
</Container>
</Layout>
);
}
private onFocus = () => {
this.setState({ isActive: true });
};
private onBlur = (e: React.FocusEvent<HTMLInputElement>) => {
// restore focus if click happened within dropdown
if (e.relatedTarget) {
if (this.accountInput.current) {
this.accountInput.current.focus();
}
return;
}
this.setState({ isActive: false });
};
private onSubmit = (event?: React.FormEvent) => {
event?.preventDefault();
if (this.accountTokenValid()) {
this.props.login(this.props.accountToken!);
}
};
private onInputChange = (accountToken: string) => {
// reset error when user types in the new account number
if (this.shouldResetLoginError) {
this.shouldResetLoginError = false;
this.props.resetLoginError();
}
this.props.updateAccountToken(accountToken);
};
private formTitle() {
if (this.props.isPerformingPostUpgrade) {
return messages.pgettext('login-view', 'Upgrading...');
}
switch (this.props.loginState.type) {
case 'logging in':
case 'too many devices':
return this.props.loginState.method === 'existing_account'
? messages.pgettext('login-view', 'Logging in...')
: messages.pgettext('login-view', 'Creating account...');
case 'failed':
return this.props.loginState.method === 'existing_account'
? messages.pgettext('login-view', 'Login failed')
: messages.pgettext('login-view', 'Error');
case 'ok':
return this.props.loginState.method === 'existing_account'
? messages.pgettext('login-view', 'Logged in')
: messages.pgettext('login-view', 'Account created');
default:
return messages.pgettext('login-view', 'Login');
}
}
private formSubtitle() {
if (this.props.isPerformingPostUpgrade) {
return messages.pgettext('login-view', 'Finishing upgrade.');
}
switch (this.props.loginState.type) {
case 'failed':
return this.props.loginState.method === 'existing_account'
? this.errorString(this.props.loginState.error)
: messages.pgettext('login-view', 'Failed to create account');
case 'too many devices':
return messages.pgettext('login-view', 'Too many devices');
case 'logging in':
return this.props.loginState.method === 'existing_account'
? messages.pgettext('login-view', 'Checking account number')
: messages.pgettext('login-view', 'Please wait');
case 'ok':
return this.props.loginState.method === 'existing_account'
? messages.pgettext('login-view', 'Valid account number')
: messages.pgettext('login-view', 'Logged in');
default:
return messages.pgettext('login-view', 'Enter your account number');
}
}
private errorString(error: AccountDataError['error']): string {
switch (error) {
case 'invalid-account':
// TRANSLATORS: Error message shown above login input when trying to login with a
// TRANSLATORS: non-existent account number.
return messages.pgettext('login-view', 'Invalid account number');
case 'too-many-devices':
// TRANSLATORS: Error message shown above login input when trying to login to an account
// TRANSLATORS: with too many registered devices.
return messages.pgettext('login-view', 'Too many devices');
case 'list-devices':
// TRANSLATORS: Error message shown above login input when trying to login but the app fails
// TRANSLATORS: to fetch the list of registered devices.
return messages.pgettext('login-view', 'Failed to fetch list of devices');
case 'communication':
return 'api.mullvad.net is blocked, please check your firewall';
default:
return messages.pgettext('login-view', 'Unknown error');
}
}
private getStatusIcon() {
const statusIconPath = this.getStatusIconPath();
return (
<StyledStatusIcon>
{statusIconPath ? <ImageView source={statusIconPath} height={48} width={48} /> : null}
</StyledStatusIcon>
);
}
private getStatusIconPath(): string | undefined {
if (this.props.isPerformingPostUpgrade) {
return 'icon-spinner';
}
switch (this.props.loginState.type) {
case 'logging in':
return 'icon-spinner';
case 'failed':
return 'icon-fail';
case 'ok':
return 'icon-success';
default:
return undefined;
}
}
private allowInteraction() {
return (
!this.props.isPerformingPostUpgrade &&
this.props.loginState.type !== 'logging in' &&
this.props.loginState.type !== 'ok' &&
this.props.loginState.type !== 'too many devices'
);
}
private allowCreateAccount() {
const { accountToken } = this.props;
return this.allowInteraction() && (accountToken === undefined || accountToken.length === 0);
}
private accountTokenValid(): boolean {
const { accountToken } = this.props;
return accountToken !== undefined && accountToken.length >= MIN_ACCOUNT_TOKEN_LENGTH;
}
private shouldShowAccountHistory() {
return this.allowInteraction() && this.props.accountHistory !== undefined;
}
private onSelectAccountFromHistory = (accountToken: string) => {
this.props.updateAccountToken(accountToken);
this.props.login(accountToken);
};
private onClearAccountHistory = () => {
void this.clearAccountHistory();
};
private async clearAccountHistory() {
try {
await this.props.clearAccountHistory();
// TODO: Remove account from memory
} catch (error) {
// TODO: Show error
}
}
private createLoginForm() {
const allowInteraction = this.allowInteraction();
const allowLogin = allowInteraction && this.accountTokenValid();
const hasError =
this.props.loginState.type === 'failed' &&
this.props.loginState.method === 'existing_account';
return (
<>
<StyledSubtitle data-testid="subtitle">{this.formSubtitle()}</StyledSubtitle>
<StyledAccountInputGroup
$active={allowInteraction && this.state.isActive}
$editable={allowInteraction}
$error={hasError}
onSubmit={this.onSubmit}>
<StyledAccountInputBackdrop>
<StyledInput
allowedCharacters="[0-9]"
separator=" "
groupLength={4}
placeholder="0000 0000 0000 0000"
value={this.props.accountToken || ''}
disabled={!allowInteraction}
onFocus={this.onFocus}
onBlur={this.onBlur}
handleChange={this.onInputChange}
autoFocus={true}
ref={this.accountInput}
aria-autocomplete="list"
/>
<StyledInputButton
type="submit"
$visible={allowLogin}
disabled={!allowLogin}
aria-label={
// TRANSLATORS: This is used by screenreaders to communicate the login button.
messages.pgettext('accessibility', 'Login')
}>
<StyledInputSubmitIcon
$visible={
this.props.loginState.type !== 'logging in' && !this.props.isPerformingPostUpgrade
}
source="icon-arrow"
height={16}
width={24}
tintColor="rgb(255, 255, 255)"
/>
</StyledInputButton>
</StyledAccountInputBackdrop>
<Accordion expanded={this.shouldShowAccountHistory()}>
<StyledAccountDropdownContainer>
<AccountDropdown
item={this.props.accountHistory}
onSelect={this.onSelectAccountFromHistory}
onRemove={this.onClearAccountHistory}
/>
</StyledAccountDropdownContainer>
</Accordion>
</StyledAccountInputGroup>
</>
);
}
private createFooter() {
return (
<>
<StyledLoginFooterPrompt>
{messages.pgettext('login-view', 'Don’t have an account number?')}
</StyledLoginFooterPrompt>
<AppButton.BlueButton
onClick={this.props.createNewAccount}
disabled={!this.allowCreateAccount()}>
{messages.pgettext('login-view', 'Create account')}
</AppButton.BlueButton>
</>
);
}
}
interface IAccountDropdownProps {
item?: AccountToken;
onSelect: (value: AccountToken) => void;
onRemove: (value: AccountToken) => void;
}
function AccountDropdown(props: IAccountDropdownProps) {
const token = props.item;
if (!token) {
return null;
}
const label = formatAccountToken(token);
return (
<AccountDropdownItem
value={token}
label={label}
onSelect={props.onSelect}
onRemove={props.onRemove}
/>
);
}
interface IAccountDropdownItemProps {
label: string;
value: AccountToken;
onRemove: (value: AccountToken) => void;
onSelect: (value: AccountToken) => void;
}
function AccountDropdownItem(props: IAccountDropdownItemProps) {
const handleSelect = useCallback(() => {
props.onSelect(props.value);
}, [props.onSelect, props.value]);
const handleRemove = useCallback(
(event: React.MouseEvent<HTMLButtonElement>) => {
// Prevent login form from submitting
event.preventDefault();
props.onRemove(props.value);
},
[props.onRemove, props.value],
);
return (
<>
<StyledDropdownSpacer />
<StyledAccountDropdownItem>
<AriaControlGroup>
<AriaControlled>
<StyledAccountDropdownItemButton id={props.label} onClick={handleSelect} type="button">
<StyledAccountDropdownItemButtonLabel>
{props.label}
</StyledAccountDropdownItemButtonLabel>
</StyledAccountDropdownItemButton>
</AriaControlled>
<AriaControls>
<StyledAccountDropdownRemoveButton
onClick={handleRemove}
aria-controls={props.label}
aria-label={
// TRANSLATORS: This is used by screenreaders to communicate the "x" button next to a saved account number.
// TRANSLATORS: Available placeholders:
// TRANSLATORS: %(accountToken)s - the account token to the left of the button
sprintf(messages.pgettext('accessibility', 'Forget %(accountToken)s'), {
accountToken: props.label,
})
}>
<StyledAccountDropdownRemoveIcon
tintColor={colors.blue40}
tintHoverColor={colors.blue}
source="icon-close-sml"
height={16}
width={16}
/>
</StyledAccountDropdownRemoveButton>
</AriaControls>
</AriaControlGroup>
</StyledAccountDropdownItem>
</>
);
}
function BlockMessage() {
const { setBlockWhenDisconnected, disconnectTunnel } = useAppContext();
const tunnelState = useSelector((state) => state.connection.status);
const blockWhenDisconnected = useSelector((state) => state.settings.blockWhenDisconnected);
const unlock = useCallback(() => {
if (blockWhenDisconnected) {
void setBlockWhenDisconnected(false);
}
if (tunnelState.state === 'error') {
void disconnectTunnel();
}
}, [blockWhenDisconnected, tunnelState, setBlockWhenDisconnected, disconnectTunnel]);
const lockdownModeSettingName = messages.pgettext('vpn-settings-view', 'Lockdown mode');
const message = formatHtml(
blockWhenDisconnected
? sprintf(
// TRANSLATORS: This is a warning message shown when the app is blocking the users
// TRANSLATORS: internet connection while logged out.
// TRANSLATORS: Available placeholder:
// TRANSLATORS: %(lockdownModeSettingName)s - The translation of "Lockdown mode"
messages.pgettext(
'login-view',
'<b>%(lockdownModeSettingName)s</b> is enabled. Disable it to unblock your connection.',
),
{ lockdownModeSettingName },
)
: // This makes the translator comment appear on it's own line.
// TRANSLATORS: This is a warning message shown when the app is blocking the users
// TRANSLATORS: internet connection while logged out.
messages.pgettext('login-view', 'Our kill switch is currently blocking your connection.'),
);
const buttonText = blockWhenDisconnected
? messages.gettext('Disable')
: messages.gettext('Unblock');
return (
<StyledBlockMessageContainer>
<StyledBlockTitle>{messages.gettext('Blocking internet')}</StyledBlockTitle>
<StyledBlockMessage>{message}</StyledBlockMessage>
<AppButton.RedButton onClick={unlock}>{buttonText}</AppButton.RedButton>
</StyledBlockMessageContainer>
);
}
|