Only reset splash screen state on server changes, reset loading attempts correctly.
This commit is contained in:
parent
78655e7ebe
commit
ab5ede1ccc
@ -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});
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user