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">
|
2021-01-15 11:50:21 +01:00
|
|
|
<!-- 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">
|
2021-02-03 22:21:53 +01:00
|
|
|
<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">
|
2021-02-03 22:21:53 +01:00
|
|
|
<v-select
|
|
|
|
|
ref="avatar"
|
|
|
|
|
:items="availableAvatars"
|
|
|
|
|
cache-items
|
2021-01-20 09:42:13 +01:00
|
|
|
label="User name"
|
|
|
|
|
outlined
|
|
|
|
|
dense
|
2021-02-03 22:21:53 +01:00
|
|
|
@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>
|
2021-01-18 21:40:44 +01:00
|
|
|
|
2021-01-15 11:50:21 +01:00
|
|
|
<!--<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
|
|
|
|
2021-01-15 11:50:21 +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";
|
2021-01-12 11:26:01 +01:00
|
|
|
import util from "../plugins/utils";
|
2021-02-24 14:28:21 +01:00
|
|
|
import config from "../assets/config";
|
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,
|
2021-02-24 14:28:21 +01:00
|
|
|
guestUser: new User(config.defaultServer, "", "", true),
|
2020-11-25 10:02:24 +01:00
|
|
|
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: [],
|
2021-02-03 22:21:53 +01:00
|
|
|
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();
|
2021-02-03 22:21:53 +01:00
|
|
|
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;
|
|
|
|
|
},
|
2021-02-03 22:21:53 +01:00
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
},
|
|
|
|
|
|
2021-01-29 21:41:43 +01:00
|
|
|
userDisplayName() {
|
|
|
|
|
return this.$matrix.userDisplayName;
|
|
|
|
|
},
|
2021-02-03 22:21:53 +01:00
|
|
|
|
2021-01-29 21:41:43 +01:00
|
|
|
userAvatar() {
|
|
|
|
|
if (!this.$matrix.userAvatar) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2021-02-03 22:21:53 +01:00
|
|
|
return this.$matrix.matrixClient.mxcUrlToHttp(
|
|
|
|
|
this.$matrix.userAvatar,
|
|
|
|
|
80,
|
|
|
|
|
80,
|
|
|
|
|
"scale",
|
|
|
|
|
true
|
|
|
|
|
);
|
2021-01-29 21:41:43 +01:00
|
|
|
},
|
2020-11-25 10:02:24 +01:00
|
|
|
},
|
2021-01-28 22:13:08 +01:00
|
|
|
watch: {
|
|
|
|
|
roomId: {
|
|
|
|
|
immediate: true,
|
2021-01-29 21:41:43 +01:00
|
|
|
handler(value, oldVal) {
|
|
|
|
|
if (!value || (value && value == oldVal)) {
|
2021-01-28 22:13:08 +01:00
|
|
|
return; // No change.
|
|
|
|
|
}
|
2021-02-03 22:21:53 +01:00
|
|
|
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) {
|
2021-01-27 12:57:23 +01:00
|
|
|
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) ||
|
2021-02-03 22:21:53 +01:00
|
|
|
!this.hasChangedDisplayName /* No change */
|
2021-01-20 09:42:13 +01:00
|
|
|
) {
|
|
|
|
|
return Promise.resolve(user);
|
|
|
|
|
} else {
|
|
|
|
|
return this.$matrix.matrixClient.setDisplayName(
|
2021-02-03 22:21:53 +01:00
|
|
|
this.profile.name,
|
2021-01-20 09:42:13 +01:00
|
|
|
undefined
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}.bind(this)
|
|
|
|
|
)
|
|
|
|
|
.then(
|
|
|
|
|
function () {
|
|
|
|
|
if (
|
|
|
|
|
(this.currentUser && !this.currentUser.is_guest) ||
|
2021-02-03 22:21:53 +01:00
|
|
|
!this.hasChangedAvatar /* No change */
|
2021-01-20 09:42:13 +01:00
|
|
|
) {
|
|
|
|
|
return Promise.resolve("no avatar");
|
|
|
|
|
} else {
|
|
|
|
|
return util.setAvatar(
|
|
|
|
|
this.$matrix.matrixClient,
|
2021-02-03 22:21:53 +01:00
|
|
|
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
|
|
|
},
|
2021-01-18 21:40:44 +01:00
|
|
|
|
2021-02-03 22:21:53 +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
|
|
|
},
|
|
|
|
|
|
2021-02-03 22:21:53 +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>
|