mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-26 13:05:12 +01:00
5445db2a42
this changes the API slightly to be more future-proof, as we'll expose it in the SDK now. The function now returns a SimpleTile constructor, rather than an instance. This allows us to test if an entry would render in the timeline without creating a tile, which is something we might want in the matrix layer later on. The function is now called tileClassForEntry, analogue to what we do in TimelineView. |
||
---|---|---|
.. | ||
timeline | ||
ComposerViewModel.js | ||
InviteViewModel.js | ||
LightboxViewModel.js | ||
README.md | ||
RoomBeingCreatedViewModel.js | ||
RoomViewModel.js | ||
UnknownRoomViewModel.js |
"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();
}