2019-01-24 17:43:03 +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.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2023-11-10 11:52:34 +09:00
|
|
|
|
using System.Linq;
|
2017-03-14 10:58:28 -03:00
|
|
|
|
using osu.Framework.Allocation;
|
2023-11-02 09:16:25 +01:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
2023-02-09 16:09:38 -08:00
|
|
|
|
using osu.Framework.Input.Events;
|
2018-12-20 20:08:22 +09:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
2023-11-10 11:52:34 +09:00
|
|
|
|
using osu.Game.Graphics.Cursor;
|
|
|
|
|
using osu.Game.Localisation;
|
2023-11-09 22:27:29 +09:00
|
|
|
|
using osu.Game.Online.API;
|
2021-11-04 18:02:44 +09:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2023-11-02 09:16:25 +01:00
|
|
|
|
using osuTK;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2019-06-17 21:55:07 +03:00
|
|
|
|
namespace osu.Game.Users.Drawables
|
2017-03-14 10:58:28 -03:00
|
|
|
|
{
|
2023-11-09 22:27:29 +09:00
|
|
|
|
public partial class ClickableAvatar : OsuClickableContainer, IHasCustomTooltip<APIUser?>
|
2017-03-14 10:58:28 -03:00
|
|
|
|
{
|
2023-11-10 11:52:34 +09:00
|
|
|
|
public ITooltip<APIUser?> GetCustomTooltip() => showCardOnHover ? new UserCardTooltip() : new NoCardTooltip();
|
2023-11-09 13:09:59 +01:00
|
|
|
|
|
2023-11-09 22:27:29 +09:00
|
|
|
|
public APIUser? TooltipContent { get; }
|
2023-11-06 15:25:12 +01:00
|
|
|
|
|
2023-11-09 13:09:59 +01:00
|
|
|
|
private readonly APIUser? user;
|
|
|
|
|
|
2023-11-10 11:52:34 +09:00
|
|
|
|
private readonly bool showCardOnHover;
|
2023-11-06 14:52:06 +01:00
|
|
|
|
|
2023-02-10 16:25:14 +09:00
|
|
|
|
[Resolved]
|
|
|
|
|
private OsuGame? game { get; set; }
|
2018-12-20 20:08:22 +09:00
|
|
|
|
|
2017-03-28 00:04:51 +09:00
|
|
|
|
/// <summary>
|
2020-12-26 14:02:53 +01:00
|
|
|
|
/// A clickable avatar for the specified user, with UI sounds included.
|
2017-03-28 00:04:51 +09:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="user">The user. A null value will get a placeholder avatar.</param>
|
2023-11-10 11:37:23 +01:00
|
|
|
|
/// <param name="showCardOnHover">If set to true, the <see cref="UserGridPanel"/> will be shown for the tooltip</param>
|
2023-11-10 11:52:34 +09:00
|
|
|
|
public ClickableAvatar(APIUser? user = null, bool showCardOnHover = false)
|
2017-03-14 10:58:28 -03:00
|
|
|
|
{
|
2022-03-28 22:50:31 +09:00
|
|
|
|
if (user?.Id != APIUser.SYSTEM_USER_ID)
|
2023-02-09 12:59:26 -08:00
|
|
|
|
Action = openProfile;
|
2018-12-20 20:08:22 +09:00
|
|
|
|
|
2023-11-10 11:52:34 +09:00
|
|
|
|
this.showCardOnHover = showCardOnHover;
|
|
|
|
|
|
|
|
|
|
TooltipContent = this.user = user ?? new GuestUser();
|
2023-11-06 14:52:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-17 16:25:55 +09:00
|
|
|
|
[BackgroundDependencyLoader]
|
2022-01-15 01:06:39 +01:00
|
|
|
|
private void load()
|
2021-06-17 16:25:55 +09:00
|
|
|
|
{
|
2023-02-09 12:59:26 -08:00
|
|
|
|
LoadComponentAsync(new DrawableAvatar(user), Add);
|
2018-12-20 20:08:22 +09:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void openProfile()
|
|
|
|
|
{
|
2022-03-09 14:39:02 +09:00
|
|
|
|
if (user?.Id > 1 || !string.IsNullOrEmpty(user?.Username))
|
2021-11-05 13:53:00 +09:00
|
|
|
|
game?.ShowUser(user);
|
2018-12-20 20:08:22 +09:00
|
|
|
|
}
|
2023-02-09 16:09:38 -08:00
|
|
|
|
|
|
|
|
|
protected override bool OnClick(ClickEvent e)
|
|
|
|
|
{
|
|
|
|
|
if (!Enabled.Value)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return base.OnClick(e);
|
|
|
|
|
}
|
2023-11-02 09:16:25 +01:00
|
|
|
|
|
2023-11-09 22:27:29 +09:00
|
|
|
|
public partial class UserCardTooltip : VisibilityContainer, ITooltip<APIUser?>
|
2023-11-02 09:16:25 +01:00
|
|
|
|
{
|
2023-11-09 22:27:29 +09:00
|
|
|
|
public UserCardTooltip()
|
2023-11-06 11:54:57 +01:00
|
|
|
|
{
|
2023-11-09 13:09:59 +01:00
|
|
|
|
AutoSizeAxes = Axes.Both;
|
2023-11-06 11:54:57 +01:00
|
|
|
|
}
|
|
|
|
|
|
2023-11-10 11:52:34 +09:00
|
|
|
|
protected override void PopIn() => this.FadeIn(150, Easing.OutQuint);
|
2023-11-10 11:45:31 +01:00
|
|
|
|
protected override void PopOut() => this.Delay(150).FadeOut(500, Easing.OutQuint);
|
2023-11-10 11:52:34 +09:00
|
|
|
|
|
|
|
|
|
public void Move(Vector2 pos) => Position = pos;
|
|
|
|
|
|
|
|
|
|
private APIUser? user;
|
|
|
|
|
|
|
|
|
|
public void SetContent(APIUser? content)
|
|
|
|
|
{
|
|
|
|
|
if (content == user && Children.Any())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
user = content;
|
|
|
|
|
|
|
|
|
|
if (user != null)
|
|
|
|
|
{
|
|
|
|
|
LoadComponentAsync(new UserGridPanel(user)
|
|
|
|
|
{
|
|
|
|
|
Width = 300,
|
|
|
|
|
}, panel => Child = panel);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
var tooltip = new OsuTooltipContainer.OsuTooltip();
|
|
|
|
|
tooltip.SetContent(ContextMenuStrings.ViewProfile);
|
|
|
|
|
tooltip.Show();
|
|
|
|
|
|
|
|
|
|
Child = tooltip;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public partial class NoCardTooltip : VisibilityContainer, ITooltip<APIUser?>
|
|
|
|
|
{
|
2023-11-10 18:36:09 +09:00
|
|
|
|
private readonly OsuTooltipContainer.OsuTooltip tooltip;
|
|
|
|
|
|
2023-11-10 11:52:34 +09:00
|
|
|
|
public NoCardTooltip()
|
2023-11-02 09:16:25 +01:00
|
|
|
|
{
|
2023-11-10 18:36:09 +09:00
|
|
|
|
tooltip = new OsuTooltipContainer.OsuTooltip();
|
2023-11-10 11:52:34 +09:00
|
|
|
|
tooltip.SetContent(ContextMenuStrings.ViewProfile);
|
|
|
|
|
Child = tooltip;
|
2023-11-02 09:16:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
2023-11-10 18:36:09 +09:00
|
|
|
|
protected override void PopIn() => tooltip.Show();
|
|
|
|
|
protected override void PopOut() => tooltip.Hide();
|
2023-11-02 09:16:25 +01:00
|
|
|
|
|
|
|
|
|
public void Move(Vector2 pos) => Position = pos;
|
|
|
|
|
|
2023-11-10 11:52:34 +09:00
|
|
|
|
public void SetContent(APIUser? content)
|
2023-11-02 09:16:25 +01:00
|
|
|
|
{
|
2023-11-10 11:52:34 +09:00
|
|
|
|
}
|
2023-11-02 09:16:25 +01:00
|
|
|
|
}
|
2017-03-14 10:58:28 -03:00
|
|
|
|
}
|
|
|
|
|
}
|