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
ash / webui / diagnostics_ui / resources / diagnostics_network_icon.ts [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* @fileoverview
* 'diagnostics-network-icon' is a wrapper for 'network-icon' to ensure the
* correct icon displayed based on network type, state, and technology.
* @see //ash/webui/common/resources/network/network_icon.js
*/
import 'chrome://resources/ash/common/network/network_icon.js';
import 'chrome://resources/polymer/v3_0/paper-spinner/paper-spinner-lite.js';
import './diagnostics_shared.css.js';
import {I18nMixin} from 'chrome://resources/ash/common/cr_elements/i18n_mixin.js';
import {assert, assertNotReached} from 'chrome://resources/js/assert.js';
import {CellularStateProperties, NetworkStateProperties, SecurityType as MojomSecurityType, WiFiStateProperties} from 'chrome://resources/mojo/chromeos/services/network_config/public/mojom/cros_network_config.mojom-webui.js';
import {ConnectionStateType as MojomConnectionStateType, NetworkType as MojomNetworkType} from 'chrome://resources/mojo/chromeos/services/network_config/public/mojom/network_types.mojom-webui.js';
import {PolymerElementProperties} from 'chrome://resources/polymer/v3_0/polymer/interfaces.js';
import {PolymerElement} from 'chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js';
import {getTemplate} from './diagnostics_network_icon.html.js';
import {getNetworkType} from './diagnostics_utils.js';
import {Network, NetworkState, NetworkType, SecurityType} from './network_health_provider.mojom-webui.js';
/**
* Type alias for network_config NetworkStateProperties struct.
*/
export type CrosNetworkStateProperties = NetworkStateProperties;
/**
* Type alias for network_config ConnectionStateType enum.
*/
export const ConnectionStateType = MojomConnectionStateType;
/**
* Type alias for network_config NetworkType enum.
*/
export const CrosNetworkType = MojomNetworkType;
/**
* Type alias for network_config SecurityType enum.
*/
export const CrosSecurityType = MojomSecurityType;
// Required Cellular type properties to display network-icon.
export type RequiredCellularProperties = Pick<
CellularStateProperties,
'networkTechnology'|'roaming'|'signalStrength'|'simLocked'>;
// Required WiFi type properties to display network-icon.
export type RequiredWiFiProperties =
Pick<WiFiStateProperties, 'security'|'signalStrength'>;
interface NetworkTypeState {
cellular?: RequiredCellularProperties;
wifi?: RequiredWiFiProperties;
}
/**
* Struct for minimal required network state required to display network-icon
* element.
*/
export interface NetworkIconNetworkState {
connectionState: MojomConnectionStateType;
guid: string;
type: MojomNetworkType;
typeState?: NetworkTypeState|null;
}
function convertNetworkStateToCrosNetworkState(state: NetworkState):
MojomConnectionStateType {
switch (state) {
case NetworkState.kOnline:
return ConnectionStateType.kOnline;
case NetworkState.kConnected:
return ConnectionStateType.kConnected;
case NetworkState.kPortal:
return ConnectionStateType.kPortal;
case NetworkState.kConnecting:
return ConnectionStateType.kConnecting;
case NetworkState.kNotConnected:
// kDisabled is a device state which is merged with kNotConnected.
case NetworkState.kDisabled:
return ConnectionStateType.kNotConnected;
}
}
function convertNetworkTypeToCrosNetworkType(type: NetworkType):
MojomNetworkType {
switch (type) {
case NetworkType.kEthernet:
return CrosNetworkType.kEthernet;
case NetworkType.kWiFi:
return CrosNetworkType.kWiFi;
case NetworkType.kCellular:
return CrosNetworkType.kCellular;
default:
assertNotReached();
}
}
/**
* Helper function to get the required properties to display a cellular network
* icon.
*/
function getCellularTypeState(network: Network): NetworkTypeState {
assert(network.type === NetworkType.kCellular);
// Default type properties for cellular.
const defaultCellularTypeStateProperties: RequiredCellularProperties = {
networkTechnology: '',
roaming: false,
signalStrength: 0,
simLocked: false,
};
let typeState = {cellular: defaultCellularTypeStateProperties};
if (!network?.typeProperties?.cellular) {
return typeState;
}
// Override type properties if data is available.
const networkTechnology = network.typeProperties.cellular.networkTechnology;
const roaming = network.typeProperties.cellular.roaming;
const signalStrength = network.typeProperties.cellular.signalStrength;
const simLocked = network.typeProperties.cellular.simLocked;
assert(networkTechnology);
assert(roaming);
assert(signalStrength);
assert(simLocked);
typeState = {
cellular: {networkTechnology, roaming, signalStrength, simLocked},
};
return typeState;
}
/**
* Helper function to get the required properties to display a wifi network
* icon.
*/
function getWifiTypeState(network: Network): NetworkTypeState {
const defaultWifiTypeStateProperties: RequiredWiFiProperties = {
security: CrosSecurityType.kNone,
signalStrength: 0,
};
let typeState = {wifi: defaultWifiTypeStateProperties};
if (!network?.typeProperties?.wifi) {
return typeState;
}
// Override type properties if data is available.
const signalStrength = network.typeProperties.wifi.signalStrength;
const securityType = network.typeProperties.wifi.security;
if (signalStrength) {
typeState = {wifi: {security: typeState.wifi.security, signalStrength}};
}
if (securityType) {
const security = convertSecurityTypeToCrosSecurityType(securityType);
typeState = {
wifi: {security, signalStrength: typeState.wifi.signalStrength},
};
}
return typeState;
}
/**
* Helper function to get the typeState required for a given `network.type`
* to display `network-icon` correctly.
*/
function getTypeState(network: Network): NetworkTypeState|null {
switch (network.type) {
case NetworkType.kEthernet:
return null;
case NetworkType.kCellular:
return getCellularTypeState(network);
case NetworkType.kWiFi:
return getWifiTypeState(network);
}
assertNotReached();
}
function convertSecurityTypeToCrosSecurityType(type: SecurityType):
MojomSecurityType {
switch (type) {
case SecurityType.kNone:
return CrosSecurityType.kNone;
case SecurityType.kWep8021x:
return CrosSecurityType.kWep8021x;
case SecurityType.kWepPsk:
return CrosSecurityType.kWepPsk;
case SecurityType.kWpaEap:
return CrosSecurityType.kWpaEap;
case SecurityType.kWpaPsk:
return CrosSecurityType.kWpaPsk;
}
}
/**
* Adapter to convert network data to fit data required for network-icon.
*/
export function networkToNetworkStateAdapter(network: Network):
NetworkIconNetworkState {
const type = convertNetworkTypeToCrosNetworkType(network.type);
const connectionState = convertNetworkStateToCrosNetworkState(network.state);
const guid = network.observerGuid;
const typeState = getTypeState(network);
return {guid, connectionState, type, typeState};
}
const DiagnosticsNetworkIconBase = I18nMixin(PolymerElement);
export class DiagnosticsNetworkIconElement extends DiagnosticsNetworkIconBase {
static get is(): string {
return 'diagnostics-network-icon';
}
static get template(): HTMLTemplateElement {
return getTemplate();
}
static get properties(): PolymerElementProperties {
return {
network: {
type: Object,
},
};
}
network: Network;
protected computeNetworkState(): NetworkIconNetworkState|null {
// Block should only be entered when element is being initialized.
if (!this.network) {
return null;
}
return networkToNetworkStateAdapter(this.network);
}
protected computeShouldDisplaySpinner(): boolean {
if (!this.network) {
return false;
}
return this.network.state === NetworkState.kConnecting;
}
protected computeSpinnerAriaLabel(): string {
if (!this.network) {
return '';
}
const networkType = getNetworkType(this.network.type);
return this.i18nDynamic(
navigator.language, 'networkIconLabelConnecting', networkType);
}
}
declare global {
interface HTMLElementTagNameMap {
'diagnostics-network-icon': DiagnosticsNetworkIconElement;
}
}
customElements.define(
DiagnosticsNetworkIconElement.is, DiagnosticsNetworkIconElement);