2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-03-14 21:58:28 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2018-12-20 19:08:22 +08:00
|
|
|
|
using osu.Framework.Input.Events;
|
2021-06-26 01:10:04 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2018-12-20 19:08:22 +08:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
2021-11-04 17:02:44 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-06-18 02:55:07 +08:00
|
|
|
|
namespace osu.Game.Users.Drawables
|
2017-03-14 21:58:28 +08:00
|
|
|
|
{
|
2020-12-26 20:54:10 +08:00
|
|
|
|
public class ClickableAvatar : Container
|
2017-03-14 21:58:28 +08:00
|
|
|
|
{
|
2021-06-17 15:25:55 +08:00
|
|
|
|
private const string default_tooltip_text = "view profile";
|
|
|
|
|
|
2018-12-20 19:08:22 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether to open the user's profile when clicked.
|
|
|
|
|
/// </summary>
|
2021-06-17 15:25:55 +08:00
|
|
|
|
public bool OpenOnClick
|
|
|
|
|
{
|
2022-03-28 21:50:31 +08:00
|
|
|
|
set => clickableArea.Enabled.Value = clickableArea.Action != null && value;
|
2021-06-17 15:25:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// By default, the tooltip will show "view profile" as avatars are usually displayed next to a username.
|
|
|
|
|
/// Setting this to <c>true</c> exposes the username via tooltip for special cases where this is not true.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool ShowUsernameTooltip
|
|
|
|
|
{
|
|
|
|
|
set => clickableArea.TooltipText = value ? (user?.Username ?? string.Empty) : default_tooltip_text;
|
|
|
|
|
}
|
2018-12-20 19:08:22 +08:00
|
|
|
|
|
2021-11-04 17:02:44 +08:00
|
|
|
|
private readonly APIUser user;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-12-20 19:08:22 +08:00
|
|
|
|
[Resolved(CanBeNull = true)]
|
|
|
|
|
private OsuGame game { get; set; }
|
|
|
|
|
|
2021-06-17 15:25:55 +08:00
|
|
|
|
private readonly ClickableArea clickableArea;
|
|
|
|
|
|
2017-03-27 23:04:51 +08:00
|
|
|
|
/// <summary>
|
2020-12-26 21:02:53 +08:00
|
|
|
|
/// A clickable avatar for the specified user, with UI sounds included.
|
2020-12-26 20:54:10 +08:00
|
|
|
|
/// If <see cref="OpenOnClick"/> is <c>true</c>, clicking will open the user's profile.
|
2017-03-27 23:04:51 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="user">The user. A null value will get a placeholder avatar.</param>
|
2021-11-04 17:02:44 +08:00
|
|
|
|
public ClickableAvatar(APIUser user = null)
|
2017-03-14 21:58:28 +08:00
|
|
|
|
{
|
2017-03-27 23:04:51 +08:00
|
|
|
|
this.user = user;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-12-20 19:08:22 +08:00
|
|
|
|
Add(clickableArea = new ClickableArea
|
2017-03-15 18:07:26 +08:00
|
|
|
|
{
|
2017-06-28 17:24:23 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-03-28 13:24:21 +08:00
|
|
|
|
});
|
2022-03-28 21:50:31 +08:00
|
|
|
|
|
|
|
|
|
if (user?.Id != APIUser.SYSTEM_USER_ID)
|
|
|
|
|
clickableArea.Action = openProfile;
|
2021-06-17 15:25:55 +08:00
|
|
|
|
}
|
2018-12-20 19:08:22 +08:00
|
|
|
|
|
2021-06-17 15:25:55 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2022-01-15 08:06:39 +08:00
|
|
|
|
private void load()
|
2021-06-17 15:25:55 +08:00
|
|
|
|
{
|
2020-12-26 21:02:53 +08:00
|
|
|
|
LoadComponentAsync(new DrawableAvatar(user), clickableArea.Add);
|
2018-12-20 19:08:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void openProfile()
|
|
|
|
|
{
|
2022-03-09 13:39:02 +08:00
|
|
|
|
if (user?.Id > 1 || !string.IsNullOrEmpty(user?.Username))
|
2021-11-05 12:53:00 +08:00
|
|
|
|
game?.ShowUser(user);
|
2018-12-20 19:08:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-19 10:28:24 +08:00
|
|
|
|
private class ClickableArea : OsuClickableContainer
|
2018-12-20 19:08:22 +08:00
|
|
|
|
{
|
2021-06-26 01:10:04 +08:00
|
|
|
|
private LocalisableString tooltip = default_tooltip_text;
|
2021-06-17 15:25:55 +08:00
|
|
|
|
|
2021-06-26 01:10:04 +08:00
|
|
|
|
public override LocalisableString TooltipText
|
2021-06-17 15:25:55 +08:00
|
|
|
|
{
|
2021-06-26 01:10:04 +08:00
|
|
|
|
get => Enabled.Value ? tooltip : default;
|
2021-06-17 15:25:55 +08:00
|
|
|
|
set => tooltip = value;
|
|
|
|
|
}
|
2018-12-20 19:08:22 +08:00
|
|
|
|
|
|
|
|
|
protected override bool OnClick(ClickEvent e)
|
|
|
|
|
{
|
2019-02-21 17:56:34 +08:00
|
|
|
|
if (!Enabled.Value)
|
2018-12-20 19:08:22 +08:00
|
|
|
|
return false;
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2018-12-20 19:08:22 +08:00
|
|
|
|
return base.OnClick(e);
|
|
|
|
|
}
|
2017-03-14 21:58:28 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|