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
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* Javascript for DeviceDetailsPage which displays all of the details of a
* device. The page is generated and managed dynamically in bluetooth_internals.
* served from chrome://bluetooth-internals/.
*/
import './service_list.js';
import './object_fieldset.js';
import {$} from 'chrome://resources/js/util.js';
import {DeviceRemote} from './device.mojom-webui.js';
import {connectToDevice} from './device_broker.js';
import {ConnectionStatus} from './device_collection.js';
import {formatManufacturerDataMap, formatServiceUuids} from './device_utils.js';
import {ObjectFieldSetElement} from './object_fieldset.js';
import {Page} from './page.js';
import {showSnackbar, SnackbarType} from './snackbar.js';
/**
* Property names that will be displayed in the ObjectFieldSet which contains
* the DeviceInfo object.
*/
const PROPERTY_NAMES = {
name: 'Name',
address: 'Address',
isGattConnected: 'GATT Connected',
'rssi.value': 'Latest RSSI',
serviceUuids: 'Services',
manufacturerDataMap: 'Manufacturer Data',
};
/**
* Page that displays all of the details of a device. This page is generated
* and managed dynamically in bluetooth_internals. The page contains two
* sections: Status and Services. The Status section displays information from
* the DeviceInfo object and the Services section contains a ServiceList
* compononent that lists all of the active services on the device.
*/
export class DeviceDetailsPage extends Page {
/**
* @param {string} id
* @param {!DeviceInfo} deviceInfo
*/
constructor(id, deviceInfo) {
super(id, deviceInfo.nameForDisplay, id);
/** @type {!DeviceInfo} */
this.deviceInfo = deviceInfo;
/** @type {?Array<ServiceInfo>} */
this.services = null;
/** @private {?DeviceRemote} */
this.device_ = null;
/** @private {!ObjectFieldSetElement} */
this.deviceFieldSet_ = document.createElement('object-field-set');
this.deviceFieldSet_.toggleAttribute('show-all', true);
this.deviceFieldSet_.dataset.nameMap = JSON.stringify(PROPERTY_NAMES);
/** @private {!ServiceList} */
this.serviceList_ = document.createElement('service-list');
/** @private {!ConnectionStatus} */
this.status_ = ConnectionStatus.DISCONNECTED;
/** @private {?Element} */
this.connectBtn_ = null;
this.pageDiv.appendChild(document.importNode(
$('device-details-template').content, true /* deep */));
this.pageDiv.querySelector('.device-details')
.appendChild(this.deviceFieldSet_);
this.pageDiv.querySelector('.services').appendChild(this.serviceList_);
this.pageDiv.querySelector('.forget').addEventListener('click', function() {
this.disconnect();
this.pageDiv.dispatchEvent(new CustomEvent('forgetpressed', {
detail: {
address: this.deviceInfo.address,
},
}));
}.bind(this));
this.connectBtn_ = this.pageDiv.querySelector('.disconnect');
this.connectBtn_.addEventListener('click', function() {
this.device_ !== null ? this.disconnect() : this.connect();
}.bind(this));
this.redraw();
}
/** Creates a connection to the Bluetooth device. */
connect() {
if (this.status_ !== ConnectionStatus.DISCONNECTED) {
return;
}
this.updateConnectionStatus_(ConnectionStatus.CONNECTING);
connectToDevice(this.deviceInfo.address)
.then(function(device) {
this.device_ = device;
this.updateConnectionStatus_(ConnectionStatus.CONNECTED);
// Fetch services asynchronously.
return this.device_.getServices();
}.bind(this))
.then(function(response) {
this.services = response.services;
this.serviceList_.load(this.deviceInfo.address);
this.redraw();
this.fireDeviceInfoChanged_();
}.bind(this))
.catch(function(error) {
// If a connection error occurs while fetching the services, the
// DeviceRemote reference must be removed.
if (this.device_) {
this.device_.disconnect();
this.device_ = null;
}
showSnackbar(
this.deviceInfo.nameForDisplay + ': ' + error.message,
SnackbarType.ERROR, 'Retry', this.connect.bind(this));
this.updateConnectionStatus_(ConnectionStatus.DISCONNECTED);
}.bind(this));
}
/** Disconnects the page from the Bluetooth device. */
disconnect() {
if (!this.device_) {
return;
}
this.device_.disconnect();
this.device_ = null;
this.updateConnectionStatus_(ConnectionStatus.DISCONNECTED);
}
/** Redraws the contents of the page with the current |deviceInfo|. */
redraw() {
const isConnected = this.deviceInfo.isGattConnected;
// Update status if connection has changed.
if (isConnected) {
this.connect();
} else {
this.disconnect();
}
const connectedText = isConnected ? 'Connected' : 'Not Connected';
const rssi = this.deviceInfo.rssi || {};
let rssiValue = 'Unknown';
if (rssi.value != null && rssi.value <= 0) {
rssiValue = rssi.value;
}
const serviceUuidsText = formatServiceUuids(this.deviceInfo.serviceUuids);
const manufacturerDataMapText =
formatManufacturerDataMap(this.deviceInfo.manufacturerDataMap);
const deviceViewObj = {
name: this.deviceInfo.nameForDisplay,
address: this.deviceInfo.address,
isGattConnected: connectedText,
'rssi.value': rssiValue,
serviceUuids: serviceUuidsText,
manufacturerDataMap: manufacturerDataMapText,
};
this.deviceFieldSet_.dataset.value = JSON.stringify(deviceViewObj);
}
/**
* Sets the page's device info and forces a redraw.
* @param {!DeviceInfo} info
*/
setDeviceInfo(info) {
this.deviceInfo = info;
this.redraw();
}
/**
* Fires an 'infochanged' event with the current |deviceInfo|
* @private
*/
fireDeviceInfoChanged_() {
this.pageDiv.dispatchEvent(new CustomEvent('infochanged', {
bubbles: true,
detail: {
info: this.deviceInfo,
},
}));
}
/**
* Updates the current connection status. Caches the latest status, updates
* the connection button message, and fires a 'connectionchanged' event when
* finished.
* @param {!ConnectionStatus} status
* @private
*/
updateConnectionStatus_(status) {
if (this.status_ === status) {
return;
}
this.status_ = status;
if (status === ConnectionStatus.DISCONNECTED) {
this.connectBtn_.textContent = 'Connect';
this.connectBtn_.disabled = false;
} else if (status === ConnectionStatus.CONNECTING) {
this.connectBtn_.textContent = 'Connecting';
this.connectBtn_.disabled = true;
} else {
this.connectBtn_.textContent = 'Disconnect';
this.connectBtn_.disabled = false;
}
this.pageDiv.dispatchEvent(new CustomEvent('connectionchanged', {
bubbles: true,
detail: {
address: this.deviceInfo.address,
status: status,
},
}));
}
}
|