NEW MODAL informacje o serwerze
This commit is contained in:
parent
942ce73975
commit
7d4a856a03
@ -74,49 +74,6 @@
|
|||||||
this.submit();
|
this.submit();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script>
|
|
||||||
function secondsToDhms(seconds) {
|
|
||||||
seconds = Number(seconds);
|
|
||||||
const d = Math.floor(seconds / (3600*24));
|
|
||||||
const h = Math.floor(seconds % (3600*24) / 3600);
|
|
||||||
const m = Math.floor(seconds % 3600 / 60);
|
|
||||||
const s = Math.floor(seconds % 60);
|
|
||||||
return `${d} dni, ${h} godz, ${m} min, ${s} sek`;
|
|
||||||
}
|
|
||||||
|
|
||||||
document.querySelectorAll('.test-daemon-btn').forEach(btn => {
|
|
||||||
btn.addEventListener('click', function() {
|
|
||||||
const hostId = this.dataset.hostId;
|
|
||||||
fetch(`/server-info/${hostId}`)
|
|
||||||
.then(res => res.json())
|
|
||||||
.then(data => {
|
|
||||||
if (data.error) {
|
|
||||||
alert(`Błąd: ${data.error}`);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
document.querySelector('#modal-hostname').textContent = data.hostname;
|
|
||||||
document.querySelector('#modal-ip').textContent = data.ip;
|
|
||||||
|
|
||||||
const cpu = document.querySelector('#modal-cpu');
|
|
||||||
cpu.style.width = `${data.cpu}%`;
|
|
||||||
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>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -179,3 +179,49 @@
|
|||||||
<a href="{{ url_for('export_servers_to_csv') }}" class="btn btn-secondary">Eksportuj do CSV</a>
|
<a href="{{ url_for('export_servers_to_csv') }}" class="btn btn-secondary">Eksportuj do CSV</a>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
{% block extra_js %}
|
||||||
|
<script>
|
||||||
|
function secondsToDhms(seconds) {
|
||||||
|
seconds = Number(seconds);
|
||||||
|
const d = Math.floor(seconds / (3600*24));
|
||||||
|
const h = Math.floor(seconds % (3600*24) / 3600);
|
||||||
|
const m = Math.floor(seconds % 3600 / 60);
|
||||||
|
const s = Math.floor(seconds % 60);
|
||||||
|
return `${d} dni, ${h} godz, ${m} min, ${s} sek`;
|
||||||
|
}
|
||||||
|
|
||||||
|
document.querySelectorAll('.test-daemon-btn').forEach(btn => {
|
||||||
|
btn.addEventListener('click', function() {
|
||||||
|
const hostId = this.dataset.hostId;
|
||||||
|
fetch(`/server-info/${hostId}`)
|
||||||
|
.then(res => res.json())
|
||||||
|
.then(data => {
|
||||||
|
if (data.error) {
|
||||||
|
alert(`Błąd: ${data.error}`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
document.querySelector('#modal-hostname').textContent = data.hostname;
|
||||||
|
document.querySelector('#modal-ip').textContent = data.ip;
|
||||||
|
|
||||||
|
const cpu = document.querySelector('#modal-cpu');
|
||||||
|
cpu.style.width = `${data.cpu}%`;
|
||||||
|
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>
|
||||||
|
|
||||||
|
{% endblock %}
|
Loading…
x
Reference in New Issue
Block a user