2019-01-28 06:45:00 +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.
|
2019-01-11 08:12:19 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Framework.Allocation;
|
2019-03-10 06:58:14 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2019-01-11 08:12:19 +08:00
|
|
|
|
using osu.Framework.Extensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
using osuTK;
|
|
|
|
|
using osuTK.Graphics;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Profile.Header
|
|
|
|
|
{
|
2019-03-10 06:58:14 +08:00
|
|
|
|
public class BottomHeaderContainer : CompositeDrawable
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
2019-04-25 17:42:19 +08:00
|
|
|
|
public readonly Bindable<User> User = new Bindable<User>();
|
|
|
|
|
|
2020-02-02 22:07:39 +08:00
|
|
|
|
private LinkFlowContainer linkContainer;
|
2019-01-11 08:12:19 +08:00
|
|
|
|
|
2019-04-25 17:42:19 +08:00
|
|
|
|
private Color4 iconColour;
|
2019-01-11 08:12:19 +08:00
|
|
|
|
|
2019-04-25 17:42:19 +08:00
|
|
|
|
public BottomHeaderContainer()
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
2019-03-10 06:58:14 +08:00
|
|
|
|
AutoSizeAxes = Axes.Y;
|
2019-04-25 17:42:19 +08:00
|
|
|
|
}
|
2019-03-10 06:58:14 +08:00
|
|
|
|
|
2019-04-25 17:42:19 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2020-01-30 05:10:19 +08:00
|
|
|
|
private void load(OverlayColourProvider colourProvider)
|
2019-04-25 17:42:19 +08:00
|
|
|
|
{
|
2020-01-30 05:10:19 +08:00
|
|
|
|
iconColour = colourProvider.Foreground1;
|
2019-04-25 19:05:59 +08:00
|
|
|
|
|
2019-03-10 06:58:14 +08:00
|
|
|
|
InternalChildren = new Drawable[]
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-01-30 05:10:19 +08:00
|
|
|
|
Colour = colourProvider.Background4
|
2019-01-11 08:12:19 +08:00
|
|
|
|
},
|
2020-02-02 22:07:39 +08:00
|
|
|
|
linkContainer = new LinkFlowContainer(text => text.Font = text.Font.With(size: 12))
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Padding = new MarginPadding { Horizontal = UserProfileOverlay.CONTENT_X_MARGIN, Vertical = 10 },
|
|
|
|
|
Spacing = new Vector2(0, 10),
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2019-04-25 17:42:19 +08:00
|
|
|
|
User.BindValueChanged(user => updateDisplay(user.NewValue));
|
2019-01-11 08:12:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-10 06:58:14 +08:00
|
|
|
|
private void updateDisplay(User user)
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
2020-02-02 22:07:39 +08:00
|
|
|
|
linkContainer.Clear();
|
2019-01-11 08:12:19 +08:00
|
|
|
|
|
|
|
|
|
if (user == null) return;
|
|
|
|
|
|
|
|
|
|
if (user.JoinDate.ToUniversalTime().Year < 2008)
|
2020-02-02 22:07:39 +08:00
|
|
|
|
linkContainer.AddText("Here since the beginning");
|
2019-01-11 08:12:19 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
2020-02-02 22:07:39 +08:00
|
|
|
|
linkContainer.AddText("Joined ");
|
|
|
|
|
linkContainer.AddText(new DrawableDate(user.JoinDate), embolden);
|
2019-01-11 08:12:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-02 22:07:39 +08:00
|
|
|
|
addSpacer(linkContainer);
|
2019-01-11 08:12:19 +08:00
|
|
|
|
|
2019-06-19 00:13:21 +08:00
|
|
|
|
if (user.IsOnline)
|
|
|
|
|
{
|
2020-02-02 22:07:39 +08:00
|
|
|
|
linkContainer.AddText("Currently online");
|
|
|
|
|
addSpacer(linkContainer);
|
2019-06-19 00:13:21 +08:00
|
|
|
|
}
|
2019-06-19 02:04:36 +08:00
|
|
|
|
else if (user.LastVisit.HasValue)
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
2020-02-02 22:07:39 +08:00
|
|
|
|
linkContainer.AddText("Last seen ");
|
|
|
|
|
linkContainer.AddText(new DrawableDate(user.LastVisit.Value), embolden);
|
2019-01-11 08:12:19 +08:00
|
|
|
|
|
2020-02-02 22:07:39 +08:00
|
|
|
|
addSpacer(linkContainer);
|
2019-01-11 08:12:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-13 00:04:11 +08:00
|
|
|
|
if (user.PlayStyles?.Length > 0)
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
2020-02-02 22:07:39 +08:00
|
|
|
|
linkContainer.AddText("Plays with ");
|
|
|
|
|
linkContainer.AddText(string.Join(", ", user.PlayStyles.Select(style => style.GetDescription())), embolden);
|
2019-01-11 08:12:19 +08:00
|
|
|
|
|
2020-02-02 22:07:39 +08:00
|
|
|
|
addSpacer(linkContainer);
|
2019-01-11 08:12:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-02 22:07:39 +08:00
|
|
|
|
linkContainer.AddText("Contributed ");
|
|
|
|
|
linkContainer.AddLink($@"{user.PostCount:#,##0} forum posts", $"https://osu.ppy.sh/users/{user.Id}/posts", creationParameters: embolden);
|
2019-01-11 08:12:19 +08:00
|
|
|
|
|
2020-01-31 00:46:59 +08:00
|
|
|
|
string websiteWithoutProtocol = user.Website;
|
2019-05-07 12:23:09 +08:00
|
|
|
|
|
2020-01-31 00:46:59 +08:00
|
|
|
|
if (!string.IsNullOrEmpty(websiteWithoutProtocol))
|
2019-01-11 08:12:19 +08:00
|
|
|
|
{
|
2020-01-31 00:46:59 +08:00
|
|
|
|
if (Uri.TryCreate(websiteWithoutProtocol, UriKind.Absolute, out var uri))
|
2019-04-25 17:42:19 +08:00
|
|
|
|
{
|
2020-01-31 00:46:59 +08:00
|
|
|
|
websiteWithoutProtocol = uri.Host + uri.PathAndQuery + uri.Fragment;
|
|
|
|
|
websiteWithoutProtocol = websiteWithoutProtocol.TrimEnd('/');
|
2019-04-25 17:42:19 +08:00
|
|
|
|
}
|
2019-01-11 08:12:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-02 22:07:39 +08:00
|
|
|
|
requireNewLineOnAddInfo = true;
|
|
|
|
|
|
2019-04-04 06:24:42 +08:00
|
|
|
|
tryAddInfo(FontAwesome.Solid.MapMarker, user.Location);
|
|
|
|
|
tryAddInfo(OsuIcon.Heart, user.Interests);
|
|
|
|
|
tryAddInfo(FontAwesome.Solid.Suitcase, user.Occupation);
|
2020-02-02 22:07:39 +08:00
|
|
|
|
|
|
|
|
|
requireNewLineOnAddInfo = true;
|
|
|
|
|
|
2019-01-11 08:12:19 +08:00
|
|
|
|
if (!string.IsNullOrEmpty(user.Twitter))
|
2019-04-04 06:24:42 +08:00
|
|
|
|
tryAddInfo(FontAwesome.Brands.Twitter, "@" + user.Twitter, $@"https://twitter.com/{user.Twitter}");
|
|
|
|
|
tryAddInfo(FontAwesome.Brands.Discord, user.Discord);
|
|
|
|
|
tryAddInfo(FontAwesome.Brands.Skype, user.Skype, @"skype:" + user.Skype + @"?chat");
|
|
|
|
|
tryAddInfo(FontAwesome.Brands.Lastfm, user.Lastfm, $@"https://last.fm/users/{user.Lastfm}");
|
2020-01-31 00:46:59 +08:00
|
|
|
|
tryAddInfo(FontAwesome.Solid.Link, websiteWithoutProtocol, user.Website);
|
2019-01-11 08:12:19 +08:00
|
|
|
|
}
|
2019-04-25 17:42:19 +08:00
|
|
|
|
|
|
|
|
|
private void addSpacer(OsuTextFlowContainer textFlow) => textFlow.AddArbitraryDrawable(new Container { Width = 15 });
|
|
|
|
|
|
2020-02-02 22:07:39 +08:00
|
|
|
|
private bool requireNewLineOnAddInfo;
|
|
|
|
|
|
2019-04-25 17:42:19 +08:00
|
|
|
|
private void tryAddInfo(IconUsage icon, string content, string link = null)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrEmpty(content)) return;
|
|
|
|
|
|
2020-02-02 22:07:39 +08:00
|
|
|
|
if (requireNewLineOnAddInfo)
|
|
|
|
|
{
|
|
|
|
|
linkContainer.NewLine();
|
|
|
|
|
requireNewLineOnAddInfo = false;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-15 13:38:49 +08:00
|
|
|
|
// newlines could be contained in API returned user content.
|
|
|
|
|
content = content.Replace("\n", " ");
|
|
|
|
|
|
2020-02-02 22:07:39 +08:00
|
|
|
|
linkContainer.AddIcon(icon, text =>
|
2019-04-25 17:42:19 +08:00
|
|
|
|
{
|
|
|
|
|
text.Font = text.Font.With(size: 10);
|
|
|
|
|
text.Colour = iconColour;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (link != null)
|
2020-02-02 22:07:39 +08:00
|
|
|
|
linkContainer.AddLink(" " + content, link, creationParameters: embolden);
|
2019-04-25 17:42:19 +08:00
|
|
|
|
else
|
2020-02-02 22:07:39 +08:00
|
|
|
|
linkContainer.AddText(" " + content, embolden);
|
2019-04-25 17:42:19 +08:00
|
|
|
|
|
2020-02-02 22:07:39 +08:00
|
|
|
|
addSpacer(linkContainer);
|
2019-04-25 17:42:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void embolden(SpriteText text) => text.Font = text.Font.With(weight: FontWeight.Bold);
|
2019-01-11 08:12:19 +08:00
|
|
|
|
}
|
|
|
|
|
}
|