2019-04-26 13:29:58 +09:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2021-06-25 19:10:04 +02:00
|
|
|
using osu.Framework.Localisation;
|
2021-07-17 15:18:45 +02:00
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2019-04-26 13:29:58 +09:00
|
|
|
|
2019-04-26 13:49:44 +09:00
|
|
|
namespace osu.Game.Overlays.Profile.Header.Components
|
2019-04-26 13:29:58 +09:00
|
|
|
{
|
2022-11-24 14:32:20 +09:00
|
|
|
public partial class FollowersButton : ProfileHeaderStatisticsButton
|
2019-04-26 13:29:58 +09:00
|
|
|
{
|
2023-01-10 19:24:54 +01:00
|
|
|
public readonly Bindable<UserProfileData?> User = new Bindable<UserProfileData?>();
|
2019-04-26 13:29:58 +09:00
|
|
|
|
2021-07-17 15:18:45 +02:00
|
|
|
public override LocalisableString TooltipText => FriendsStrings.ButtonsDisabled;
|
2019-04-26 13:29:58 +09:00
|
|
|
|
2021-01-21 23:39:19 +03:00
|
|
|
protected override IconUsage Icon => FontAwesome.Solid.User;
|
2019-04-26 13:29:58 +09:00
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2020-12-17 13:33:49 +03:00
|
|
|
// todo: when friending/unfriending is implemented, the APIAccess.Friends list should be updated accordingly.
|
2023-01-10 19:24:54 +01:00
|
|
|
User.BindValueChanged(user => SetValue(user.NewValue?.User.FollowerCount ?? 0), true);
|
2019-04-26 13:29:58 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|