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
|
import { sprintf } from 'sprintf-js';
import { strings } from '../../config.json';
import { messages } from '../../shared/gettext';
import { TunnelState } from '../daemon-rpc-types';
import {
InAppNotification,
InAppNotificationProvider,
SystemNotification,
SystemNotificationCategory,
SystemNotificationProvider,
SystemNotificationSeverityType,
} from './notification';
interface BlockWhenDisconnectedNotificationContext {
tunnelState: TunnelState;
blockWhenDisconnected: boolean;
hasExcludedApps: boolean;
}
export class BlockWhenDisconnectedNotificationProvider
implements InAppNotificationProvider, SystemNotificationProvider {
public constructor(private context: BlockWhenDisconnectedNotificationContext) {}
public mayDisplay() {
return (
(this.context.tunnelState.state === 'disconnecting' ||
this.context.tunnelState.state === 'disconnected') &&
this.context.blockWhenDisconnected
);
}
public getSystemNotification(): SystemNotification {
const message = messages.pgettext('notifications', 'Lockdown mode active, connection blocked');
return {
message,
severity: SystemNotificationSeverityType.info,
category: SystemNotificationCategory.tunnelState,
};
}
public getInAppNotification(): InAppNotification {
const lockdownModeSettingName = messages.pgettext('vpn-settings-view', 'Lockdown mode');
let subtitle = sprintf(
messages.pgettext('in-app-notifications', '"%(lockdownModeSettingName)s" is enabled.'),
{ lockdownModeSettingName },
);
if (this.context.hasExcludedApps) {
subtitle = `${subtitle} ${sprintf(
messages.pgettext(
'notifications',
'The apps excluded with %(splitTunneling)s might not work properly right now.',
),
{ splitTunneling: strings.splitTunneling.toLowerCase() },
)}`;
}
return {
indicator: 'warning',
title: messages.pgettext('in-app-notifications', 'BLOCKING INTERNET'),
subtitle,
};
}
}
|