From 0cc95f5083308c9873db96e240ee047247f288e3 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Wed, 21 Apr 2021 15:45:51 +0200 Subject: [PATCH] first draft of InviteViewModel --- src/domain/session/room/InviteViewModel.js | 144 +++++++++++++++++++++ src/domain/session/room/README.md | 9 ++ src/domain/session/room/RoomViewModel.js | 1 + src/matrix/Session.js | 4 + 4 files changed, 158 insertions(+) create mode 100644 src/domain/session/room/InviteViewModel.js create mode 100644 src/domain/session/room/README.md diff --git a/src/domain/session/room/InviteViewModel.js b/src/domain/session/room/InviteViewModel.js new file mode 100644 index 00000000..2b43feb0 --- /dev/null +++ b/src/domain/session/room/InviteViewModel.js @@ -0,0 +1,144 @@ +/* +Copyright 2020 Bruno Windels +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. +*/ + +import {avatarInitials, getIdentifierColorNumber} from "../../avatar.js"; +import {ViewModel} from "../../ViewModel.js"; + +export class InviteViewModel extends ViewModel { + constructor(options) { + super(options); + const {invite, mediaRepository, closeCallback} = options; + this._invite = invite; + this._mediaRepository = mediaRepository; + this._closeCallback = closeCallback; + this._onInviteChange = this._onInviteChange.bind(this); + this._error = null; + this._closeUrl = this.urlCreator.urlUntilSegment("session"); + this._invite.on("change", this._onInviteChange); + this._inviter = null; + if (this._invite.inviter && ! this._invite.isDirectMessage) { + this._inviter = new RoomMemberViewModel(this._invite.inviter, mediaRepository, this.platform); + } + } + + 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() { + return getIdentifierColorNumber(this._invite.id) + } + + get avatarUrl() { + if (this._invite.avatarUrl) { + const size = 32 * this.platform.devicePixelRatio; + return this._mediaRepository.mxcUrlThumbnail(this._invite.avatarUrl, size, size, "crop"); + } + return null; + } + + 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() { + if (this._invite.accepted || this._invite.rejected) { + // close invite if rejected, or open room if accepted. + // Done with a callback rather than manipulating the nav, + // as closing the invite changes the nav path depending whether + // we're in a grid view, and opening the room doesn't change + // the nav path because the url is the same for an + // invite and the room. + this._closeCallback(this._invite.accepted); + } else { + this.emitChange(); + } + } + + dispose() { + super.dispose(); + this._invite.off("change", this._onInviteChange); + } +} + +class RoomMemberViewModel { + constructor(member, mediaRepository, platform) { + this._member = member; + this._mediaRepository = mediaRepository; + this._platform = platform; + } + + get name() { + return this._member.name; + } + + get avatarLetter() { + return avatarInitials(this.name); + } + + get avatarColorNumber() { + return getIdentifierColorNumber(this._member.userId) + } + + get avatarUrl() { + if (this._member.avatarUrl) { + const size = 32 * this.platform.devicePixelRatio; + return this._mediaRepository.mxcUrlThumbnail(this._member.avatarUrl, size, size, "crop"); + } + return null; + } + + get avatarTitle() { + return this.name; + } +} diff --git a/src/domain/session/room/README.md b/src/domain/session/room/README.md new file mode 100644 index 00000000..28fa7173 --- /dev/null +++ b/src/domain/session/room/README.md @@ -0,0 +1,9 @@ +# "Room" view models + +InviteViewModel and RoomViewModel are interchangebly used as "room view model": + - SessionViewModel.roomViewModel can be an instance of either + - RoomGridViewModel.roomViewModelAt(i) can return an instance of either + +This is because they are accessed by the same url and need to transition into each other, in these two locations. Having two methods, especially in RoomGridViewModel would have been more cumbersome, even though this is not in line with how different view models are exposed in SessionViewModel. + +They share an `id` and `kind` property, the latter can be used to differentiate them from the view. diff --git a/src/domain/session/room/RoomViewModel.js b/src/domain/session/room/RoomViewModel.js index a99718be..6a48f9d9 100644 --- a/src/domain/session/room/RoomViewModel.js +++ b/src/domain/session/room/RoomViewModel.js @@ -88,6 +88,7 @@ export class RoomViewModel extends ViewModel { this.emitChange("name"); } + get kind() { return "room"; } get closeUrl() { return this._closeUrl; } get name() { return this._room.name || this.i18n`Empty Room`; } get id() { return this._room.id; } diff --git a/src/matrix/Session.js b/src/matrix/Session.js index c19fc006..11bca80b 100644 --- a/src/matrix/Session.js +++ b/src/matrix/Session.js @@ -507,6 +507,10 @@ export class Session { return this._user; } + get mediaRepository() { + return this._mediaRepository; + } + enablePushNotifications(enable) { if (enable) { return this._enablePush();