Web Interface for Tags #104244
@ -49,15 +49,16 @@ export default {
|
||||
flamencoVersion: DEFAULT_FLAMENCO_VERSION,
|
||||
backendURL: backendURL,
|
||||
}),
|
||||
|
||||
mounted() {
|
||||
window.app = this;
|
||||
this.fetchManagerInfo();
|
||||
|
||||
const sockStatus = useSocketStatus();
|
||||
this.$watch(() => sockStatus.isConnected, (isConnected) => {
|
||||
if (isConnected) {
|
||||
this.socketIOReconnect();
|
||||
}
|
||||
if (!isConnected) return;
|
||||
if (!sockStatus.wasEverDisconnected) return;
|
||||
this.socketIOReconnect();
|
||||
});
|
||||
|
||||
},
|
||||
@ -72,14 +73,14 @@ export default {
|
||||
},
|
||||
|
||||
socketIOReconnect() {
|
||||
this.fetchManagerInfo()
|
||||
if (this.flamencoVersion !== DEFAULT_FLAMENCO_VERSION || this.flamencoName !== DEFAULT_FLAMENCO_NAME ) {
|
||||
console.log(`Upgraded Flamenco Version: ${this.flamencoVersion}`);
|
||||
|
||||
// Reload the page
|
||||
const metaAPI = new API.MetaApi(getAPIClient())
|
||||
metaAPI.getVersion().then((version) => {
|
||||
if (version.name === this.flamencoName && version.version == this.flamencoVersion)
|
||||
return;
|
||||
console.log(`Updated from ${this.flamencoVersion} to ${version.version}`);
|
||||
location.reload();
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
Loading…
Reference in New Issue
Block a user