1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 02:47:25 +08:00
osu-lazer/osu.Game/Overlays/Profile/Header/Components/FriendsButton.cs

27 lines
913 B
C#
Raw Normal View History

2019-04-26 12:29:58 +08: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;
using osu.Game.Users;
2019-04-26 12:49:44 +08:00
namespace osu.Game.Overlays.Profile.Header.Components
2019-04-26 12:29:58 +08:00
{
public class FriendsButton : ProfileHeaderStatisticsButton
2019-04-26 12:29:58 +08:00
{
public readonly Bindable<User> User = new Bindable<User>();
2021-01-22 02:26:33 +08:00
public override string TooltipText => "followers";
2019-04-26 12:29:58 +08:00
2021-01-22 03:47:44 +08:00
protected override IconUsage CreateIcon => FontAwesome.Solid.User;
2019-04-26 12:29:58 +08:00
[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);
2019-04-26 12:29:58 +08:00
}
}
}