mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 01:32:38 +00:00
* Added 'category' filter to tasks view. * Remove extraneous css attributes. * Applied code style rules * Use correct column * Task categories are not something that is translated... * Added "Uncategorized" as additional filter option --------- Co-authored-by: Bernd Bestel <bernd@berrnd.de>
237 lines
5.9 KiB
JavaScript
237 lines
5.9 KiB
JavaScript
var tasksTable = $('#tasks-table').DataTable({
|
|
'order': [[2, 'asc']],
|
|
'columnDefs': [
|
|
{ 'orderable': false, 'targets': 0 },
|
|
{ 'searchable': false, "targets": 0 },
|
|
{ "type": "html", "targets": 2 }
|
|
].concat($.fn.dataTable.defaults.columnDefs)
|
|
});
|
|
$('#tasks-table tbody').removeClass("d-none");
|
|
tasksTable.columns.adjust().draw();
|
|
|
|
$("#search").on("keyup", Delay(function()
|
|
{
|
|
var value = $(this).val();
|
|
if (value === "all")
|
|
{
|
|
value = "";
|
|
}
|
|
|
|
tasksTable.search(value).draw();
|
|
}, 200));
|
|
|
|
$("#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");
|
|
|
|
tasksTable.column(tasksTable.colReorder.transpose(5)).search(value).draw();
|
|
});
|
|
|
|
$("#category-filter").on("change", function()
|
|
{
|
|
var value = $(this).val();
|
|
if (value === "all")
|
|
{
|
|
value = "";
|
|
}
|
|
|
|
tasksTable.column(tasksTable.colReorder.transpose(3)).search(value).draw();
|
|
});
|
|
|
|
$("#clear-filter-button").on("click", function()
|
|
{
|
|
$("#search").val("");
|
|
$("#status-filter").val("all");
|
|
$("#category-filter").val("all");
|
|
$("#search").trigger("keyup");
|
|
$("#status-filter").trigger("change");
|
|
$("#category-filter").trigger("change");
|
|
$("#show-done-tasks").trigger('checked', false);
|
|
});
|
|
|
|
$(".status-filter-message").on("click", function()
|
|
{
|
|
var value = $(this).data("status-filter");
|
|
$("#status-filter").val(value);
|
|
$("#status-filter").trigger("change");
|
|
});
|
|
|
|
$(document).on('click', '.do-task-button', function(e)
|
|
{
|
|
e.preventDefault();
|
|
|
|
$(".tooltip").tooltip("hide");
|
|
|
|
Grocy.FrontendHelpers.BeginUiBusy();
|
|
|
|
var taskId = $(e.currentTarget).attr('data-task-id');
|
|
var taskName = $(e.currentTarget).attr('data-task-name');
|
|
var doneTime = moment().format('YYYY-MM-DD HH:mm:ss');
|
|
|
|
Grocy.Api.Post('tasks/' + taskId + '/complete', { 'done_time': doneTime },
|
|
function()
|
|
{
|
|
if (!$("#show-done-tasks").is(":checked"))
|
|
{
|
|
animateCSS("#task-" + taskId + "-row", "fadeOut", function()
|
|
{
|
|
$("#task-" + taskId + "-row").tooltip("hide");
|
|
$("#task-" + taskId + "-row").remove();
|
|
});
|
|
}
|
|
else
|
|
{
|
|
$('#task-' + taskId + '-row').addClass("text-muted");
|
|
$('#task-' + taskId + '-name').addClass("text-strike-through");
|
|
$('.do-task-button[data-task-id="' + taskId + '"]').addClass("disabled");
|
|
}
|
|
|
|
Grocy.FrontendHelpers.EndUiBusy();
|
|
toastr.success(__t('Marked task %s as completed on %s', taskName, doneTime));
|
|
RefreshContextualTimeago("#task-" + taskId + "-row");
|
|
RefreshStatistics();
|
|
},
|
|
function(xhr)
|
|
{
|
|
Grocy.FrontendHelpers.EndUiBusy();
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
});
|
|
|
|
$(document).on('click', '.undo-task-button', function(e)
|
|
{
|
|
e.preventDefault();
|
|
|
|
$(".tooltip").tooltip("hide");
|
|
|
|
Grocy.FrontendHelpers.BeginUiBusy();
|
|
|
|
var taskId = $(e.currentTarget).attr('data-task-id');
|
|
var taskName = $(e.currentTarget).attr('data-task-name');
|
|
|
|
Grocy.Api.Post('tasks/' + taskId + '/undo', {},
|
|
function()
|
|
{
|
|
window.location.reload();
|
|
},
|
|
function(xhr)
|
|
{
|
|
Grocy.FrontendHelpers.EndUiBusy();
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
});
|
|
|
|
$(document).on('click', '.delete-task-button', function(e)
|
|
{
|
|
e.preventDefault();
|
|
|
|
var objectName = $(e.currentTarget).attr('data-task-name');
|
|
var objectId = $(e.currentTarget).attr('data-task-id');
|
|
|
|
bootbox.confirm({
|
|
message: __t('Are you sure to delete task "%s"?', objectName),
|
|
closeButton: false,
|
|
buttons: {
|
|
confirm: {
|
|
label: __t('Yes'),
|
|
className: 'btn-success'
|
|
},
|
|
cancel: {
|
|
label: __t('No'),
|
|
className: 'btn-danger'
|
|
}
|
|
},
|
|
callback: function(result)
|
|
{
|
|
if (result === true)
|
|
{
|
|
Grocy.Api.Delete('objects/tasks/' + objectId, {},
|
|
function(result)
|
|
{
|
|
animateCSS("#task-" + objectId + "-row", "fadeOut", function()
|
|
{
|
|
$("#task-" + objectId + "-row").tooltip("hide");
|
|
$("#task-" + objectId + "-row").remove();
|
|
});
|
|
},
|
|
function(xhr)
|
|
{
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
$("#show-done-tasks").change(function()
|
|
{
|
|
if (this.checked)
|
|
{
|
|
window.location.href = U('/tasks?include_done');
|
|
}
|
|
else
|
|
{
|
|
window.location.href = U('/tasks');
|
|
}
|
|
});
|
|
|
|
if (GetUriParam('include_done'))
|
|
{
|
|
$("#show-done-tasks").prop('checked', true);
|
|
}
|
|
|
|
function RefreshStatistics()
|
|
{
|
|
var nextXDays = $("#info-due-soon-tasks").data("next-x-days");
|
|
Grocy.Api.Get('tasks',
|
|
function(result)
|
|
{
|
|
var dueTodayCount = 0;
|
|
var dueSoonCount = 0;
|
|
var overdueCount = 0;
|
|
var overdueThreshold = moment().subtract(1, "days").endOf("day");
|
|
var nextXDaysThreshold = moment().endOf("day").add(nextXDays, "days");
|
|
var todayThreshold = moment().endOf("day");
|
|
|
|
result.forEach(element =>
|
|
{
|
|
var date = moment(element.due_date + " 23:59:59").endOf("day");
|
|
|
|
if (date.isSameOrBefore(overdueThreshold))
|
|
{
|
|
overdueCount++;
|
|
}
|
|
else if (date.isSameOrBefore(todayThreshold))
|
|
{
|
|
dueTodayCount++;
|
|
dueSoonCount++;
|
|
}
|
|
else if (date.isSameOrBefore(nextXDaysThreshold))
|
|
{
|
|
dueSoonCount++;
|
|
}
|
|
});
|
|
|
|
$("#info-due-today-tasks").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 task is due to be done today', '%s tasks are due to be done today'));
|
|
$("#info-due-soon-tasks").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 task is due to be done', '%s tasks are due to be done') + ' ' + __n(nextXDays, 'within the next day', 'within the next %s days'));
|
|
$("#info-overdue-tasks").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 task is overdue to be done', '%s tasks are overdue to be done'));
|
|
},
|
|
function(xhr)
|
|
{
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
}
|
|
|
|
RefreshStatistics();
|