mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 18:20:34 +08:00
31 lines
1.0 KiB
C#
31 lines
1.0 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
#nullable disable
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
using osu.Game.Resources.Localisation.Web;
|
|
|
|
namespace osu.Game.Overlays.Profile.Header.Components
|
|
{
|
|
public class FollowersButton : ProfileHeaderStatisticsButton
|
|
{
|
|
public readonly Bindable<APIUser> User = new Bindable<APIUser>();
|
|
|
|
public override LocalisableString TooltipText => FriendsStrings.ButtonsDisabled;
|
|
|
|
protected override IconUsage Icon => FontAwesome.Solid.User;
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
// todo: when friending/unfriending is implemented, the APIAccess.Friends list should be updated accordingly.
|
|
User.BindValueChanged(user => SetValue(user.NewValue?.FollowerCount ?? 0), true);
|
|
}
|
|
}
|
|
}
|