mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-07 13:41:15 -07:00
580 lines
25 KiB
JavaScript
580 lines
25 KiB
JavaScript
var date_format = 'YYYY-MM-DD';
|
|
var time_format = 'hh:mm a';
|
|
var history_to_delete = [];
|
|
|
|
$.ajax({
|
|
url: 'get_date_formats',
|
|
type: 'GET',
|
|
success: function(data) {
|
|
date_format = data.date_format;
|
|
time_format = data.time_format;
|
|
}
|
|
});
|
|
|
|
history_table_options = {
|
|
"destroy": true,
|
|
"language": {
|
|
"search": "Search: ",
|
|
"lengthMenu":"Show _MENU_ entries per page",
|
|
"info":"Showing _START_ to _END_ of _TOTAL_ history items",
|
|
"infoEmpty":"Showing 0 to 0 of 0 entries",
|
|
"infoFiltered":"(filtered from _MAX_ total entries)",
|
|
"emptyTable": "No data in table"
|
|
},
|
|
"pagingType": "bootstrap",
|
|
"stateSave": true,
|
|
"processing": false,
|
|
"serverSide": true,
|
|
"pageLength": 25,
|
|
"order": [ 1, 'desc'],
|
|
"autoWidth": false,
|
|
"columnDefs": [
|
|
{
|
|
"targets": [0],
|
|
"data": null,
|
|
"createdCell": function (td, cellData, rowData, row, col) {
|
|
$(td).html('<button class="btn btn-xs btn-warning" data-id="' + rowData['id'] + '"><i class="fa fa-trash-o fa-fw"></i> Delete</button>');
|
|
},
|
|
"width": "5%",
|
|
"className": "delete-control no-wrap hidden",
|
|
"searchable": false,
|
|
"orderable": false
|
|
},
|
|
{
|
|
"targets": [1],
|
|
"data":"date",
|
|
"createdCell": function (td, cellData, rowData, row, col) {
|
|
if (rowData['stopped'] === null) {
|
|
$(td).html('Currently watching...');
|
|
} else if (rowData['group_count'] > 1) {
|
|
date = moment(cellData, "X").format(date_format);
|
|
expand_history = '<span class="expand-history-tooltip" data-toggle="tooltip" title="Show Detailed History"><i class="fa fa-plus-circle fa-fw"></i></span>';
|
|
$(td).html('<div><a href="#"><div style="float: left;">' + expand_history + ' ' + date + '</div></a></div>');
|
|
} else {
|
|
date = moment(cellData, "X").format(date_format);
|
|
$(td).html('<div style="float: left;"><i class="fa fa-fw"></i> ' + date + '</div>');
|
|
}
|
|
},
|
|
"searchable": false,
|
|
"width": "8%",
|
|
"className": "no-wrap expand-history"
|
|
},
|
|
{
|
|
"targets": [2],
|
|
"data":"friendly_name",
|
|
"createdCell": function (td, cellData, rowData, row, col) {
|
|
if (cellData !== '') {
|
|
if (rowData['user_id']) {
|
|
$(td).html('<a href="user?user_id=' + rowData['user_id'] + '">' + cellData + '</a>');
|
|
} else {
|
|
$(td).html('<a href="user?user=' + rowData['user'] + '">' + cellData + '</a>');
|
|
}
|
|
} else {
|
|
$(td).html(cellData);
|
|
}
|
|
},
|
|
"width": "8%",
|
|
"className": "no-wrap hidden-xs"
|
|
},
|
|
{
|
|
"targets": [3],
|
|
"data": "ip_address",
|
|
"createdCell": function (td, cellData, rowData, row, col) {
|
|
if (cellData) {
|
|
if (isPrivateIP(cellData)) {
|
|
if (cellData != '') {
|
|
$(td).html(cellData);
|
|
} else {
|
|
$(td).html('n/a');
|
|
}
|
|
} else {
|
|
external_ip = '<span class="external-ip-tooltip" data-toggle="tooltip" title="External IP"><i class="fa fa-map-marker fa-fw"></i></span>';
|
|
$(td).html('<a href="javascript:void(0)" data-toggle="modal" data-target="#ip-info-modal">'+ external_ip + cellData + '</a>');
|
|
}
|
|
} else {
|
|
$(td).html('n/a');
|
|
}
|
|
},
|
|
"width": "8%",
|
|
"className": "no-wrap hidden-md hidden-sm hidden-xs modal-control-ip"
|
|
},
|
|
{
|
|
"targets": [4],
|
|
"data":"platform",
|
|
"createdCell": function (td, cellData, rowData, row, col) {
|
|
if (cellData !== '') {
|
|
$(td).html(cellData);
|
|
}
|
|
},
|
|
"width": "8%",
|
|
"className": "no-wrap hidden-md hidden-sm hidden-xs modal-control"
|
|
},
|
|
{
|
|
"targets": [5],
|
|
"data": "player",
|
|
"createdCell": function (td, cellData, rowData, row, col) {
|
|
if (cellData !== '') {
|
|
var transcode_dec = '';
|
|
if (rowData['video_decision'] === 'transcode' || rowData['audio_decision'] === 'transcode') {
|
|
transcode_dec = '<span class="transcode-tooltip" data-toggle="tooltip" title="Transcode"><i class="fa fa-server fa-fw"></i></span>';
|
|
} else if (rowData['video_decision'] === 'copy' || rowData['audio_decision'] === 'copy') {
|
|
transcode_dec = '<span class="transcode-tooltip" data-toggle="tooltip" title="Direct Stream"><i class="fa fa-video-camera fa-fw"></i></span>';
|
|
} else if (rowData['video_decision'] === 'direct play' || rowData['audio_decision'] === 'direct play') {
|
|
transcode_dec = '<span class="transcode-tooltip" data-toggle="tooltip" title="Direct Play"><i class="fa fa-play-circle fa-fw"></i></span>';
|
|
}
|
|
$(td).html('<div><a href="#" data-target="#info-modal" data-toggle="modal"><div style="float: left;">' + transcode_dec + ' ' + cellData + '</div></a></div>');
|
|
}
|
|
},
|
|
"width": "12%",
|
|
"className": "no-wrap hidden-md hidden-sm hidden-xs modal-control"
|
|
},
|
|
{
|
|
"targets": [6],
|
|
"data":"full_title",
|
|
"createdCell": function (td, cellData, rowData, row, col) {
|
|
if (cellData !== '') {
|
|
var media_type = '';
|
|
var thumb_popover = '';
|
|
if (rowData['media_type'] === 'movie') {
|
|
media_type = '<span class="media-type-tooltip" data-toggle="tooltip" title="Movie"><i class="fa fa-film fa-fw"></i></span>';
|
|
thumb_popover = '<span class="thumb-tooltip" data-toggle="popover" data-img="pms_image_proxy?img=' + rowData['thumb'] + '&width=300&height=450&fallback=poster" data-height="120">' + cellData + ' (' + rowData['year'] + ')</span>'
|
|
$(td).html('<div class="history-title"><a href="info?source=history&item_id=' + rowData['id'] + '"><div style="float: left;">' + media_type + ' ' + thumb_popover + '</div></a></div>');
|
|
} else if (rowData['media_type'] === 'episode') {
|
|
media_type = '<span class="media-type-tooltip" data-toggle="tooltip" title="Episode"><i class="fa fa-television fa-fw"></i></span>';
|
|
thumb_popover = '<span class="thumb-tooltip" data-toggle="popover" data-img="pms_image_proxy?img=' + rowData['thumb'] + '&width=300&height=450&fallback=poster" data-height="120">' + cellData + ' \
|
|
(S' + rowData['parent_media_index'] + '· E' + rowData['media_index'] + ')</span>'
|
|
$(td).html('<div class="history-title"><a href="info?source=history&item_id=' + rowData['id'] + '"><div style="float: left;" >' + media_type + ' ' + thumb_popover + '</div></a></div>');
|
|
} else if (rowData['media_type'] === 'track') {
|
|
media_type = '<span class="media-type-tooltip" data-toggle="tooltip" title="Track"><i class="fa fa-music fa-fw"></i></span>';
|
|
thumb_popover = '<span class="thumb-tooltip" data-toggle="popover" data-img="pms_image_proxy?img=' + rowData['thumb'] + '&width=300&height=300&fallback=poster" data-height="80">' + cellData + ' (' + rowData['parent_title'] + ')</span>'
|
|
$(td).html('<div class="history-title"><a href="info?source=history&item_id=' + rowData['id'] + '"><div style="float: left;">' + media_type + ' ' + thumb_popover + '</div></a></div>');
|
|
} else {
|
|
$(td).html('<a href="info?item_id=' + rowData['id'] + '">' + cellData + '</a>');
|
|
}
|
|
}
|
|
},
|
|
"width": "35%"
|
|
},
|
|
{
|
|
"targets": [7],
|
|
"data":"started",
|
|
"createdCell": function (td, cellData, rowData, row, col) {
|
|
if (cellData === null) {
|
|
$(td).html('n/a');
|
|
} else {
|
|
$(td).html(moment(cellData,"X").format(time_format));
|
|
}
|
|
},
|
|
"searchable": false,
|
|
"width": "5%",
|
|
"className": "no-wrap hidden-sm hidden-xs"
|
|
},
|
|
{
|
|
"targets": [8],
|
|
"data":"paused_counter",
|
|
"render": function (data, type, full) {
|
|
if (data !== null) {
|
|
return Math.round(moment.duration(data, 'seconds').as('minutes')) + ' mins';
|
|
} else {
|
|
return '0 mins';
|
|
}
|
|
},
|
|
"searchable": false,
|
|
"width": "5%",
|
|
"className": "no-wrap hidden-md hidden-sm hidden-xs"
|
|
},
|
|
{
|
|
"targets": [9],
|
|
"data":"stopped",
|
|
"createdCell": function (td, cellData, rowData, row, col) {
|
|
if (cellData === null) {
|
|
$(td).html('n/a');
|
|
} else {
|
|
$(td).html(moment(cellData,"X").format(time_format));
|
|
}
|
|
},
|
|
"searchable": false,
|
|
"width": "5%",
|
|
"className": "no-wrap hidden-sm hidden-xs"
|
|
},
|
|
{
|
|
"targets": [10],
|
|
"data":"duration",
|
|
"render": function (data, type, full) {
|
|
if (data !== null) {
|
|
return Math.round(moment.duration(data, 'seconds').as('minutes')) + ' mins';
|
|
} else {
|
|
return data;
|
|
}
|
|
},
|
|
"searchable": false,
|
|
"width": "5%",
|
|
"className": "no-wrap hidden-xs"
|
|
},
|
|
{
|
|
"targets": [11],
|
|
"data": "watched_status",
|
|
"createdCell": function (td, cellData, rowData, row, col) {
|
|
if (cellData == 1) {
|
|
$(td).html('<span class="watched-tooltip" data-toggle="tooltip" title="' + rowData['percent_complete'] + '%"><i class="fa fa-lg fa-circle"></i></span>');
|
|
} else if (cellData == 0.5) {
|
|
$(td).html('<span class="watched-tooltip" data-toggle="tooltip" title="' + rowData['percent_complete'] + '%"><i class="fa fa-lg fa-adjust fa-rotate-180"></i></span>');
|
|
} else {
|
|
$(td).html('<span class="watched-tooltip" data-toggle="tooltip" title="' + rowData['percent_complete'] + '%"><i class="fa fa-lg fa-circle-o"></i></span>');
|
|
}
|
|
},
|
|
"searchable": false,
|
|
"orderable": false,
|
|
"className": "no-wrap hidden-md hidden-sm hidden-xs",
|
|
"width": "1%"
|
|
},
|
|
],
|
|
"drawCallback": function (settings) {
|
|
// Jump to top of page
|
|
// $('html,body').scrollTop(0);
|
|
$('#ajaxMsg').fadeOut();
|
|
|
|
// Create the tooltips.
|
|
$('.expand-history-tooltip').tooltip({ container: 'body' });
|
|
$('.external-ip-tooltip').tooltip({ container: 'body' });
|
|
$('.transcode-tooltip').tooltip({ container: 'body' });
|
|
$('.media-type-tooltip').tooltip({ container: 'body' });
|
|
$('.watched-tooltip').tooltip({ container: 'body' });
|
|
$('.thumb-tooltip').popover({
|
|
html: true,
|
|
container: 'body',
|
|
trigger: 'hover',
|
|
placement: 'right',
|
|
content: function () {
|
|
return '<div class="history-thumbnail" style="background-image: url(' + $(this).data('img') + '); height: ' + $(this).data('height') + 'px;" />';
|
|
}
|
|
});
|
|
|
|
if ($('#row-edit-mode').hasClass('active')) {
|
|
$('.delete-control').each(function () {
|
|
$(this).removeClass('hidden');
|
|
});
|
|
}
|
|
|
|
history_table.rows().every(function () {
|
|
var rowData = this.data();
|
|
if (rowData['group_count'] != 1 && rowData['reference_id'] in history_child_table) {
|
|
// if grouped row and a child table was already created
|
|
$(this.node()).find('i.fa').toggleClass('fa-plus-circle').toggleClass('fa-minus-circle');
|
|
this.child(childTableFormat(rowData)).show();
|
|
createChildTable(this, rowData)
|
|
}
|
|
});
|
|
},
|
|
"preDrawCallback": function(settings) {
|
|
var msg = "<i class='fa fa-refresh fa-spin'></i> Fetching rows...";
|
|
showMsg(msg, false, false, 0)
|
|
},
|
|
"rowCallback": function (row, rowData, rowIndex) {
|
|
if (rowData['group_count'] == 1) {
|
|
// if no grouped rows simply toggle the delete button
|
|
if ($.inArray(rowData['id'], history_to_delete) !== -1) {
|
|
$(row).find('button[data-id="' + rowData['id'] + '"]').toggleClass('btn-warning').toggleClass('btn-danger');
|
|
}
|
|
} else {
|
|
// if grouped rows
|
|
// toggle the parent button to danger
|
|
$(row).find('button[data-id="' + rowData['id'] + '"]').toggleClass('btn-warning').toggleClass('btn-danger');
|
|
// check if any child rows are not selected
|
|
var group_ids = rowData['group_ids'].split(',').map(Number);
|
|
group_ids.forEach(function (id) {
|
|
var index = $.inArray(id, history_to_delete);
|
|
if (index == -1) {
|
|
$(row).find('button[data-id="' + rowData['id'] + '"]').addClass('btn-warning').removeClass('btn-danger');
|
|
}
|
|
});
|
|
}
|
|
|
|
if (rowData['group_count'] != 1 && rowData['reference_id'] in history_child_table) {
|
|
// if grouped row and a child table was already created
|
|
$(row).addClass('shown')
|
|
history_table.row(row).child(childTableFormat(rowData)).show();
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
// Parent table platform modal
|
|
$('#history_table').on('click', '> tbody > tr > td.modal-control', function () {
|
|
var tr = $(this).closest('tr');
|
|
var row = history_table.row( tr );
|
|
var rowData = row.data();
|
|
|
|
function showStreamDetails() {
|
|
$.ajax({
|
|
url: 'get_stream_data',
|
|
data: {row_id: rowData['id'], user: rowData['friendly_name']},
|
|
cache: false,
|
|
async: true,
|
|
complete: function(xhr, status) {
|
|
$("#info-modal").html(xhr.responseText);
|
|
}
|
|
});
|
|
}
|
|
showStreamDetails();
|
|
});
|
|
|
|
// Parent table ip address modal
|
|
$('#history_table').on('click', '> tbody > tr > td.modal-control-ip', function () {
|
|
var tr = $(this).closest('tr');
|
|
var row = history_table.row( tr );
|
|
var rowData = row.data();
|
|
|
|
function getUserLocation(ip_address) {
|
|
if (isPrivateIP(ip_address)) {
|
|
return "n/a"
|
|
} else {
|
|
$.ajax({
|
|
url: 'get_ip_address_details',
|
|
data: {ip_address: ip_address},
|
|
async: true,
|
|
complete: function(xhr, status) {
|
|
$("#ip-info-modal").html(xhr.responseText);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
getUserLocation(rowData['ip_address']);
|
|
});
|
|
|
|
// Parent table delete mode
|
|
$('#history_table').on('click', '> tbody > tr > td.delete-control > button', function () {
|
|
var tr = $(this).closest('tr');
|
|
var row = history_table.row( tr );
|
|
var rowData = row.data();
|
|
|
|
if (rowData['group_count'] == 1) {
|
|
// if no grouped rows simply add or remove row from history_to_delete
|
|
var index = $.inArray(rowData['id'], history_to_delete);
|
|
if (index === -1) {
|
|
history_to_delete.push(rowData['id']);
|
|
} else {
|
|
history_to_delete.splice(index, 1);
|
|
}
|
|
$(this).toggleClass('btn-warning').toggleClass('btn-danger');
|
|
} else {
|
|
// if grouped rows
|
|
if ($(this).hasClass('btn-warning')) {
|
|
// add all grouped rows to history_to_delete
|
|
var group_ids = rowData['group_ids'].split(',').map(Number);
|
|
group_ids.forEach(function (id) {
|
|
var index = $.inArray(id, history_to_delete);
|
|
if (index == -1) {
|
|
history_to_delete.push(id);
|
|
}
|
|
});
|
|
$(this).toggleClass('btn-warning').toggleClass('btn-danger');
|
|
if (row.child.isShown()) {
|
|
// if child table is visible, toggle all child buttons to danger
|
|
tr.next().find('td.delete-control > button.btn-warning').toggleClass('btn-warning').toggleClass('btn-danger');
|
|
}
|
|
} else {
|
|
// remove all grouped rows to history_to_delete
|
|
var group_ids = rowData['group_ids'].split(',').map(Number);
|
|
group_ids.forEach(function (id) {
|
|
var index = $.inArray(id, history_to_delete);
|
|
if (index != -1) {
|
|
history_to_delete.splice(index, 1);
|
|
}
|
|
});
|
|
$(this).toggleClass('btn-warning').toggleClass('btn-danger');
|
|
if (row.child.isShown()) {
|
|
// if child table is visible, toggle all child buttons to warning
|
|
tr.next().find('td.delete-control > button.btn-danger').toggleClass('btn-warning').toggleClass('btn-danger');
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
// Parent table expand detailed history
|
|
$('#history_table').on('click', '> tbody > tr > td.expand-history a', function () {
|
|
var tr = $(this).closest('tr');
|
|
var row = history_table.row(tr);
|
|
var rowData = row.data();
|
|
|
|
$(this).find('i.fa').toggleClass('fa-plus-circle').toggleClass('fa-minus-circle');
|
|
|
|
if (row.child.isShown()) {
|
|
$('div.slider', row.child()).slideUp(function () {
|
|
row.child.hide();
|
|
tr.removeClass('shown');
|
|
delete history_child_table[rowData['reference_id']];
|
|
});
|
|
} else {
|
|
tr.addClass('shown');
|
|
row.child(childTableFormat(rowData)).show();
|
|
createChildTable(row, rowData);
|
|
}
|
|
});
|
|
|
|
|
|
// Initialize the detailed history child table options using the parent table options
|
|
function childTableOptions(rowData) {
|
|
history_child_options = history_table_options;
|
|
// Remove settings that are not necessary
|
|
history_child_options.searching = false;
|
|
history_child_options.lengthChange = false;
|
|
history_child_options.info = false;
|
|
history_child_options.pageLength = 10;
|
|
history_child_options.bStateSave = false;
|
|
history_child_options.ajax = {
|
|
"url": "get_history",
|
|
type: "post",
|
|
data: function (d) {
|
|
return {
|
|
'json_data': JSON.stringify(d),
|
|
'grouping': false,
|
|
'reference_id': rowData['reference_id']
|
|
};
|
|
}
|
|
}
|
|
history_child_options.fnDrawCallback = function (settings) {
|
|
$('#ajaxMsg').fadeOut();
|
|
|
|
// Create the tooltips.
|
|
$('.expand-history-tooltip').tooltip({ container: 'body' });
|
|
$('.external-ip-tooltip').tooltip();
|
|
$('.transcode-tooltip').tooltip();
|
|
$('.media-type-tooltip').tooltip();
|
|
$('.watched-tooltip').tooltip();
|
|
$('.thumb-tooltip').popover({
|
|
html: true,
|
|
trigger: 'hover',
|
|
placement: 'right',
|
|
content: function () {
|
|
return '<div class="history-thumbnail" style="background-image: url(' + $(this).data('img') + '); height: ' + $(this).data('height') + 'px;" />';
|
|
}
|
|
});
|
|
|
|
if ($('#row-edit-mode').hasClass('active')) {
|
|
$('.delete-control').each(function () {
|
|
$(this).removeClass('hidden');
|
|
});
|
|
}
|
|
|
|
$(this).closest('div.slider').slideDown();
|
|
}
|
|
|
|
return history_child_options;
|
|
}
|
|
|
|
// Format the detailed history child table
|
|
function childTableFormat(rowData) {
|
|
return '<div class="slider">' +
|
|
'<table id="history_child-' + rowData['reference_id'] + '">' +
|
|
'<thead>' +
|
|
'<tr>' +
|
|
'<th align="left" id="delete_row">Delete</th>' +
|
|
'<th align="left" id="time">Time</th>' +
|
|
'<th align="left" id="friendly_name">User</th>' +
|
|
'<th align="left" id="ip_address">IP Address</th>' +
|
|
'<th align="left" id="platform">Platform</th>' +
|
|
'<th align="left" id="platform">Player</th>' +
|
|
'<th align="left" id="title">Title</th>' +
|
|
'<th align="left" id="started">Started</th>' +
|
|
'<th align="left" id="paused_counter">Paused</th>' +
|
|
'<th align="left" id="stopped">Stopped</th>' +
|
|
'<th align="left" id="duration">Duration</th>' +
|
|
'<th align="left" id="percent_complete"></th>' +
|
|
'</tr>' +
|
|
'</thead>' +
|
|
'<tbody>' +
|
|
'</tbody>' +
|
|
'</table>' +
|
|
'</div>';
|
|
}
|
|
|
|
// Create the detailed history child table
|
|
history_child_table = {};
|
|
function createChildTable(row, rowData) {
|
|
history_child_options = childTableOptions(rowData);
|
|
// initialize the child table
|
|
history_child_table[rowData['reference_id']] = $('#history_child-' + rowData['reference_id']).DataTable(history_child_options);
|
|
|
|
// Set child table column visibility to match parent table
|
|
var visibility = history_table.columns().visible();
|
|
for (var i = 0; i < visibility.length; i++) {
|
|
if (!(visibility[i])) { history_child_table[rowData['reference_id']].column(i).visible(visibility[i]); }
|
|
}
|
|
history_table.on('column-visibility', function (e, settings, colIdx, visibility) {
|
|
if (row.child.isShown()) {
|
|
history_child_table[rowData['reference_id']].column(colIdx).visible(visibility);
|
|
}
|
|
});
|
|
|
|
// Child table platform modal
|
|
$('#history_child-' + rowData['reference_id']).on('click', 'td.modal-control', function () {
|
|
var tr = $(this).closest('tr');
|
|
var childRow = history_child_table[rowData['reference_id']].row(tr);
|
|
var childRowData = childRow.data();
|
|
|
|
function showStreamDetails() {
|
|
$.ajax({
|
|
url: 'get_stream_data',
|
|
data: { row_id: childRowData['id'], user: childRowData['friendly_name'] },
|
|
cache: false,
|
|
async: true,
|
|
complete: function (xhr, status) {
|
|
$("#info-modal").html(xhr.responseText);
|
|
}
|
|
});
|
|
}
|
|
showStreamDetails();
|
|
});
|
|
|
|
// Child table ip address modal
|
|
$('#history_child-' + rowData['reference_id']).on('click', 'td.modal-control-ip', function () {
|
|
var tr = $(this).closest('tr');
|
|
var childRow = history_child_table[rowData['reference_id']].row(tr);
|
|
var childRowData = childRow.data();
|
|
|
|
function getUserLocation(ip_address) {
|
|
if (isPrivateIP(ip_address)) {
|
|
return "n/a"
|
|
} else {
|
|
$.ajax({
|
|
url: 'get_ip_address_details',
|
|
data: { ip_address: ip_address },
|
|
async: true,
|
|
complete: function (xhr, status) {
|
|
$("#ip-info-modal").html(xhr.responseText);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
getUserLocation(childRowData['ip_address']);
|
|
});
|
|
|
|
// Child table delete mode
|
|
$('#history_child-' + rowData['reference_id']).on('click', 'td.delete-control > button', function () {
|
|
var tr = $(this).closest('tr');
|
|
var childRow = history_child_table[rowData['reference_id']].row(tr);
|
|
var childRowData = childRow.data();
|
|
|
|
// add or remove row from history_to_delete
|
|
var index = $.inArray(childRowData['id'], history_to_delete);
|
|
if (index === -1) {
|
|
history_to_delete.push(childRowData['id']);
|
|
} else {
|
|
history_to_delete.splice(index, 1);
|
|
}
|
|
$(this).toggleClass('btn-warning').toggleClass('btn-danger');
|
|
|
|
tr.parents('tr').prev().find('td.delete-control > button.btn-warning').toggleClass('btn-warning').toggleClass('btn-danger');
|
|
// check if any child rows are not selected
|
|
var group_ids = rowData['group_ids'].split(',').map(Number);
|
|
group_ids.forEach(function (id) {
|
|
var index = $.inArray(id, history_to_delete);
|
|
if (index == -1) {
|
|
// if any child row is not selected, toggle parent button to warning
|
|
tr.parents('tr').prev().find('td.delete-control > button.btn-danger').addClass('btn-warning').removeClass('btn-danger');
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|