36 lines
673 B
Vue
36 lines
673 B
Vue
|
<template>
|
||
|
<Chat v-if="activeChannel" :network="activeChannel.network" :channel="activeChannel.channel" />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
// Temporary component for routing channels and lobbies
|
||
|
import Chat from "./Chat.vue";
|
||
|
|
||
|
export default {
|
||
|
name: "RoutedChat",
|
||
|
components: {
|
||
|
Chat,
|
||
|
},
|
||
|
computed: {
|
||
|
activeChannel() {
|
||
|
const chan_id = parseInt(this.$route.params.pathMatch);
|
||
|
const channel = this.$root.findChannel(chan_id);
|
||
|
return channel;
|
||
|
},
|
||
|
},
|
||
|
watch: {
|
||
|
activeChannel() {
|
||
|
this.setActiveChannel();
|
||
|
},
|
||
|
},
|
||
|
mounted() {
|
||
|
this.setActiveChannel();
|
||
|
},
|
||
|
methods: {
|
||
|
setActiveChannel() {
|
||
|
this.$root.activeChannel = this.activeChannel;
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|