mirror of
https://github.com/beestat/app.git
synced 2025-05-23 18:04:14 -04:00
94 lines
2.0 KiB
JavaScript
94 lines
2.0 KiB
JavaScript
/**
|
|
* Detail layer.
|
|
*/
|
|
beestat.layer.detail = function() {
|
|
beestat.layer.apply(this, arguments);
|
|
};
|
|
beestat.extend(beestat.layer.detail, beestat.layer);
|
|
|
|
beestat.layer.detail.prototype.decorate_ = function(parent) {
|
|
const thermostat = beestat.cache.thermostat[beestat.setting('thermostat_id')];
|
|
|
|
/*
|
|
* Set the overflow on the body so the scrollbar is always present so
|
|
* highcharts graphs render properly.
|
|
*/
|
|
$('body').style({
|
|
'overflow-y': 'scroll',
|
|
'background': beestat.style.color.bluegray.light,
|
|
'padding': '0 ' + beestat.style.size.gutter + 'px'
|
|
});
|
|
|
|
(new beestat.component.header('detail')).render(parent);
|
|
|
|
// All the cards
|
|
var cards = [];
|
|
|
|
if (window.is_demo === true) {
|
|
cards.push([
|
|
{
|
|
'card': new beestat.component.card.demo(),
|
|
'size': 12
|
|
}
|
|
]);
|
|
}
|
|
|
|
cards.push([
|
|
{
|
|
'card': new beestat.component.card.system(thermostat.thermostat_id),
|
|
'size': 4
|
|
},
|
|
{
|
|
'card': new beestat.component.card.sensors(),
|
|
'size': 4
|
|
},
|
|
{
|
|
'card': new beestat.component.card.alerts(),
|
|
'size': 4
|
|
}
|
|
]);
|
|
|
|
if (beestat.component.card.contribute_reminder.should_show() === true) {
|
|
cards.push([
|
|
{
|
|
'card': new beestat.component.card.contribute_reminder(),
|
|
'size': 12
|
|
}
|
|
]);
|
|
} else if (beestat.component.card.rate_app_reminder.should_show() === true) {
|
|
cards.push([
|
|
{
|
|
'card': new beestat.component.card.rate_app_reminder(),
|
|
'size': 12
|
|
}
|
|
]);
|
|
}
|
|
|
|
cards.push([
|
|
{
|
|
'card': new beestat.component.card.runtime_thermostat_detail(
|
|
beestat.setting('thermostat_id')
|
|
),
|
|
'size': 12
|
|
}
|
|
]);
|
|
|
|
cards.push([
|
|
{
|
|
'card': new beestat.component.card.runtime_sensor_detail(
|
|
beestat.setting('thermostat_id')
|
|
),
|
|
'size': 12
|
|
}
|
|
]);
|
|
|
|
cards.push([
|
|
{
|
|
'card': new beestat.component.card.footer(),
|
|
'size': 12
|
|
}
|
|
]);
|
|
|
|
(new beestat.component.layout(cards)).render(parent);
|
|
};
|