osu/osu.Game/Users/Drawables/ClickableAvatar.cs

74 lines
2.2 KiB
C#
Raw Normal View History

// 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.
2018-04-13 09:19:50 +00:00
using osu.Framework.Allocation;
2019-02-21 10:04:31 +00:00
using osu.Framework.Bindables;
2018-04-13 09:19:50 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Textures;
2018-12-20 11:08:22 +00:00
using osu.Framework.Input.Events;
using osu.Game.Graphics.Containers;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Users.Drawables
2018-04-13 09:19:50 +00:00
{
2020-12-26 12:54:10 +00:00
public class ClickableAvatar : Container
2018-04-13 09:19:50 +00:00
{
2018-12-20 11:08:22 +00:00
/// <summary>
/// Whether to open the user's profile when clicked.
/// </summary>
public readonly BindableBool OpenOnClick = new BindableBool(true);
2018-04-13 09:19:50 +00:00
private readonly User user;
2018-12-20 11:08:22 +00:00
[Resolved(CanBeNull = true)]
private OsuGame game { get; set; }
2018-04-13 09:19:50 +00:00
/// <summary>
/// A clickable avatar for the specified user, with UI sounds included.
2020-12-26 12:54:10 +00:00
/// If <see cref="OpenOnClick"/> is <c>true</c>, clicking will open the user's profile.
2018-04-13 09:19:50 +00:00
/// </summary>
/// <param name="user">The user. A null value will get a placeholder avatar.</param>
2020-12-26 12:54:10 +00:00
public ClickableAvatar(User user = null)
2018-04-13 09:19:50 +00:00
{
this.user = user;
}
[BackgroundDependencyLoader]
private void load(LargeTextureStore textures)
2018-04-13 09:19:50 +00:00
{
2018-12-20 11:08:22 +00:00
ClickableArea clickableArea;
Add(clickableArea = new ClickableArea
2018-04-13 09:19:50 +00:00
{
RelativeSizeAxes = Axes.Both,
2018-12-20 11:08:22 +00:00
Action = openProfile
2018-04-13 09:19:50 +00:00
});
2018-12-20 11:08:22 +00:00
LoadComponentAsync(new DrawableAvatar(user), clickableArea.Add);
2018-12-20 11:08:22 +00:00
clickableArea.Enabled.BindTo(OpenOnClick);
}
private void openProfile()
{
2019-02-21 09:56:34 +00:00
if (!OpenOnClick.Value)
2018-12-20 11:08:22 +00:00
return;
if (user?.Id > 1)
2018-12-20 11:08:22 +00:00
game?.ShowUser(user.Id);
}
private class ClickableArea : OsuClickableContainer
2018-12-20 11:08:22 +00:00
{
2020-01-14 19:26:54 +00:00
public override string TooltipText => Enabled.Value ? @"view profile" : null;
2018-12-20 11:08:22 +00:00
protected override bool OnClick(ClickEvent e)
{
2019-02-21 09:56:34 +00:00
if (!Enabled.Value)
2018-12-20 11:08:22 +00:00
return false;
2019-02-28 04:31:40 +00:00
2018-12-20 11:08:22 +00:00
return base.OnClick(e);
}
2018-04-13 09:19:50 +00:00
}
}
}