2021-04-21 19:15:51 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
|
|
|
Copyright 2020, 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2021-04-28 17:40:54 +05:30
|
|
|
import {avatarInitials, getIdentifierColorNumber, getAvatarHttpUrl} from "../../avatar.js";
|
2021-04-21 19:15:51 +05:30
|
|
|
import {ViewModel} from "../../ViewModel.js";
|
|
|
|
|
|
|
|
export class InviteViewModel extends ViewModel {
|
|
|
|
constructor(options) {
|
|
|
|
super(options);
|
2021-05-07 16:41:17 +05:30
|
|
|
const {invite, mediaRepository} = options;
|
2021-04-21 19:15:51 +05:30
|
|
|
this._invite = invite;
|
|
|
|
this._mediaRepository = mediaRepository;
|
|
|
|
this._onInviteChange = this._onInviteChange.bind(this);
|
|
|
|
this._error = null;
|
|
|
|
this._closeUrl = this.urlCreator.urlUntilSegment("session");
|
|
|
|
this._invite.on("change", this._onInviteChange);
|
|
|
|
this._inviter = null;
|
2021-04-27 18:12:12 +05:30
|
|
|
if (this._invite.inviter) {
|
2021-04-21 19:15:51 +05:30
|
|
|
this._inviter = new RoomMemberViewModel(this._invite.inviter, mediaRepository, this.platform);
|
|
|
|
}
|
2021-04-27 18:12:37 +05:30
|
|
|
this._roomDescription = this._createRoomDescription();
|
2021-04-21 19:15:51 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
get kind() { return "invite"; }
|
|
|
|
get closeUrl() { return this._closeUrl; }
|
|
|
|
get name() { return this._invite.name; }
|
|
|
|
get id() { return this._invite.id; }
|
|
|
|
get isEncrypted() { return this._invite.isEncrypted; }
|
|
|
|
get isDirectMessage() { return this._invite.isDirectMessage; }
|
|
|
|
get inviter() { return this._inviter; }
|
|
|
|
get busy() { return this._invite.accepting || this._invite.rejecting; }
|
|
|
|
|
|
|
|
get error() {
|
|
|
|
if (this._error) {
|
|
|
|
return `Something went wrong: ${this._error.message}`;
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
get avatarLetter() {
|
|
|
|
return avatarInitials(this.name);
|
|
|
|
}
|
|
|
|
|
|
|
|
get avatarColorNumber() {
|
2021-06-30 05:20:42 +05:30
|
|
|
return getIdentifierColorNumber(this._invite.avatarColorId)
|
2021-04-21 19:15:51 +05:30
|
|
|
}
|
|
|
|
|
2021-04-28 17:40:54 +05:30
|
|
|
avatarUrl(size) {
|
|
|
|
return getAvatarHttpUrl(this._invite.avatarUrl, size, this.platform, this._mediaRepository);
|
2021-04-21 19:15:51 +05:30
|
|
|
}
|
|
|
|
|
2021-04-27 18:12:37 +05:30
|
|
|
_createRoomDescription() {
|
|
|
|
const parts = [];
|
|
|
|
if (this._invite.isPublic) {
|
|
|
|
parts.push("Public room");
|
|
|
|
} else {
|
|
|
|
parts.push("Private room");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._invite.canonicalAlias) {
|
|
|
|
parts.push(this._invite.canonicalAlias);
|
|
|
|
}
|
|
|
|
return parts.join(" • ")
|
|
|
|
}
|
|
|
|
|
|
|
|
get roomDescription() {
|
|
|
|
return this._roomDescription;
|
|
|
|
}
|
|
|
|
|
2021-04-21 19:15:51 +05:30
|
|
|
get avatarTitle() {
|
|
|
|
return this.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
focus() {}
|
|
|
|
|
|
|
|
async accept() {
|
|
|
|
try {
|
|
|
|
await this._invite.accept();
|
|
|
|
} catch (err) {
|
|
|
|
this._error = err;
|
|
|
|
this.emitChange("error");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async reject() {
|
|
|
|
try {
|
|
|
|
await this._invite.reject();
|
|
|
|
} catch (err) {
|
|
|
|
this._error = err;
|
|
|
|
this.emitChange("error");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_onInviteChange() {
|
2021-05-07 16:41:17 +05:30
|
|
|
this.emitChange();
|
2021-04-21 19:15:51 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
dispose() {
|
|
|
|
super.dispose();
|
|
|
|
this._invite.off("change", this._onInviteChange);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class RoomMemberViewModel {
|
|
|
|
constructor(member, mediaRepository, platform) {
|
|
|
|
this._member = member;
|
|
|
|
this._mediaRepository = mediaRepository;
|
|
|
|
this._platform = platform;
|
|
|
|
}
|
|
|
|
|
2021-04-27 18:31:35 +05:30
|
|
|
get id() {
|
|
|
|
return this._member.userId;
|
|
|
|
}
|
|
|
|
|
2021-04-21 19:15:51 +05:30
|
|
|
get name() {
|
|
|
|
return this._member.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
get avatarLetter() {
|
|
|
|
return avatarInitials(this.name);
|
|
|
|
}
|
|
|
|
|
|
|
|
get avatarColorNumber() {
|
2021-04-27 18:13:26 +05:30
|
|
|
return getIdentifierColorNumber(this._member.userId);
|
2021-04-21 19:15:51 +05:30
|
|
|
}
|
|
|
|
|
2021-04-28 17:40:54 +05:30
|
|
|
avatarUrl(size) {
|
|
|
|
return getAvatarHttpUrl(this._member.avatarUrl, size, this._platform, this._mediaRepository);
|
2021-04-21 19:15:51 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
get avatarTitle() {
|
|
|
|
return this.name;
|
|
|
|
}
|
|
|
|
}
|