keanu-weblite/src/components/Join.vue

401 lines
11 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-if="canEditProfile">
2021-01-20 09:42:13 +01:00
<v-col class="flex-grow-0 flex-shrink-0">
<v-avatar @click="showAvatarPickerList">
<v-img v-if="selectedProfile" :src="selectedProfile.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="selectedProfile.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-row v-else>
<v-col>
You are joining as:
<div style="display: inline-block">
<v-avatar color="#e0e0e0" style="">
<v-img v-if="userAvatar" :src="userAvatar" />
<span v-else class="white--text headline">{{
userAvatarLetter
}}</span>
</v-avatar>
</div>
{{ userDisplayName }}
</v-col>
</v-row>
2021-01-20 09:42:13 +01:00
</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";
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: [],
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.selectAvatar(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;
},
canEditProfile() {
// If we have an account already, we can't edit profile here (need to go into profile view)
if (this.currentUser) {
return false;
}
return true;
},
userDisplayName() {
return this.$matrix.currentUserDisplayName;
},
userAvatar() {
if (!this.$matrix.userAvatar) {
return null;
}
return this.$matrix.matrixClient.mxcUrlToHttp(
this.$matrix.userAvatar,
80,
80,
"scale",
true
);
},
userAvatarLetter() {
2021-03-10 13:40:32 +01:00
if (!this.currentUser || !this.currentUser.userId) {
return null;
}
return (this.currentUserDisplayName || this.currentUser.userId.substring(1))
.substring(0, 1)
.toUpperCase();
},
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;
this.waitingForInfo = true;
const self = this;
2021-01-28 22:13:08 +01:00
this.waitingForMembership = true;
if (this.currentUser) {
this.getLoginPromise()
.then(() => {
self.$matrix.setCurrentRoomId(self.roomAliasOrId); // Go to this room, now or when joined.
const room = self.$matrix.getRoom(self.roomAliasOrId);
2021-01-28 22:13:08 +01:00
// 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;
}
})
.catch(err => {
console.log("Error logging in: ", err)
})
.finally(() => {
this.waitingForMembership = false;
this.getRoomInfo();
});
2021-01-28 22:13:08 +01:00
} else {
this.waitingForMembership = false;
this.getRoomInfo();
2021-01-28 22:13:08 +01:00
}
}
2021-01-28 22:13:08 +01:00
},
},
2020-11-25 10:02:24 +01:00
methods: {
/**
* Returns a promise that will log us into the Matrix.
*
* Will use a real account, if we have one, otherwise will create
* a random account.
*/
getLoginPromise() {
if (this.$matrix.ready) {
return Promise.resolve(this.$matrix.currentUser);
}
return this.$store.dispatch("auth/login", this.currentUser || this.guestUser);
},
getRoomInfo() {
if (this.roomId.startsWith("#")) {
this.$matrix
.getPublicRoomInfo(this.roomId)
.then((room) => {
console.log("Found room:", room);
this.roomName = room.name;
this.roomAvatar = room.avatar;
})
.catch((err) => {
console.log("Could not find room info", err);
})
.finally(() => {
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;
}
},
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() {
this.$navigation.push({path: "/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...";
const hasUser = this.currentUser ? true : false;
var setProfileData = false;
return this.getLoginPromise()
2021-01-20 09:42:13 +01:00
.then(
function (user) {
if (user.is_guest && !hasUser) {
// Newly created account, joining first room.
// Set avatar and display name to either the randomly chosen ones, or the
// ones the users has changed to.
setProfileData = true;
}
if (!setProfileData || !this.selectedProfile.name) {
2021-01-20 09:42:13 +01:00
return Promise.resolve(user);
} else {
console.log("Join: Set display name to: " + this.selectedProfile.name);
2021-01-20 09:42:13 +01:00
return this.$matrix.matrixClient.setDisplayName(
this.selectedProfile.name,
2021-01-20 09:42:13 +01:00
undefined
);
}
}.bind(this)
)
.then(
function () {
if (!setProfileData || !this.selectedProfile.image) {
console.log("Join: No avatar change");
2021-01-20 09:42:13 +01:00
return Promise.resolve("no avatar");
} else {
console.log("Join: Updating avatar");
2021-01-20 09:42:13 +01:00
return util.setAvatar(
this.$matrix.matrixClient,
this.selectedProfile.image,
2021-01-20 09:42:13 +01:00
function (progress) {
console.log("Progress: " + JSON.stringify(progress));
}
);
}
}.bind(this)
)
.then(
function (ignoreduser) {
console.log("Join: joining room");
2021-01-20 09:42:13 +01:00
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>