thelounge/client/components/RoutedChat.vue

41 lines
733 B
Vue
Raw Normal View History

2019-10-17 18:56:44 +02:00
<template>
<Chat
v-if="activeChannel"
:network="activeChannel.network"
:channel="activeChannel.channel"
:focused="this.$route.query.focused"
/>
2019-10-17 18:56:44 +02:00
</template>
<script>
// Temporary component for routing channels and lobbies
import Chat from "./Chat.vue";
export default {
name: "RoutedChat",
components: {
Chat,
},
computed: {
activeChannel() {
2019-11-11 20:18:55 +01:00
const chanId = parseInt(this.$route.params.id, 10);
const channel = this.$store.getters.findChannel(chanId);
2019-10-17 18:56:44 +02:00
return channel;
},
},
watch: {
activeChannel() {
this.setActiveChannel();
},
},
mounted() {
this.setActiveChannel();
},
methods: {
setActiveChannel() {
this.$store.commit("activeChannel", this.activeChannel);
2019-10-17 18:56:44 +02:00
},
},
};
</script>