Add scrollback #22

Merged
cadence merged 3 commits from scrollback into princess 2020-10-26 10:36:44 +00:00
1 changed files with 7 additions and 4 deletions
Showing only changes of commit c9dffc9d4a - Show all commits

View File

@ -373,7 +373,6 @@ class Timeline extends Subscribable {
}
async loadScrollback() {
this.broadcast("beforeScrollbackLoad")
debug = true
if (!this.from) throw new Error("Can't load scrollback, no from token")
const url = new URL(`${lsm.get("domain")}/_matrix/client/r0/rooms/${this.id}/messages`)
@ -385,7 +384,11 @@ class Timeline extends Subscribable {
lazy_load_members: true
}
url.searchParams.set("filter", JSON.stringify(filter))
const root = await fetch(url.toString()).then(res => res.json())
this.broadcast("beforeScrollbackLoad")
this.from = root.end
//console.log(this.updateEvents, root.chunk)
if (root.state) this.updateStateEvents(root.state)