NEW MODAL informacje o serwerze

This commit is contained in:
Mateusz Gruszczyński 2025-03-09 14:50:11 +01:00
parent 362fe6338f
commit d003683cd2

View File

@ -180,48 +180,35 @@
</div> </div>
{% endblock %} {% endblock %}
{% block extra_js %} {% block extra_js %}
{% block extra_js %}
<script> <script>
function secondsToDhms(seconds) { function secondsToDhms(seconds) {
seconds = Number(seconds); seconds = Math.floor(seconds);
const d = Math.floor(seconds / (3600*24)); const d = Math.floor(seconds / (3600*24));
const h = Math.floor(seconds % (3600*24) / 3600); const h = Math.floor(seconds % (3600*24) / 3600);
const m = Math.floor(seconds % 3600 / 60); const m = Math.floor(seconds % 3600 / 60);
const s = Math.floor(seconds % 60); const s = Math.floor(seconds % 60);
return `${d} dni, ${h} godz, ${m} min, ${s} sek`; return `${d} dni, ${h} godz, ${m} min, ${s} sek`;
} }
document.querySelectorAll('.test-daemon-btn').forEach(btn => { document.querySelectorAll('.test-daemon-btn').forEach(btn => {
btn.addEventListener('click', function() { btn.addEventListener('click', function() {
const hostId = this.dataset.hostId; fetch(`/server-info/${this.dataset.hostId}`)
fetch(`/server-info/${hostId}`) .then(res => res.json())
.then(res => res.json()) .then(data => {
.then(data => { if (data.error) return alert(`Błąd: ${data.error}`);
if (data.error) { document.getElementById('modal-hostname').textContent = data.hostname;
alert(`Błąd: ${data.error}`); document.getElementById('modal-ip').textContent = data.ip;
return; document.getElementById('modal-cpu').textContent = data.cpu;
} document.getElementById('modal-mem').textContent = data.mem;
document.querySelector('#modal-hostname').textContent = data.hostname; document.getElementById('modal-disk').textContent = data.disk;
document.querySelector('#modal-ip').textContent = data.ip; document.getElementById('modal-uptime').textContent = secondsToDhms(data.uptime_seconds);
new bootstrap.Modal(document.getElementById('serverInfoModal')).show();
const cpu = document.querySelector('#modal-cpu'); })
cpu.style.width = `${data.cpu}%`; .catch(() => alert('Błąd podczas pobierania danych.'));
cpu.textContent = `${data.cpu}%`;
const mem = document.querySelector('#modal-mem');
mem.style.width = `${data.mem}%`;
mem.textContent = `${data.mem}%`;
const disk = document.querySelector('#modal-disk');
disk.style.width = `${data.disk}%`;
disk.textContent = `${data.disk}%`;
document.querySelector('#modal-uptime').textContent = secondsToDhms(data.uptime_seconds);
new bootstrap.Modal(document.getElementById('serverInfoModal')).show();
})
.catch(() => alert('Błąd podczas pobierania danych.'));
});
}); });
</script> });
</script>
{% endblock %}
{% endblock %} {% endblock %}