Guest access work

This commit is contained in:
N-Pex 2020-11-25 10:02:24 +01:00
parent a164571218
commit 5589131c86
5 changed files with 138 additions and 35 deletions

80
src/components/Join.vue Normal file
View file

@ -0,0 +1,80 @@
<template>
<div class="d-flex justify-center login-root">
<div color="rgba(255,255,255,0.1)">
<h4>Join room</h4>
<div>You have been invited to the room {{ roomId }}</div>
<v-btn primary large block @click.stop="handleJoin" :loading="loading"
>Join as guest</v-btn
>
<div v-if="loadingMessage">{{ loadingMessage }}</div>
</div>
</div>
</template>
<script>
import User from "../models/user";
export default {
name: "Join",
data() {
return {
roomId: null,
guestUser: new User("https://neo.keanu.im", "", "", true),
loading: false,
loadingMessage: null,
};
},
mounted() {
this.roomId = this.$route.hash;
},
computed: {
currentUser() {
return this.$store.state.auth.user;
},
},
methods: {
handleJoin() {
this.loading = true;
this.loadingMessage = "Logging in...";
if (this.currentUser) {
this.$matrix
.getMatrixClient(this.currentUser)
.then((ignoreduser) => {
this.loadingMessage = "Joining room...";
return this.$matrix.matrixClient.joinRoom(this.roomId);
})
.then((room) => {
this.$matrix.setCurrentRoomId(room.roomId);
this.loading = false;
this.loadingMessage = null;
this.$router.replace({ name: "Chat" });
})
.catch((err) => {
// TODO - handle error
console.log("Failed to join room", err);
this.loading = false;
this.loadingMessage = err.toString();
});
} else {
this.$store.dispatch("auth/login", this.guestUser).then(
() => {
this.loading = false;
this.loadingMessage = null;
this.$router.replace({ name: "Chat" });
},
(error) => {
this.loading = false;
this.loadingMessage = error.toString();
}
);
}
},
},
};
</script>
<style lang="scss">
@import "@/assets/css/login.scss";
</style>