mirror of
https://github.com/beestat/app.git
synced 2025-05-23 18:04:14 -04:00
123 lines
3.7 KiB
JavaScript
123 lines
3.7 KiB
JavaScript
/**
|
|
* Setting
|
|
*/
|
|
beestat.component.card.manage_thermostats = function() {
|
|
beestat.component.card.apply(this, arguments);
|
|
};
|
|
beestat.extend(beestat.component.card.manage_thermostats, beestat.component.card);
|
|
|
|
/**
|
|
* Decorate contents.
|
|
*
|
|
* @param {rocket.Elements} parent Parent
|
|
*/
|
|
beestat.component.card.manage_thermostats.prototype.decorate_contents_ = function(parent) {
|
|
var p = document.createElement('p');
|
|
p.innerText = 'Thermostats directly connected to your ecobee account are automatically added and synced. In some cases, shared thermostats cannot be automatically detected. Add them here.';
|
|
parent.appendChild(p);
|
|
|
|
// Existing
|
|
(new beestat.component.title('Existing Thermostats')).render(parent);
|
|
|
|
var sorted_thermostats = $.values(beestat.cache.thermostat)
|
|
.sort(function(a, b) {
|
|
return a.name > b.name;
|
|
});
|
|
|
|
const table = document.createElement('table');
|
|
sorted_thermostats.forEach(function(thermostat) {
|
|
const ecobee_thermostat = beestat.cache.ecobee_thermostat[thermostat.ecobee_thermostat_id];
|
|
|
|
const tr = document.createElement('tr');
|
|
|
|
const td_name = document.createElement('td');
|
|
const td_identifier = document.createElement('td');
|
|
const td_delete = document.createElement('td');
|
|
|
|
td_name.innerText = thermostat.name;
|
|
td_identifier.innerText = ecobee_thermostat.identifier;
|
|
|
|
const tile_delete = new beestat.component.tile()
|
|
.set_icon('trash_can')
|
|
.set_shadow(false)
|
|
.set_text_color(beestat.style.color.red.base)
|
|
.render($(td_delete));
|
|
|
|
tile_delete.addEventListener('click', function() {
|
|
console.info('delete');
|
|
})
|
|
|
|
tr.appendChild(td_name);
|
|
tr.appendChild(td_identifier);
|
|
tr.appendChild(td_delete);
|
|
|
|
table.appendChild(tr);
|
|
});
|
|
|
|
parent.appendChild(table);
|
|
|
|
// New
|
|
(new beestat.component.title('Add Thermostat')).render(parent);
|
|
|
|
const container = document.createElement('div');
|
|
parent.appendChild(container);
|
|
|
|
Object.assign(container.style, {
|
|
'display': 'flex',
|
|
'flex-direction': 'row',
|
|
'grid-gap': `${beestat.style.size.gutter}px`,
|
|
});
|
|
|
|
const input_container = document.createElement('div');
|
|
container.appendChild(input_container);
|
|
|
|
new_identifier = new beestat.component.input.text()
|
|
.set_width(150)
|
|
.set_maxlength(12)
|
|
.set_placeholder('Serial #')
|
|
.render($(input_container));
|
|
|
|
const button_container = document.createElement('div');
|
|
container.appendChild(button_container);
|
|
|
|
const tile_add = new beestat.component.tile()
|
|
.set_background_color(beestat.style.color.green.base)
|
|
.set_background_hover_color(beestat.style.color.green.light)
|
|
.set_text_color('#fff')
|
|
.set_text('Add Thermostat')
|
|
.render($(button_container));
|
|
|
|
// TODO: Add thermostat button needs to make an API call. That call should
|
|
// look for an existing inactive thermostat on the account and add it back.
|
|
// If it doesn't exist, it should do an API call to ecobee to "sync" that
|
|
// thermostat which should immediately grab all of that data and create the
|
|
// rows for me using my existing code. Throw a loading spinner over the
|
|
// manage thermostats card while this happens, then call get thermostats when
|
|
// that's done to update beestat's cache.
|
|
};
|
|
|
|
/**
|
|
* Get the title of the card.
|
|
*
|
|
* @return {string} The title.
|
|
*/
|
|
beestat.component.card.manage_thermostats.prototype.get_title_ = function() {
|
|
return 'Manage Thermostats';
|
|
};
|
|
|
|
/**
|
|
* Decorate the menu
|
|
*
|
|
* @param {rocket.Elements} parent
|
|
*/
|
|
beestat.component.card.manage_thermostats.prototype.decorate_top_right_ = function(parent) {
|
|
var menu = (new beestat.component.menu()).render(parent);
|
|
|
|
menu.add_menu_item(new beestat.component.menu_item()
|
|
.set_text('Help')
|
|
.set_icon('help_circle')
|
|
.set_callback(function() {
|
|
window.open('TODO');
|
|
}));
|
|
};
|