summaryrefslogtreecommitdiffstats
path: root/src/js/bluetooth.js
blob: 30c2d82e809c1c333d4ac1b68df2e73e3420203b (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
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
import { bluetooth } from 'agl-js-api';
import Mustache from 'mustache';

window.bluetooth = bluetooth;

var template;
var filterBy = 'available';

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) {
    var deviceList = document.getElementById('BluetoothContainer');
    deviceList.innerHTML = '';

    devices.forEach(function(device) {
        if ( filterBy === 'connected' && device.properties.connected ) {
            deviceList.innerHTML += Mustache.render(template, device);
        } else if ( filterBy === 'paired' && 
                device.properties.paired && 
                !device.properties.connected ) {
            deviceList.innerHTML += Mustache.render(template, device); 
        } else if ( filterBy === 'available' & 
                !device.properties.connected && 
                !device.properties.paired) {
            deviceList.innerHTML += Mustache.render(template, device); 
        }
    });
}

function refresh_devices() {
    bluetooth.managed_objects().then(function(result){
        update_devices(result.devices);
    });
}

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({
        discovery: true
    }).then(update_state);
    refresh_devices();

    // This code has been commented to improve performance
    // 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');
    // });
}

export function filter(filter) {
    filterBy = filter;
    refresh_devices();
}

export function getFilter() {
    return filterBy;
}

export function remove(deviceId) {
    bluetooth.remove_device(deviceId).then(function() {
        refresh_devices();
    });
}

export function pair(deviceId) {
    bluetooth.pair(deviceId).then(function() {
        refresh_devices();
    });
}

export function connect(deviceId) {
    bluetooth.connect(deviceId).then(function() {
        refresh_devices();
    });
}

export function disconnect(deviceId) {
    bluetooth.disconnect(deviceId).then(function() {
        refresh_devices();
    });
}