-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update user profile overlay to show more than one tournament banner #25287
Update user profile overlay to show more than one tournament banner #25287
Conversation
{ | ||
Show(); | ||
|
||
LoadComponentAsync(new DrawableTournamentBanner(banner), AddInternal, cancellationTokenSource.Token); | ||
LoadComponentsAsync(banners.Select(b => new DrawableTournamentBanner(b)), AddRangeInternal, cancellationTokenSource.Token); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Loading all banners (worst case 32 teams or more if duplicate) at once can take 2+ seconds to appear:
Untitled.mov
I would copy the badge logic to make it appear quicker:
osu/osu.Game/Overlays/Profile/Header/BadgeHeaderContainer.cs
Lines 73 to 81 in 0bbe28d
for (int index = 0; index < badges.Length; index++) | |
{ | |
int displayIndex = index; | |
LoadComponentAsync(new DrawableBadge(badges[index]), asyncBadge => | |
{ | |
// load in stable order regardless of async load order. | |
badgeFlowContainer.Insert(displayIndex, asyncBadge); | |
}, cancellationTokenSource.Token); | |
} |
The banners will not appear in order, but not really noticeable as users will have at most 1 banner or none.
Edit: For the worst case though, not appearing in order by milliseconds seems better than waiting 2+ seconds to load all.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting, I was under the thought that using LoadComponentsAsync
should not result in any UI thread blockage.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Uh, I misunderstood, you mean to add the banner as soon as it is loaded rather than delaying the display until all are loaded. Sure, sounds good.
Preview: