mirror of
https://github.com/grocy/grocy.git
synced 2025-04-28 17:23:56 +00:00
184 lines
5.8 KiB
JavaScript
184 lines
5.8 KiB
JavaScript
var batteriesOverviewTable = $('#batteries-overview-table').DataTable({
|
|
'order': [[4, 'asc']],
|
|
'columnDefs': [
|
|
{ 'orderable': false, 'targets': 0 },
|
|
{ 'searchable': false, "targets": 0 },
|
|
{ "type": "html", "targets": 3 },
|
|
{ "type": "html", "targets": 4 }
|
|
].concat($.fn.dataTable.defaults.columnDefs)
|
|
});
|
|
$('#batteries-overview-table tbody').removeClass("d-none");
|
|
batteriesOverviewTable.columns.adjust().draw();
|
|
|
|
$("#search").on("keyup", Delay(function()
|
|
{
|
|
var value = $(this).val();
|
|
if (value === "all")
|
|
{
|
|
value = "";
|
|
}
|
|
|
|
batteriesOverviewTable.search(value).draw();
|
|
}, 200));
|
|
|
|
$("#clear-filter-button").on("click", function()
|
|
{
|
|
$("#search").val("");
|
|
$("#status-filter").val("all");
|
|
batteriesOverviewTable.column(batteriesOverviewTable.colReorder.transpose(5)).search("").draw();
|
|
batteriesOverviewTable.search("").draw();
|
|
});
|
|
|
|
$("#status-filter").on("change", function()
|
|
{
|
|
var value = $(this).val();
|
|
if (value === "all")
|
|
{
|
|
value = "";
|
|
}
|
|
|
|
// Transfer CSS classes of selected element to dropdown element (for background)
|
|
$(this).attr("class", $("#" + $(this).attr("id") + " option[value='" + value + "']").attr("class") + " form-control");
|
|
|
|
batteriesOverviewTable.column(batteriesOverviewTable.colReorder.transpose(5)).search(value).draw();
|
|
});
|
|
|
|
$(".status-filter-message").on("click", function()
|
|
{
|
|
var value = $(this).data("status-filter");
|
|
$("#status-filter").val(value);
|
|
$("#status-filter").trigger("change");
|
|
});
|
|
|
|
$(document).on('click', '.track-charge-cycle-button', function(e)
|
|
{
|
|
e.preventDefault();
|
|
|
|
// Remove the focus from the current button
|
|
// to prevent that the tooltip stays until clicked anywhere else
|
|
document.activeElement.blur();
|
|
|
|
Grocy.FrontendHelpers.BeginUiBusy();
|
|
|
|
var batteryId = $(e.currentTarget).attr('data-battery-id');
|
|
var batteryName = $(e.currentTarget).attr('data-battery-name');
|
|
var trackedTime = moment().format('YYYY-MM-DD HH:mm:ss');
|
|
|
|
Grocy.Api.Post('batteries/' + batteryId + '/charge', { 'tracked_time': trackedTime },
|
|
function()
|
|
{
|
|
Grocy.Api.Get('batteries/' + batteryId,
|
|
function(result)
|
|
{
|
|
var batteryRow = $('#battery-' + batteryId + '-row');
|
|
var nextXDaysThreshold = moment().add($("#info-due-soon-batteries").data("next-x-days"), "days");
|
|
var now = moment();
|
|
var nextExecutionTime = moment(result.next_estimated_charge_time);
|
|
|
|
batteryRow.removeClass("table-warning");
|
|
batteryRow.removeClass("table-danger");
|
|
if (nextExecutionTime.isBefore(now))
|
|
{
|
|
batteryRow.addClass("table-danger");
|
|
}
|
|
else if (nextExecutionTime.isBefore(nextXDaysThreshold))
|
|
{
|
|
batteryRow.addClass("table-warning");
|
|
}
|
|
|
|
animateCSS("#battery-" + batteryId + "-row td:not(:first)", "shake");
|
|
|
|
$('#battery-' + batteryId + '-last-tracked-time').text(trackedTime);
|
|
$('#battery-' + batteryId + '-last-tracked-time-timeago').attr('datetime', trackedTime);
|
|
if (result.battery.charge_interval_days != 0)
|
|
{
|
|
$('#battery-' + batteryId + '-next-charge-time').text(result.next_estimated_charge_time);
|
|
$('#battery-' + batteryId + '-next-charge-time-timeago').attr('datetime', result.next_estimated_charge_time);
|
|
}
|
|
|
|
Grocy.FrontendHelpers.EndUiBusy();
|
|
toastr.success(__t('Tracked charge cycle of battery %1$s on %2$s', batteryName, trackedTime));
|
|
RefreshContextualTimeago("#battery-" + batteryId + "-row");
|
|
RefreshStatistics();
|
|
},
|
|
function(xhr)
|
|
{
|
|
Grocy.FrontendHelpers.EndUiBusy();
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
},
|
|
function(xhr)
|
|
{
|
|
Grocy.FrontendHelpers.EndUiBusy();
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
});
|
|
|
|
$(document).on("click", ".battery-name-cell", function(e)
|
|
{
|
|
Grocy.Components.BatteryCard.Refresh($(e.currentTarget).attr("data-battery-id"));
|
|
$("#batteriesoverview-batterycard-modal").modal("show");
|
|
});
|
|
|
|
$(document).on('click', '.battery-grocycode-label-print', function(e)
|
|
{
|
|
e.preventDefault();
|
|
document.activeElement.blur();
|
|
|
|
var batteryId = $(e.currentTarget).attr('data-battery-id');
|
|
Grocy.Api.Get('batteries/' + batteryId + '/printlabel', function(labelData)
|
|
{
|
|
if (Grocy.Webhooks.labelprinter !== undefined)
|
|
{
|
|
Grocy.FrontendHelpers.RunWebhook(Grocy.Webhooks.labelprinter, labelData);
|
|
}
|
|
});
|
|
});
|
|
|
|
function RefreshStatistics()
|
|
{
|
|
var nextXDays = $("#info-due-soon-batteries").data("next-x-days");
|
|
Grocy.Api.Get('batteries',
|
|
function(result)
|
|
{
|
|
var dueTodayCount = 0;
|
|
var dueSoonCount = 0;
|
|
var overdueCount = 0;
|
|
var overdueThreshold = moment();
|
|
var nextXDaysThreshold = moment().add(nextXDays, "days");
|
|
var todayThreshold = moment().endOf("day");
|
|
|
|
result.forEach(element =>
|
|
{
|
|
var date = moment(element.next_estimated_charge_time);
|
|
|
|
if (date.isBefore(overdueThreshold))
|
|
{
|
|
overdueCount++;
|
|
}
|
|
else if (date.isSameOrBefore(todayThreshold))
|
|
{
|
|
dueTodayCount++;
|
|
dueSoonCount++;
|
|
}
|
|
else if (date.isSameOrBefore(nextXDaysThreshold))
|
|
{
|
|
dueSoonCount++;
|
|
}
|
|
});
|
|
|
|
$("#info-due-today-batteries").html('<span class="d-block d-md-none">' + dueTodayCount + ' <i class="fa-solid fa-clock"></i></span><span class="d-none d-md-block">' + __n(dueTodayCount, '%s battery is due to be charged today', '%s batteries are due to be charged today'));
|
|
$("#info-due-soon-batteries").html('<span class="d-block d-md-none">' + dueSoonCount + ' <i class="fa-solid fa-clock"></i></span><span class="d-none d-md-block">' + __n(dueSoonCount, '%s battery is due to be charged', '%s batteries are due to be charged') + ' ' + __n(nextXDays, 'within the next day', 'within the next %s days'));
|
|
$("#info-overdue-batteries").html('<span class="d-block d-md-none">' + overdueCount + ' <i class="fa-solid fa-times-circle"></i></span><span class="d-none d-md-block">' + __n(overdueCount, '%s battery is overdue to be charged', '%s batteries are overdue to be charged'));
|
|
},
|
|
function(xhr)
|
|
{
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
}
|
|
|
|
RefreshStatistics();
|