blob: 679ef0b87bca4c5ab7f0e190ecd658a8d0c8c621 (
plain)
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
|
import { bluetooth } from 'agl-js-api';
import Mustache from 'mustache';
var isPowered = false;
var template;
function update_state(state) {
var control = document.getElementById('BluetoothControl');
if( state.powered ) {
control.classList.add('enabled');
} else {
control.classList.remove('enabled');
}
}
function update_devices(devices) {
console.log('update_devices', devices);
var deviceList = document.getElementById('BluetoothContainer');
deviceList.innerHTML = '';
devices.forEach(function(device) {
deviceList.innerHTML += Mustache.render(template, device);
});
}
export function toggle() {
bluetooth.adapter_state().then(function(result) {
bluetooth.adapter_state({
powered: !result.powered
}).then(update_state);
});
}
export function init() {
template = document.getElementById('bluetooth-device-template').innerHTML;
Mustache.parse(template);
bluetooth.adapter_state().then(update_state);
bluetooth.managed_objects().then(function(result){
update_devices(result.devices);
});
bluetooth.on_device_changes(function(data) {
bluetooth.managed_objects().then(function(result){
update_devices(result.devices);
});
}).then(function(result) {
console.log('SUBSCRIBED TO DEVICE CHANGES');
});
}
|