Display repr of timeline items instead of their diffs'
This commit is contained in:
@ -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"
|
||||
|
@ -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> {
|
||||
|
@ -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) {
|
||||
|
Reference in New Issue
Block a user