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
ash / webui / diagnostics_ui / resources / network_list.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.
import './connectivity_card.js';
import './diagnostics_shared.css.js';
import './icons.html.js';
import './network_card.js';
import {loadTimeData} from 'chrome://resources/ash/common/load_time_data.m.js';
import {I18nMixin} from 'chrome://resources/ash/common/cr_elements/i18n_mixin.js';
import {assert} from 'chrome://resources/js/assert.js';
import {PolymerElementProperties} from 'chrome://resources/polymer/v3_0/polymer/interfaces.js';
import {afterNextRender, PolymerElement} from 'chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js';
import {ConnectivityCardElement} from './connectivity_card.js';
import {DiagnosticsBrowserProxy, DiagnosticsBrowserProxyImpl} from './diagnostics_browser_proxy.js';
import {getNetworkHealthProvider} from './mojo_interface_provider.js';
import {NetworkCardElement} from './network_card.js';
import {NetworkHealthProviderInterface, NetworkListObserverReceiver} from './network_health_provider.mojom-webui.js';
import {getTemplate} from './network_list.html.js';
import {TestSuiteStatus} from './routine_list_executor.js';
export interface NetworkListElement {
$: {
networkListContainer: HTMLDivElement,
};
}
/**
* @fileoverview
* 'network-list' is responsible for displaying Ethernet, Cellular,
* and WiFi networks.
*/
const NetworkListElementBase = I18nMixin(PolymerElement);
export class NetworkListElement extends NetworkListElementBase {
static get is(): 'network-list' {
return 'network-list' as const;
}
static get template(): HTMLTemplateElement {
return getTemplate();
}
static get properties(): PolymerElementProperties {
return {
testSuiteStatus: {
type: Number,
value: TestSuiteStatus.NOT_RUNNING,
},
otherNetworkGuids: {
type: Array,
value: () => [],
},
activeGuid: {
type: String,
value: '',
},
isActive: {
type: Boolean,
value: true,
},
isLoggedIn: {
type: Boolean,
value: loadTimeData.getBoolean('isLoggedIn'),
},
};
}
testSuiteStatus: TestSuiteStatus;
isActive: boolean;
protected isLoggedIn: boolean;
private otherNetworkGuids: string[];
private activeGuid: string;
private browserProxy: DiagnosticsBrowserProxy =
DiagnosticsBrowserProxyImpl.getInstance();
private networkHealthProvider: NetworkHealthProviderInterface =
getNetworkHealthProvider();
private networkListObserverReceiver: NetworkListObserverReceiver|null = null;
constructor() {
super();
this.browserProxy.initialize();
this.observeNetworkList();
}
override disconnectedCallback(): void {
super.disconnectedCallback();
if (this.networkListObserverReceiver) {
this.networkListObserverReceiver.$.close();
}
}
private observeNetworkList(): void {
// Calling observeNetworkList will trigger onNetworkListChanged.
this.networkListObserverReceiver = new NetworkListObserverReceiver(this);
this.networkHealthProvider.observeNetworkList(
this.networkListObserverReceiver.$.bindNewPipeAndPassRemote());
}
/**
* Implements NetworkListObserver.onNetworkListChanged
*/
onNetworkListChanged(networkGuids: string[], activeGuid: string): void {
// The connectivity-card is responsible for displaying the active network
// so we need to filter out the activeGuid to avoid displaying a
// a network-card for it.
this.otherNetworkGuids = networkGuids.filter(guid => guid !== activeGuid);
this.activeGuid = activeGuid;
}
/**
* 'navigation-view-panel' is responsible for calling this function when
* the active page changes.
*/
onNavigationPageChanged({isActive}: {isActive: boolean}): void {
this.isActive = isActive;
// TODO(ashleydp): Update when connectivity/network card's are merged.
if (isActive) {
// Focus the first visible card title. If no cards are present,
// fallback to focusing the element's main container.
afterNextRender(this, () => {
if (this.activeGuid) {
const connectivityCard: ConnectivityCardElement|null =
this.shadowRoot!.querySelector('connectivity-card');
assert(connectivityCard);
const cardTitle: HTMLDivElement|null =
connectivityCard.shadowRoot!.querySelector('#cardTitle');
assert(cardTitle);
cardTitle.focus();
return;
} else if (this.otherNetworkGuids.length > 0) {
const networkCard: NetworkCardElement|null =
this.shadowRoot!.querySelector('network-card');
assert(networkCard);
const cardTitle: HTMLDivElement|null =
networkCard.shadowRoot!.querySelector('#cardTitle');
assert(cardTitle);
cardTitle.focus();
}
this.$.networkListContainer.focus();
});
// TODO(ashleydp): Remove when a call can be made at a higher component
// to avoid duplicate code in all navigatable pages.
this.browserProxy.recordNavigation('connectivity');
}
}
protected getSettingsString(): TrustedHTML {
return this.i18nAdvanced('settingsLinkText');
}
setActiveGuidForTesting(guid: string): void {
this.activeGuid = guid;
}
setIsLoggedInForTesting(state: boolean): void {
this.isLoggedIn = state;
}
getOtherNetworkGuidsForTesting(): string[] {
return this.otherNetworkGuids;
}
}
declare global {
interface HTMLElementTagNameMap {
[NetworkListElement.is]: NetworkListElement;
}
}
customElements.define(NetworkListElement.is, NetworkListElement);