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

Add user card with global/country ranks to login overlay #26340

Merged
merged 9 commits into from
Jan 17, 2024

Conversation

stanriders
Copy link
Member

@stanriders stanriders commented Jan 2, 2024

Part of #22130, closes #2510

I'm aware that unexpected PRs like this are not really welcomed, but I believe lack of quick way to see your rank is something that people will complain a lot about after pp release, though you can throw it into the backlog if you think it's not that important.

Design is a combination of current user card with expanded user card view from figma. I think it's good enough as a temporary solution and proper design can be implemented whenever design for the new user cards gets finalized.

image

@bdach
Copy link
Collaborator

bdach commented Jan 2, 2024

Code quality failing

@peppy peppy self-requested a review January 3, 2024 03:42
Comment on lines 169 to 178
new ProfileValueDisplay(true)
{
Title = UsersStrings.ShowRankGlobalSimple,
Content = User.Statistics?.GlobalRank?.ToLocalisableString("\\##,##0") ?? (LocalisableString)"-"
},
new ProfileValueDisplay(true)
{
Title = UsersStrings.ShowRankCountrySimple,
Content = User.Statistics?.CountryRank?.ToLocalisableString("\\##,##0") ?? (LocalisableString)"-"
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I dunno. These are never going to update. I'd say they need to update as a minimum requirement to have this added, else it's misleading to the user.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure, I'll look into it

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There probably needs to be a global event which is triggered by the results screen when a change to statistics happens, which can schedule a future update of this card (next time the panel is opened).

Probably out of scope for this PR, but I'd hope to have that as a prereq or follow-up PR so they can be merged together.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could updating APIAccess.LocalUser bindable (and binding the card updates to it) be an option here? To me it feels like updating all of the user info might be better than just statistics

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're probably definitely going to run into the fact that APIUser equality will cause a no-op when you update that bindable.

Maybe separating Statistics into a separate bindable on APIAcess if that is enough to make things work? Then having results screen trigger a apiAccess.RefreshLocalUser() or something, which updates the bindable statistics.

@@ -110,6 +107,22 @@ private void load()
Text = User.Username,
};

protected virtual Drawable? CreateBackground() => Background = new UserCoverBackground
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is so weird. So there's one method called CreateX and it's virtual and requires override to do something, then there's three other Create methods which are required to be called by the implementation to actually do something.

At very least this needs xmldoc. Optimally, they shouldn't use the same naming structure.

Comment on lines 85 to 89
{
Empty(),
Empty(),
Empty(),
Empty()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what on earth.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Padding, similar to how UserGridPanel does it

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add an inline comment explaining this.

Comment on lines 120 to 129
details = new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Spacing = new Vector2(6),
Children = new Drawable[]
{
CreateFlag(),
}
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i'm hoping this was just bad copy and paste and you haven't used an AI to write this.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All of the top layer of the card was pretty much one to one copied from the UserGridPanel. If you're wondering why its a flow - its for the supporter icon which is being added later

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add inline comments for places where code doesn't explain itself?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure, should I do the same in the UserGridCard as well?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, please do.

@peppy peppy self-requested a review January 15, 2024 09:44
@peppy
Copy link
Member

peppy commented Jan 15, 2024

Okay so I went to repair this but it turns out you've opened a can of worms. Specifically that ExtendedUserPanel's Status and Activity likely should not exist. And you'll need to resolve the conflict, aka. fix the fact you're not using that panel type anymore.

@stanriders
Copy link
Member Author

Yep I wasn't pushing changes here until #26356 merge, will fix stuff up now. As for the ExtendedUserPanel I too thought that it's a weird design, but doing something about it would be out of scope for this PR

@@ -139,6 +139,8 @@ private void load()
},
};

api.LocalUser.Value.Status.BindValueChanged(e => updateDropdownCurrent(e.NewValue), true);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i'll fix this, but note that as you didn't create a local bindable this could cause a bindable leak. only saved by the fact there's only ever one LoginPanel.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

gotcha, will keep in mind

@peppy peppy self-requested a review January 17, 2024 07:48
{
BorderColour = ColourProvider?.Light1 ?? Colours.GreyVioletLighter;

api.Statistics.ValueChanged += e =>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same deal, incorrect bindable usage

Copy link
Member

@peppy peppy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

probably fine

@peppy peppy merged commit ee18123 into ppy:master Jan 17, 2024
@stanriders stanriders deleted the user-rank-card branch January 17, 2024 08:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Player rank not displayed in menu
3 participants