Add settings

This commit is contained in:
Jack Hadrill
2022-03-22 00:42:53 +00:00
parent 561e983ae6
commit 2df8b9a241
25 changed files with 520 additions and 195 deletions

View File

@@ -1,4 +1,5 @@
<template>
<template v-if="channel">
<Sidebar>
<template v-slot:top>
<h5 class="text-muted mt-3">Users</h5>
@@ -18,16 +19,30 @@
</template>
</Content>
</template>
<template v-else>
<Sidebar />
<Content>
<template v-slot:title>Missing channel</template>
<template v-slot:content>
<div class="d-flex flex-column text-center">
<i class="error text-warning bi bi-cone-striped"></i>
<h2>That channel does not exist!</h2>
</div>
</template>
</Content>
</template>
</template>
<script setup>
import { computed, ref } from 'vue'
import { onBeforeRouteUpdate, useRoute } from 'vue-router'
import { useChannelStore } from '../stores/channelStore'
import { useMessageStore } from '../stores/messageStore'
import Sidebar from '../components/Sidebar.vue'
import Sidebar from '../components/sidebar/Sidebar.vue'
import Content from '../components/Content.vue'
import Key from '../components/common/Key.vue'
import UserList from '../components/userlist/UserList.vue'
import UserList from '../components/userList/UserList.vue'
import Message from '../components/conversation/Message.vue'
import MessageInput from '../components/conversation/MessageInput.vue'
@@ -43,3 +58,9 @@ const locked = ref(false)
onBeforeRouteUpdate(async (to, from) => { locked.value = false })
const abcdef = ref(null)
</script>
<style scoped>
i.error {
font-size: 10rem;
}
</style>