This repository has been archived on 2022-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
hydrogen-web/src/domain/session/room
2022-07-04 16:59:17 +02:00
..
timeline Merge branch 'master' into bwindels/calls 2022-07-04 16:59:17 +02:00
CallViewModel.ts debugging unmuting not working 2022-06-25 05:56:43 +02:00
ComposerViewModel.js always pass options to ViewModel constructor 2022-02-17 09:24:18 +01:00
InviteViewModel.js typescriptify domain/avatar.js 2022-02-25 15:52:54 +05:30
LightboxViewModel.js rename imports 2022-02-14 17:53:59 +01:00
README.md WIP 2022-02-03 17:57:35 +01:00
RoomBeingCreatedViewModel.js typescriptify domain/avatar.js 2022-02-25 15:52:54 +05:30
RoomViewModel.js show profile info for own call member by observing member on room 2022-06-02 17:31:17 +02:00
UnknownRoomViewModel.js rename imports 2022-02-14 17:53:59 +01:00

"Room" view models

InviteViewModel, RoomViewModel and RoomBeingCreatedViewModel are interchangebly used as "room view model": - SessionViewModel.roomViewModel can be an instance of any - RoomGridViewModel.roomViewModelAt(i) can return an instance of any

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, and a focus method. Once we convert this folder to typescript, we should use this interface for all the view models:

interface IGridItemViewModel {
    id: string;
    kind: string;
    focus();
}