working on deletion functions
This commit is contained in:
parent
f97e04df55
commit
ee572e1f59
@ -7,17 +7,15 @@
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.24/css/jquery.dataTables.min.css">
|
||||
<link rel="stylesheet" href="https://cdn.datatables.net/responsive/2.2.9/css/responsive.dataTables.min.css">
|
||||
<script src="https://cdn.datatables.net/responsive/2.2.9/js/dataTables.responsive.min.js"></script>
|
||||
<style>
|
||||
/* Blur effect for the password field */
|
||||
.password-blur {
|
||||
filter: blur(4px);
|
||||
transition: filter 0.3s ease;
|
||||
cursor: pointer;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- Navbar -->
|
||||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
||||
<a class="navbar-brand" href="/">KTVManager</a>
|
||||
@ -26,15 +24,9 @@
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav ml-auto">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/">Home</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/accounts">Accounts</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="/urls">URLs</a>
|
||||
</li>
|
||||
<li class="nav-item"><a class="nav-link" href="/">Home</a></li>
|
||||
<li class="nav-item"><a class="nav-link" href="/accounts">Accounts</a></li>
|
||||
<li class="nav-item"><a class="nav-link" href="/urls">URLs</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
@ -52,6 +44,7 @@
|
||||
<th>Stream URL</th>
|
||||
<th>Expiry Date</th>
|
||||
<th>Password</th>
|
||||
<th>Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -62,8 +55,11 @@
|
||||
<td>{{ account.stream }}</td>
|
||||
<td><a href="{{ account.streamURL }}" target="_blank">{{ account.streamURL }}</a></td>
|
||||
<td>{{ account.expiaryDate_rendered }}</td>
|
||||
<td class="password-cell" data-password="{{ account.password }}">
|
||||
<span class="password-blur">********</span>
|
||||
<td class="password-cell password-blur" data-password="{{ account.password }}">********</td>
|
||||
<td>
|
||||
<button class="btn btn-danger delete-account-btn" data-stream="{{ account.stream }}" data-username="{{ account.username }}">
|
||||
Delete
|
||||
</button>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
@ -80,38 +76,66 @@
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.0.7/dist/umd/popper.min.js"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
|
||||
<script src="https://cdn.datatables.net/1.10.24/js/jquery.dataTables.min.js"></script>
|
||||
<script src="https://cdn.datatables.net/responsive/2.2.9/js/dataTables.responsive.min.js"></script>
|
||||
<script>
|
||||
const authValue = "{{ auth | safe }}"; // Passing `auth` safely
|
||||
$(document).ready(function() {
|
||||
// Custom sorting for dates in DD/MM/YYYY format
|
||||
$.fn.dataTable.ext.type.order['date-eu'] = function(data) {
|
||||
const parts = data.split('/');
|
||||
return new Date(parts[2], parts[1] - 1, parts[0]).getTime();
|
||||
};
|
||||
|
||||
const table = $('#accountsTable').DataTable({
|
||||
$('#accountsTable').DataTable({
|
||||
"searching": true,
|
||||
"ordering": true,
|
||||
"responsive": true, // Enable responsive layout
|
||||
"responsive": true,
|
||||
"columnDefs": [
|
||||
{ "type": "date-eu", "targets": 4 } // Column index for Expiry Date
|
||||
{ "type": "date-eu", "targets": 4 }
|
||||
]
|
||||
});
|
||||
|
||||
// Use event delegation for password cell clicks
|
||||
$('#accountsTable tbody').on('click', '.password-cell', function() {
|
||||
const $cell = $(this);
|
||||
const password = $cell.data('password');
|
||||
$cell.html(password); // Display the actual password
|
||||
$cell.removeClass('password-blur'); // Remove blur effect
|
||||
$cell.text($cell.data('password'));
|
||||
$cell.removeClass('password-blur');
|
||||
|
||||
// Add click outside event to blur it again
|
||||
$(document).one('click', function(event) {
|
||||
$(document).on('click.password', function(event) {
|
||||
if (!$(event.target).closest('.password-cell').length) {
|
||||
$cell.html('<span class="password-blur">********</span>'); // Restore blurred password
|
||||
$cell.addClass('password-blur'); // Restore blur effect
|
||||
$cell.text('********').addClass('password-blur');
|
||||
$(document).off('click.password');
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
// Delete functionality
|
||||
$('.delete-account-btn').click(async function() {
|
||||
const stream = $(this).data('stream');
|
||||
const username = $(this).data('username');
|
||||
|
||||
if (confirm(`Are you sure you want to delete account for stream: ${stream}, username: ${username}?`)) {
|
||||
try {
|
||||
const response = await fetch('http://vps.k-world.me.uk:3001/deleteAccount', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'Authorization': 'Basic ' + authValue // Adjust auth here as needed
|
||||
},
|
||||
body: JSON.stringify({ stream, username })
|
||||
});
|
||||
|
||||
const result = await response.json();
|
||||
if (response.ok) {
|
||||
alert(result.message);
|
||||
$(this).closest('tr').remove();
|
||||
} else {
|
||||
alert(result.error || 'Failed to delete account');
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('Error deleting account:', error);
|
||||
alert('Error occurred while deleting account');
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
Loading…
x
Reference in New Issue
Block a user