forked from mystiq/hydrogen-web
Make RoomViewModel's room public and stop feeding it to tileCreator
This commit is contained in:
parent
4c1aeb342a
commit
bf1f288a92
2 changed files with 5 additions and 2 deletions
|
@ -46,7 +46,6 @@ export class RoomViewModel extends ViewModel {
|
|||
try {
|
||||
const timeline = await this._room.openTimeline();
|
||||
this._tilesCreator = tilesCreator(this.childOptions({
|
||||
room: this._room,
|
||||
roomVM: this,
|
||||
timeline,
|
||||
}));
|
||||
|
@ -299,6 +298,10 @@ export class RoomViewModel extends ViewModel {
|
|||
}
|
||||
}
|
||||
|
||||
get room() {
|
||||
return this._room;
|
||||
}
|
||||
|
||||
get composerViewModel() {
|
||||
return this._composerVM;
|
||||
}
|
||||
|
|
|
@ -126,7 +126,7 @@ export class SimpleTile extends ViewModel {
|
|||
// TilesCollection contract above
|
||||
|
||||
get _room() {
|
||||
return this._options.room;
|
||||
return this._roomVM.room;
|
||||
}
|
||||
|
||||
get _roomVM() {
|
||||
|
|
Loading…
Reference in a new issue