keanu-weblite/src/components/Join.vue

348 lines
9.6 KiB
Vue
Raw Normal View History

2020-11-25 10:02:24 +01:00
<template>
2020-12-16 15:57:44 +01:00
<div class="join-root">
2021-01-08 11:07:02 +01:00
<div v-if="!waitingForInfo && !waitingForMembership" class="text-center">
2020-12-16 16:36:23 +01:00
<v-btn
class="btn-login"
text
small
@click.stop="handleLogin"
:loading="loading"
2021-01-11 17:42:58 +01:00
v-if="!currentUser"
2020-12-16 16:36:23 +01:00
>Login</v-btn
>
2020-11-25 10:02:24 +01:00
2020-12-16 15:57:44 +01:00
<v-avatar class="join-avatar">
<v-img v-if="roomAvatar" :src="roomAvatar" />
<span v-else class="white--text headline">{{
roomName.substring(0, 1).toUpperCase()
2020-12-16 16:36:23 +01:00
}}</span>
2020-12-16 15:57:44 +01:00
</v-avatar>
<div class="join-title">Welcome to {{ roomName }}</div>
2020-12-16 16:36:23 +01:00
<div class="join-message">
<!-- Join the group chat in a web browser or with the Keanu app. -->
2020-12-16 16:36:23 +01:00
</div>
2021-01-20 09:42:13 +01:00
<v-container class="join-user-info">
<v-row>
<v-col class="flex-grow-0 flex-shrink-0">
<v-avatar @click="showAvatarPickerList">
<v-img v-if="profile" :src="profile.image" />
2021-01-20 09:42:13 +01:00
</v-avatar>
</v-col>
<v-col class="flex-shrink-1 flex-grow-1">
<v-select
ref="avatar"
:items="availableAvatars"
cache-items
2021-01-20 09:42:13 +01:00
label="User name"
outlined
dense
@change="selectAvatar"
:value="availableAvatars[0]"
single-line
>
<template v-slot:selection>
<v-text-field background-color="transparent" solo flat hide-details @click.native.stop="{}" v-model="profile.name"></v-text-field>
</template>
<template v-slot:item="data">
<v-avatar size="32">
<v-img :src="data.item.image" />
</v-avatar>
<div class="ml-2">{{ data.item.name }}</div>
</template>
</v-select>
2021-01-20 09:42:13 +01:00
</v-col>
</v-row>
</v-container>
<!--<v-btn
2020-12-16 16:36:23 +01:00
class="btn-light"
large
block
@click.stop="handleOpenApp"
:loading="loading"
2020-12-16 15:57:44 +01:00
>Open Keanu app</v-btn
>
2020-12-16 16:36:23 +01:00
<div class="join-or-divider">OR</div> -->
2020-12-16 15:57:44 +01:00
2020-12-16 16:36:23 +01:00
<v-btn
class="btn-dark"
large
block
@click.stop="handleJoin"
:loading="loading"
2021-01-11 17:42:58 +01:00
v-if="!currentUser"
2020-11-25 10:02:24 +01:00
>Join as guest</v-btn
>
2021-01-11 17:42:58 +01:00
<v-btn
class="btn-dark"
large
block
@click.stop="handleJoin"
:loading="loading"
v-else
>Join room</v-btn
>
2020-11-25 10:02:24 +01:00
2020-12-16 16:36:23 +01:00
<div class="join-privacy">
Enhance your physical privacy. <a href="#">Learn how</a>
</div>
2020-12-16 15:57:44 +01:00
2020-11-25 10:02:24 +01:00
<div v-if="loadingMessage">{{ loadingMessage }}</div>
</div>
</div>
</template>
<script>
import User from "../models/user";
import util from "../plugins/utils";
2020-11-25 10:02:24 +01:00
export default {
name: "Join",
data() {
return {
2020-12-16 15:57:44 +01:00
roomName: null,
roomAvatar: null,
2020-11-25 10:02:24 +01:00
guestUser: new User("https://neo.keanu.im", "", "", true),
loading: false,
loadingMessage: null,
2021-01-08 11:07:02 +01:00
waitingForInfo: true,
waitingForMembership: false,
2021-01-20 09:42:13 +01:00
availableAvatars: [],
randomProfile: null,
selectedProfile: null,
2020-11-25 10:02:24 +01:00
};
},
mounted() {
2021-01-12 20:28:23 +01:00
this.$matrix.on("Room.myMembership", this.onMyMembership);
2021-01-20 09:42:13 +01:00
this.availableAvatars = util.getDefaultAvatars();
this.randomProfile = this.availableAvatars[Math.floor(Math.random() * this.availableAvatars.length)];
2021-01-12 20:28:23 +01:00
},
destroyed() {
this.$matrix.off("Room.myMembership", this.onMyMembership);
2020-11-25 10:02:24 +01:00
},
computed: {
currentUser() {
return this.$store.state.auth.user;
},
2021-01-28 22:13:08 +01:00
room() {
return this.$matrix.currentRoom;
},
roomId() {
if (this.room) {
return this.room.roomId;
}
return this.$matrix.currentRoomId;
},
roomAliasOrId() {
if (this.room) {
return this.room.getCanonicalAlias() || this.room.roomId;
}
return this.$matrix.currentRoomId;
},
profile() {
return {
image: (this.selectedProfile ? this.selectedProfile.image : null) || this.userAvatar || this.randomProfile.image,
name: (this.selectedProfile ? this.selectedProfile.name : null) || this.userDisplayName || this.randomProfile.name
}
},
hasChangedAvatar() {
return this.userAvatar != this.profile.image;
},
hasChangedDisplayName() {
return this.userDisplayName != this.profile.name;
},
userDisplayName() {
return this.$matrix.userDisplayName;
},
userAvatar() {
if (!this.$matrix.userAvatar) {
return null;
}
return this.$matrix.matrixClient.mxcUrlToHttp(
this.$matrix.userAvatar,
80,
80,
"scale",
true
);
},
2020-11-25 10:02:24 +01:00
},
2021-01-28 22:13:08 +01:00
watch: {
roomId: {
immediate: true,
handler(value, oldVal) {
if (!value || (value && value == oldVal)) {
2021-01-28 22:13:08 +01:00
return; // No change.
}
console.log(
"Join: Current room changed to " + (value ? value : "null")
);
2021-01-28 22:13:08 +01:00
this.roomName = this.roomId;
if (this.currentUser) {
this.waitingForMembership = true;
const self = this;
this.$matrix
.login(this.currentUser)
.then(() => {
self.$matrix.setCurrentRoomId(self.roomAliasOrId); // Go to this room, now or when joined.
const room = self.$matrix.getRoom(self.roomAliasOrId);
// Already joined?
if (
room &&
room.hasMembershipState(self.currentUser.user_id, "join")
) {
// Yes, go to room
self.$navigation.push(
{
name: "Chat",
params: { roomId: util.sanitizeRoomId(this.roomAliasOrId) },
},
-1
);
return;
}
this.waitingForMembership = false;
})
.catch((ignoredErr) => {
this.waitingForMembership = false;
});
}
if (this.roomId.startsWith("#")) {
this.$matrix
.getPublicRoomInfo(this.roomId)
.then((room) => {
console.log("Found room:", room);
this.roomName = room.name;
this.roomAvatar = room.avatar;
this.waitingForInfo = false;
})
.catch((err) => {
console.log("Could not find room info", err);
this.waitingForInfo = false;
});
} else {
// Private room, try to get name
const room = this.$matrix.getRoom(this.roomId);
if (room) {
this.roomName = room.name || this.roomName;
}
this.waitingForInfo = false;
}
},
},
},
2020-11-25 10:02:24 +01:00
methods: {
2021-01-12 20:28:23 +01:00
onMyMembership(room, membership, ignoredprevMembership) {
if (room && room.roomId == this.roomId && membership == "join") {
2021-01-28 22:13:08 +01:00
this.$nextTick(() => {
this.$navigation.push(
{
name: "Chat",
params: { roomId: util.sanitizeRoomId(this.roomAliasOrId) },
},
-1
);
});
2021-01-12 20:28:23 +01:00
}
},
2020-12-16 15:57:44 +01:00
handleLogin() {
2021-01-11 17:42:58 +01:00
this.$navigation.push({ name: "Login" }, 1);
2020-12-16 15:57:44 +01:00
},
handleOpenApp() {
console.log("Open app..."); //TODO
},
2020-11-25 10:02:24 +01:00
handleJoin() {
this.loading = true;
this.loadingMessage = "Logging in...";
2020-11-25 14:42:50 +01:00
var clientPromise;
2020-11-25 10:02:24 +01:00
if (this.currentUser) {
clientPromise = this.$matrix.login(this.currentUser);
2020-11-25 10:02:24 +01:00
} else {
2021-01-20 09:42:13 +01:00
clientPromise = this.$store.dispatch("auth/login", this.guestUser);
2020-11-25 10:02:24 +01:00
}
2020-11-25 14:42:50 +01:00
return clientPromise
2021-01-20 09:42:13 +01:00
.then(
function (user) {
if (
(this.currentUser && !this.currentUser.is_guest) ||
!this.hasChangedDisplayName /* No change */
2021-01-20 09:42:13 +01:00
) {
return Promise.resolve(user);
} else {
return this.$matrix.matrixClient.setDisplayName(
this.profile.name,
2021-01-20 09:42:13 +01:00
undefined
);
}
}.bind(this)
)
.then(
function () {
if (
(this.currentUser && !this.currentUser.is_guest) ||
!this.hasChangedAvatar /* No change */
2021-01-20 09:42:13 +01:00
) {
return Promise.resolve("no avatar");
} else {
return util.setAvatar(
this.$matrix.matrixClient,
this.profile.image,
2021-01-20 09:42:13 +01:00
function (progress) {
console.log("Progress: " + JSON.stringify(progress));
}
);
}
}.bind(this)
)
.then(
function (ignoreduser) {
this.loadingMessage = "Joining room...";
return this.$matrix.matrixClient.joinRoom(this.roomId);
}.bind(this)
)
2021-01-28 22:13:08 +01:00
.then((ignoredRoom) => {
2020-11-25 14:42:50 +01:00
this.loading = false;
this.loadingMessage = null;
2021-01-11 17:42:58 +01:00
this.$nextTick(() => {
2021-01-12 20:28:23 +01:00
this.$navigation.push(
2021-01-28 22:13:08 +01:00
{
name: "Chat",
params: { roomId: util.sanitizeRoomId(this.roomAliasOrId) },
},
2021-01-12 20:28:23 +01:00
-1
);
2021-01-11 17:42:58 +01:00
});
2020-11-25 14:42:50 +01:00
})
.catch((err) => {
// TODO - handle error
console.log("Failed to join room", err);
this.loading = false;
this.loadingMessage = err.toString();
});
2020-11-25 10:02:24 +01:00
},
selectAvatar(value) {
this.selectedProfile = Object.assign({}, value); // Make a copy, so editing does not destroy data
2021-01-20 09:42:13 +01:00
},
showAvatarPickerList() {
this.$refs.avatar.$refs.input.click();
}
2020-11-25 10:02:24 +01:00
},
};
</script>
<style lang="scss">
2020-12-16 15:57:44 +01:00
@import "@/assets/css/join.scss";
2020-11-25 10:02:24 +01:00
</style>