Display repr of timeline items instead of their diffs'

This commit is contained in:
2023-11-04 11:40:14 +01:00
parent e04c58fec2
commit b4eeb8a6b8
3 changed files with 12 additions and 13 deletions

View File

@ -68,6 +68,7 @@ unicode-width = "0.1"
[patch.crates-io]
#ratatui = { path = "../ratatui", features = ["serde", "macros"] }
eyeball-im = { git = "https://github.com/progval/eyeball.git", rev = "33bc7b532985a78cd8aa2e0865c9848211cfadec" }
[dev-dependencies]
pretty_assertions = "1.4.0"

View File

@ -54,12 +54,12 @@ impl Buffers {
pub async fn poll_updates(&mut self) {
self
.iter_mut()
.map(|buf| buf.poll_updates())
.collect::<FuturesUnordered<_>>()
.next()
.await
.expect("poll_updates reached the end of the never-ending stream");
.iter_mut()
.map(|buf| buf.poll_updates())
.collect::<FuturesUnordered<_>>()
.next()
.await
.expect("poll_updates reached the end of the never-ending stream");
}
pub fn iter(&self) -> impl Iterator<Item = &dyn Buffer> {

View File

@ -50,13 +50,11 @@ impl SingleClientRoomBuffer {
// TODO: run this concurrently with stream.next() below
self.spawn_back_pagination(back_pagination_request).await;
}
self.items.extend(
self
.stream
.next()
.await
.map(|change| format!("New items: {:#?}", change)),
);
if let Some(changes) = self.stream.next().await {
for change in changes {
change.map(|timeline_item| format!("{:#?}", timeline_item)).apply(&mut self.items);
}
}
}
async fn spawn_back_pagination(&self, num: u16) {