Skip to content
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

Merged
merged 5 commits into from
Oct 30, 2023

Conversation

frenzibyte
Copy link
Member

{
Show();

LoadComponentAsync(new DrawableTournamentBanner(banner), AddInternal, cancellationTokenSource.Token);
LoadComponentsAsync(banners.Select(b => new DrawableTournamentBanner(b)), AddRangeInternal, cancellationTokenSource.Token);
Copy link
Member

@Joehuu Joehuu Oct 28, 2023

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:

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.

Copy link
Member Author

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.

Copy link
Member Author

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.

@pull-request-size pull-request-size bot added size/L and removed size/M labels Oct 30, 2023
@peppy peppy self-requested a review October 30, 2023 08:26
@peppy peppy merged commit 66fa09b into ppy:master Oct 30, 2023
@frenzibyte frenzibyte deleted the fix-user-profile-support-banners branch October 30, 2023 08:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Only one osu! world cup supporter banner shows up on user sites within the client
3 participants