Automatically fetch endpoints
This commit is contained in:
parent
677d993de1
commit
b547daa2a4
|
@ -219,6 +219,23 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
function fetchEndpoints() {
|
||||||
|
fetch(`http://{{ api_host }}:5000/api/endpoints`)
|
||||||
|
.then(response => response.json())
|
||||||
|
.then(data => {
|
||||||
|
data.forEach(endpoint => {
|
||||||
|
const row = document.getElementById(`row-${endpoint.id}`);
|
||||||
|
|
||||||
|
if (row) {
|
||||||
|
document.getElementById(`url-${endpoint.id}`).innerText = endpoint.url;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error("Error fetching endpoints:", error);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function updateEndpoint(event, endpointId) {
|
function updateEndpoint(event, endpointId) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
|
||||||
|
@ -238,7 +255,7 @@ function updateEndpoint(event, endpointId) {
|
||||||
newUrlInput.value = "";
|
newUrlInput.value = "";
|
||||||
row.classList.add("highlight");
|
row.classList.add("highlight");
|
||||||
|
|
||||||
setTimeout(() => row.classList.remove("highlight"), 3000);
|
setTimeout(() => row.classList.remove("highlight"), 2000);
|
||||||
} else {
|
} else {
|
||||||
console.error("Failed to update URL:", data.message);
|
console.error("Failed to update URL:", data.message);
|
||||||
}
|
}
|
||||||
|
@ -247,6 +264,10 @@ function updateEndpoint(event, endpointId) {
|
||||||
console.error("Error:", error);
|
console.error("Error:", error);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setInterval(fetchEndpoints, 15000);
|
||||||
|
|
||||||
|
fetchEndpoints();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in New Issue