2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
|
2023-02-10 07:24:44 +00:00
|
|
|
|
using System;
|
2017-03-14 13:58:28 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
2023-02-10 00:09:38 +00:00
|
|
|
|
using osu.Framework.Input.Events;
|
2021-06-25 17:10:04 +00:00
|
|
|
|
using osu.Framework.Localisation;
|
2018-12-20 11:08:22 +00:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
2021-11-04 09:02:44 +00:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-06-17 18:55:07 +00:00
|
|
|
|
namespace osu.Game.Users.Drawables
|
2017-03-14 13:58:28 +00:00
|
|
|
|
{
|
2023-02-09 20:59:26 +00:00
|
|
|
|
public partial class ClickableAvatar : OsuClickableContainer
|
2017-03-14 13:58:28 +00:00
|
|
|
|
{
|
2021-06-17 07:25:55 +00:00
|
|
|
|
private const string default_tooltip_text = "view profile";
|
|
|
|
|
|
2023-02-10 00:09:38 +00:00
|
|
|
|
public override LocalisableString TooltipText
|
|
|
|
|
{
|
2023-02-10 07:24:44 +00:00
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (!Enabled.Value)
|
|
|
|
|
return string.Empty;
|
|
|
|
|
|
|
|
|
|
return ShowUsernameTooltip ? (user?.Username ?? string.Empty) : default_tooltip_text;
|
|
|
|
|
}
|
2023-02-10 20:25:19 +00:00
|
|
|
|
set => throw new NotSupportedException();
|
2023-02-10 00:09:38 +00:00
|
|
|
|
}
|
2021-06-17 07:25:55 +00: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>
|
2023-02-10 07:24:44 +00:00
|
|
|
|
public bool ShowUsernameTooltip { get; set; }
|
2018-12-20 11:08:22 +00:00
|
|
|
|
|
2023-02-10 07:25:14 +00:00
|
|
|
|
private readonly APIUser? user;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2023-02-10 07:25:14 +00:00
|
|
|
|
[Resolved]
|
|
|
|
|
private OsuGame? game { get; set; }
|
2018-12-20 11:08:22 +00:00
|
|
|
|
|
2017-03-27 15:04:51 +00:00
|
|
|
|
/// <summary>
|
2020-12-26 13:02:53 +00:00
|
|
|
|
/// A clickable avatar for the specified user, with UI sounds included.
|
2017-03-27 15:04:51 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="user">The user. A null value will get a placeholder avatar.</param>
|
2023-02-10 07:25:14 +00:00
|
|
|
|
public ClickableAvatar(APIUser? user = null)
|
2017-03-14 13:58:28 +00:00
|
|
|
|
{
|
2017-03-27 15:04:51 +00:00
|
|
|
|
this.user = user;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-03-28 13:50:31 +00:00
|
|
|
|
if (user?.Id != APIUser.SYSTEM_USER_ID)
|
2023-02-09 20:59:26 +00:00
|
|
|
|
Action = openProfile;
|
2021-06-17 07:25:55 +00:00
|
|
|
|
}
|
2018-12-20 11:08:22 +00:00
|
|
|
|
|
2021-06-17 07:25:55 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
2022-01-15 00:06:39 +00:00
|
|
|
|
private void load()
|
2021-06-17 07:25:55 +00:00
|
|
|
|
{
|
2023-02-09 20:59:26 +00:00
|
|
|
|
LoadComponentAsync(new DrawableAvatar(user), Add);
|
2018-12-20 11:08:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void openProfile()
|
|
|
|
|
{
|
2022-03-09 05:39:02 +00:00
|
|
|
|
if (user?.Id > 1 || !string.IsNullOrEmpty(user?.Username))
|
2021-11-05 04:53:00 +00:00
|
|
|
|
game?.ShowUser(user);
|
2018-12-20 11:08:22 +00:00
|
|
|
|
}
|
2023-02-10 00:09:38 +00:00
|
|
|
|
|
|
|
|
|
protected override bool OnClick(ClickEvent e)
|
|
|
|
|
{
|
|
|
|
|
if (!Enabled.Value)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return base.OnClick(e);
|
|
|
|
|
}
|
2017-03-14 13:58:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|