Browse Source

Display the local and total chunk counts on the loading screen.

block-minter-updates
CalDescent 3 years ago
parent
commit
97199d9b91
  1. 7
      src/main/resources/loading/index.html

7
src/main/resources/loading/index.html

@ -46,6 +46,7 @@
var url = host + '/arbitrary/resource/status/' + service + '/' + name + '?build=true';
var textStatus = "Loading...";
var textProgress = "";
var retryInterval = 2500;
const response = await fetch(url, {
@ -96,7 +97,12 @@
textStatus = status.description;
}
if (status.localChunkCount != null && status.totalChunkCount != null) {
textProgress = "Files downloaded: " + status.localChunkCount + " / " + status.totalChunkCount;
}
document.getElementById("status").innerHTML = textStatus;
document.getElementById("progress").innerHTML = textProgress;
setTimeout(checkStatus, retryInterval);
}
@ -260,6 +266,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
This page will refresh automatically when the content becomes available.
</p>
<p><span id="status">Loading...</span></p>
<p><span id="progress"></span></p>
</div>
</div>

Loading…
Cancel
Save