mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-13 00:32:58 -07:00
Also remember state on user history and info pages
This commit is contained in:
parent
41c94741e2
commit
af85d36762
2 changed files with 14 additions and 20 deletions
|
@ -185,7 +185,7 @@ DOCUMENTATION :: END
|
||||||
<span>Watch History for <strong>${data['title']}</strong></span>
|
<span>Watch History for <strong>${data['title']}</strong></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="button-bar">
|
<div class="button-bar">
|
||||||
<span data-toggle="popover" data-placement="left" data-content="Data deleting does not occur until after exiting delete mode." id="delete-message">
|
<span data-toggle="popover" data-placement="left" data-content="Select rows to delete. Data is deleted upon exiting delete mode." id="delete-message">
|
||||||
<button class="btn btn-danger" data-toggle="button" aria-pressed="false" autocomplete="off" id="row-edit-mode">
|
<button class="btn btn-danger" data-toggle="button" aria-pressed="false" autocomplete="off" id="row-edit-mode">
|
||||||
<i class="fa fa-trash-o"></i> Delete mode
|
<i class="fa fa-trash-o"></i> Delete mode
|
||||||
</button> 
|
</button> 
|
||||||
|
@ -226,7 +226,7 @@ DOCUMENTATION :: END
|
||||||
<h4 class="modal-title" id="myModalLabel">Confirm Delete</h4>
|
<h4 class="modal-title" id="myModalLabel">Confirm Delete</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body" style="text-align: center;">
|
<div class="modal-body" style="text-align: center;">
|
||||||
<p>Are you REALLY sure you want to delete this history?</p>
|
<p>Are you REALLY sure you want to delete <strong><span id="deleteCount"></span></strong> history item(s)?</p>
|
||||||
<p>This is permanent and cannot be undone!</p>
|
<p>This is permanent and cannot be undone!</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
|
@ -303,22 +303,18 @@ DOCUMENTATION :: END
|
||||||
|
|
||||||
clearSearchButton('history_table', history_table);
|
clearSearchButton('history_table', history_table);
|
||||||
|
|
||||||
var history_to_purge = [];
|
|
||||||
$('#row-edit-mode').on('click', function() {
|
$('#row-edit-mode').on('click', function() {
|
||||||
$('#delete-message').popover();
|
$('#delete-message').popover();
|
||||||
|
|
||||||
if ($(this).hasClass('active')) {
|
if ($(this).hasClass('active')) {
|
||||||
history_to_purge = [];
|
if (history_to_delete.length > 0) {
|
||||||
$('.delete-control button.btn-danger').map(function () {
|
$('#deleteCount').text(history_to_delete.length);
|
||||||
history_to_purge.push($(this).attr('data-id'));
|
|
||||||
});
|
|
||||||
if (history_to_purge.length > 0) {
|
|
||||||
$('#confirm-modal').modal();
|
$('#confirm-modal').modal();
|
||||||
$('#confirm-modal').one('click', '#confirm-delete', function () {
|
$('#confirm-modal').one('click', '#confirm-delete', function () {
|
||||||
for (var i = 0; i < history_to_purge.length; i++) {
|
for (var i = 0; i < history_to_delete.length; i++) {
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: 'delete_history_rows',
|
url: 'delete_history_rows',
|
||||||
data: { row_id: history_to_purge[i] },
|
data: { row_id: history_to_delete[i] },
|
||||||
async: true,
|
async: true,
|
||||||
success: function (data) {
|
success: function (data) {
|
||||||
var msg = "User history purged";
|
var msg = "User history purged";
|
||||||
|
@ -336,6 +332,7 @@ DOCUMENTATION :: END
|
||||||
});
|
});
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
history_to_delete = [];
|
||||||
$('.delete-control').each(function() {
|
$('.delete-control').each(function() {
|
||||||
$(this).removeClass('hidden');
|
$(this).removeClass('hidden');
|
||||||
});
|
});
|
||||||
|
|
|
@ -155,7 +155,7 @@ from plexpy import helpers
|
||||||
</strong></span>
|
</strong></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="button-bar">
|
<div class="button-bar">
|
||||||
<span data-toggle="popover" data-placement="left" data-content="Data deleting does not occur until after exiting delete mode." id="delete-message">
|
<span data-toggle="popover" data-placement="left" data-content="Select rows to delete. Data is deleted upon exiting delete mode." id="delete-message">
|
||||||
<button class="btn btn-danger" data-toggle="button" aria-pressed="false" autocomplete="off" id="row-edit-mode">
|
<button class="btn btn-danger" data-toggle="button" aria-pressed="false" autocomplete="off" id="row-edit-mode">
|
||||||
<i class="fa fa-trash-o"></i> Delete mode
|
<i class="fa fa-trash-o"></i> Delete mode
|
||||||
</button> 
|
</button> 
|
||||||
|
@ -239,7 +239,7 @@ from plexpy import helpers
|
||||||
<h4 class="modal-title" id="myModalLabel">Confirm Delete</h4>
|
<h4 class="modal-title" id="myModalLabel">Confirm Delete</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body" style="text-align: center;">
|
<div class="modal-body" style="text-align: center;">
|
||||||
<p>Are you REALLY sure you want to delete this history?</p>
|
<p>Are you REALLY sure you want to delete <strong><span id="deleteCount"></span></strong> history item(s)?</p>
|
||||||
<p>This is permanent and cannot be undone!</p>
|
<p>This is permanent and cannot be undone!</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
|
@ -390,22 +390,18 @@ from plexpy import helpers
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
var history_to_purge = [];
|
|
||||||
$('#row-edit-mode').on('click', function() {
|
$('#row-edit-mode').on('click', function() {
|
||||||
$('#delete-message').popover();
|
$('#delete-message').popover();
|
||||||
|
|
||||||
if ($(this).hasClass('active')) {
|
if ($(this).hasClass('active')) {
|
||||||
history_to_purge = [];
|
if (history_to_delete.length > 0) {
|
||||||
$('.delete-control button.btn-danger').map(function () {
|
$('#deleteCount').text(history_to_delete.length);
|
||||||
history_to_purge.push($(this).attr('data-id'));
|
|
||||||
});
|
|
||||||
if (history_to_purge.length > 0) {
|
|
||||||
$('#confirm-modal').modal();
|
$('#confirm-modal').modal();
|
||||||
$('#confirm-modal').one('click', '#confirm-delete', function () {
|
$('#confirm-modal').one('click', '#confirm-delete', function () {
|
||||||
for (var i = 0; i < history_to_purge.length; i++) {
|
for (var i = 0; i < history_to_delete.length; i++) {
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: 'delete_history_rows',
|
url: 'delete_history_rows',
|
||||||
data: { row_id: history_to_purge[i] },
|
data: { row_id: history_to_delete[i] },
|
||||||
async: true,
|
async: true,
|
||||||
success: function (data) {
|
success: function (data) {
|
||||||
var msg = "User history purged";
|
var msg = "User history purged";
|
||||||
|
@ -423,6 +419,7 @@ from plexpy import helpers
|
||||||
});
|
});
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
history_to_delete = [];
|
||||||
$('.delete-control').each(function() {
|
$('.delete-control').each(function() {
|
||||||
$(this).removeClass('hidden');
|
$(this).removeClass('hidden');
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue