mirror of
https://github.com/beestat/app.git
synced 2025-05-24 02:14:03 -04:00
41 lines
1.3 KiB
JavaScript
41 lines
1.3 KiB
JavaScript
/**
|
|
* Air Quality Not Supported
|
|
*/
|
|
beestat.component.card.air_quality_not_supported = function() {
|
|
beestat.component.card.apply(this, arguments);
|
|
};
|
|
beestat.extend(beestat.component.card.air_quality_not_supported, beestat.component.card);
|
|
|
|
/**
|
|
* Decorate
|
|
*
|
|
* @param {rocket.Elements} parent
|
|
*/
|
|
beestat.component.card.air_quality_not_supported.prototype.decorate_contents_ = function(parent) {
|
|
parent.style('background', beestat.style.color.blue.light);
|
|
parent.appendChild($.createElement('p').innerText('Access to Air Quality information requires a compatible thermostat. Support beestat by buying through this affiliate link.'));
|
|
|
|
new beestat.component.tile()
|
|
.set_icon('open_in_new')
|
|
.set_text([
|
|
'Ecobee Smart Thermostat Premium',
|
|
'Amazon Affiliate'
|
|
])
|
|
.set_size('large')
|
|
.set_background_color(beestat.style.color.green.dark)
|
|
.set_background_hover_color(beestat.style.color.green.light)
|
|
.addEventListener('click', function() {
|
|
window.open(beestat.affiliate.get_link('ecobee_smart_thermostat_premium'));
|
|
})
|
|
.render(parent);
|
|
};
|
|
|
|
/**
|
|
* Get the title of the card.
|
|
*
|
|
* @return {string} The title.
|
|
*/
|
|
beestat.component.card.air_quality_not_supported.prototype.get_title_ = function() {
|
|
return 'Unsupported Thermostat';
|
|
};
|