Only reset splash screen state on server changes, reset loading attempts correctly.

This commit is contained in:
James Lyne 2021-09-01 18:14:19 +01:00
parent 78655e7ebe
commit ab5ede1ccc
2 changed files with 13 additions and 10 deletions

View File

@ -71,7 +71,7 @@ export default defineComponent({
loadConfiguration = async () => {
try {
clearTimeout(loadingTimeout);
showSplash();
showSplash(!loadingAttempts.value);
loading.value = true;
await store.dispatch(ActionTypes.STOP_UPDATES, undefined);
@ -186,6 +186,7 @@ export default defineComponent({
return;
}
loadingAttempts.value = 0;
window.history.replaceState({}, '', newServer.id);
loadConfiguration();
}, {deep: true});

View File

@ -21,21 +21,23 @@ const app = document.getElementById('app'),
splashErrorMessage = document.getElementById('splash__error-message'),
splashRetry = document.getElementById('splash__error-retry');
export const showSplash = function() {
export const showSplash = function(reset: boolean) {
if(!splash || !app) {
return;
}
if(splashError) {
splashError.setAttribute('aria-hidden', 'true');
}
if(reset) {
if(splashError) {
splashError.setAttribute('aria-hidden', 'true');
}
if(splashSpinner) {
splashSpinner.style.visibility = 'visible';
}
if(splashSpinner) {
splashSpinner.style.visibility = 'visible';
}
if(splashRetry) {
splashRetry.hidden = true;
if(splashRetry) {
splashRetry.hidden = true;
}
}
splash.hidden = false;