Limit number of collaborators in local Facepiles (#4083)
Release Notes: - Improves the rendering of the facepile in the titlebar with many people
This commit is contained in:
commit
e2788f1f0f
1 changed files with 29 additions and 11 deletions
|
@ -477,7 +477,9 @@ impl CollabTitlebarItem {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const FACEPILE_LIMIT: usize = 3;
|
||||||
let followers = project_id.map_or(&[] as &[_], |id| room.followers_for(peer_id, id));
|
let followers = project_id.map_or(&[] as &[_], |id| room.followers_for(peer_id, id));
|
||||||
|
let extra_count = followers.len().saturating_sub(FACEPILE_LIMIT);
|
||||||
|
|
||||||
let pile = FacePile::default()
|
let pile = FacePile::default()
|
||||||
.child(
|
.child(
|
||||||
|
@ -499,18 +501,34 @@ impl CollabTitlebarItem {
|
||||||
)
|
)
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
.children(followers.iter().filter_map(|follower_peer_id| {
|
.children(
|
||||||
let follower = room
|
followers
|
||||||
.remote_participants()
|
.iter()
|
||||||
.values()
|
.take(FACEPILE_LIMIT)
|
||||||
.find_map(|p| (p.peer_id == *follower_peer_id).then_some(&p.user))
|
.filter_map(|follower_peer_id| {
|
||||||
.or_else(|| {
|
let follower = room
|
||||||
(self.client.peer_id() == Some(*follower_peer_id)).then_some(current_user)
|
.remote_participants()
|
||||||
})?
|
.values()
|
||||||
.clone();
|
.find_map(|p| (p.peer_id == *follower_peer_id).then_some(&p.user))
|
||||||
|
.or_else(|| {
|
||||||
|
(self.client.peer_id() == Some(*follower_peer_id))
|
||||||
|
.then_some(current_user)
|
||||||
|
})?
|
||||||
|
.clone();
|
||||||
|
|
||||||
Some(Avatar::new(follower.avatar_uri.clone()))
|
Some(Avatar::new(follower.avatar_uri.clone()))
|
||||||
}));
|
}),
|
||||||
|
)
|
||||||
|
.children(if extra_count > 0 {
|
||||||
|
Some(
|
||||||
|
div()
|
||||||
|
.ml_1()
|
||||||
|
.child(Label::new(format!("+{extra_count}")))
|
||||||
|
.into_any_element(),
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
});
|
||||||
|
|
||||||
Some(pile)
|
Some(pile)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue