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] [patch.crates-io]
#ratatui = { path = "../ratatui", features = ["serde", "macros"] } #ratatui = { path = "../ratatui", features = ["serde", "macros"] }
eyeball-im = { git = "https://github.com/progval/eyeball.git", rev = "33bc7b532985a78cd8aa2e0865c9848211cfadec" }
[dev-dependencies] [dev-dependencies]
pretty_assertions = "1.4.0" pretty_assertions = "1.4.0"

View File

@ -54,12 +54,12 @@ impl Buffers {
pub async fn poll_updates(&mut self) { pub async fn poll_updates(&mut self) {
self self
.iter_mut() .iter_mut()
.map(|buf| buf.poll_updates()) .map(|buf| buf.poll_updates())
.collect::<FuturesUnordered<_>>() .collect::<FuturesUnordered<_>>()
.next() .next()
.await .await
.expect("poll_updates reached the end of the never-ending stream"); .expect("poll_updates reached the end of the never-ending stream");
} }
pub fn iter(&self) -> impl Iterator<Item = &dyn Buffer> { 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 // TODO: run this concurrently with stream.next() below
self.spawn_back_pagination(back_pagination_request).await; self.spawn_back_pagination(back_pagination_request).await;
} }
self.items.extend( if let Some(changes) = self.stream.next().await {
self for change in changes {
.stream change.map(|timeline_item| format!("{:#?}", timeline_item)).apply(&mut self.items);
.next() }
.await }
.map(|change| format!("New items: {:#?}", change)),
);
} }
async fn spawn_back_pagination(&self, num: u16) { async fn spawn_back_pagination(&self, num: u16) {