X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FHall.vue;h=d113da7a5c6b59ca9db0dc89f5e3af6bf52395d3;hb=a2bd587aebc0104db71f9404aadeec72c9141102;hp=286354697d5f3d07af2bda79ef31b43339463b23;hpb=305ede7ec3753fc669b7c86af5b5c5b2fc78a164;p=vchess.git diff --git a/client/src/views/Hall.vue b/client/src/views/Hall.vue index 28635469..d113da7a 100644 --- a/client/src/views/Hall.vue +++ b/client/src/views/Hall.vue @@ -267,9 +267,14 @@ export default { }); if (!this.newchallenge.V && this.newchallenge.vid > 0) this.loadNewchallVariant(); + }, + $route: function(to, from) { + if (to.path != "/") this.cleanBeforeDestroy(); } }, created: function() { + document.addEventListener('visibilitychange', this.visibilityChange); + window.addEventListener("beforeunload", this.cleanBeforeDestroy); if (this.st.variants.length > 0 && this.newchallenge.vid > 0) this.loadNewchallVariant(); const my = this.st.user; @@ -304,7 +309,6 @@ export default { this.conn.addEventListener("close", this.socketCloseListener); }, mounted: function() { - document.addEventListener('visibilitychange', this.visibilityChange); ["peopleWrap", "infoDiv", "newgameDiv"].forEach(eltName => { document.getElementById(eltName) .addEventListener("click", processModalClick); @@ -388,10 +392,14 @@ export default { ); }, beforeDestroy: function() { - document.removeEventListener('visibilitychange', this.visibilityChange); - this.send("disconnect"); + this.cleanBeforeDestroy(); }, methods: { + cleanBeforeDestroy: function() { + document.removeEventListener('visibilitychange', this.visibilityChange); + window.removeEventListener("beforeunload", this.cleanBeforeDestroy); + this.send("disconnect"); + }, getRandomnessClass: function(pc) { return { ["random-" + pc.randomness]: true @@ -605,8 +613,11 @@ export default { this.people[data.from] = { pages: [{ path: page, focus: true }] }; else { // Append page if not already in list - if (!(this.people[data.from].pages.find(p => p.path == page))) + let ppage = this.people[data.from].pages.find(p => p.path == page); + if (!ppage) this.people[data.from].pages.push({ path: page, focus: true }); + else ppage.focus = true; + this.$forceUpdate(); //TODO: shouldn't be required } if (!this.people[data.from].name && this.people[data.from].id !== 0) { // Identity not known yet @@ -625,6 +636,7 @@ export default { ArrayFun.remove(this.people[data.from].pages, p => p.path == page); if (this.people[data.from].pages.length == 0) this.$delete(this.people, data.from); + else this.$forceUpdate(); //TODO: shouldn't be required // Disconnect means no more tmpIds: if (data.code == "disconnect") { // Remove the live challenges sent by this player: