Improved "create room" flow

Still need to implement the "add friends" screen.
This commit is contained in:
N-Pex 2021-04-01 22:59:19 +02:00
parent 3ed27e9f63
commit 40f7892392
10 changed files with 469 additions and 115 deletions

View file

@ -0,0 +1,25 @@
<template>
<div class="created-room-welcome-header">
<div class="h4">Welcome!</div>
<div class="mt-2">Here are a few things to know about your group:</div>
<div class="mt-2" v-if="roomJoinRule == 'public'">Anyone can join by opening this link: {{ publicRoomLink }}</div>
<div class="mt-2" v-else-if="roomJoinRule == 'invite'">Only people you invite can join.</div>
<div class="mt-2">You can change 'join permissions' and 'message history' at any time in the group settings.</div>
<div class="text-right">
<v-btn text @click.stop="$emit('close')">Got it</v-btn>
</div>
</div>
</template>
<script>
import roomInfoMixin from "./roomInfoMixin";
export default {
name: "CreatedRoomWelcomeHeader",
mixins: [roomInfoMixin],
};
</script>
<style lang="scss">
@import "@/assets/css/chat.scss";
</style>