1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-29 23:17:29 +08:00
osu-lazer/osu.Game/Overlays/Profile/Header/BottomHeaderContainer.cs

159 lines
5.5 KiB
C#
Raw Normal View History

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.
using System;
using System.Linq;
using osu.Framework.Allocation;
2019-03-10 06:58:14 +08:00
using osu.Framework.Bindables;
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-04-25 17:42:19 +08:00
public readonly Bindable<User> User = new Bindable<User>();
private LinkFlowContainer linkContainer;
2019-04-25 17:42:19 +08:00
private Color4 iconColour;
2019-04-25 17:42:19 +08:00
public BottomHeaderContainer()
{
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[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
2020-01-30 05:10:19 +08:00
Colour = colourProvider.Background4
},
linkContainer = new LinkFlowContainer(text => text.Font = text.Font.With(size: 12))
{
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-03-10 06:58:14 +08:00
private void updateDisplay(User user)
{
linkContainer.Clear();
if (user == null) return;
if (user.JoinDate.ToUniversalTime().Year < 2008)
linkContainer.AddText("Here since the beginning");
else
{
linkContainer.AddText("Joined ");
linkContainer.AddText(new DrawableDate(user.JoinDate), embolden);
}
addSpacer(linkContainer);
2019-06-19 00:13:21 +08:00
if (user.IsOnline)
{
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)
{
linkContainer.AddText("Last seen ");
linkContainer.AddText(new DrawableDate(user.LastVisit.Value), embolden);
addSpacer(linkContainer);
}
if (user.PlayStyles?.Length > 0)
{
linkContainer.AddText("Plays with ");
linkContainer.AddText(string.Join(", ", user.PlayStyles.Select(style => style.GetDescription())), embolden);
addSpacer(linkContainer);
}
linkContainer.AddText("Contributed ");
linkContainer.AddLink($@"{user.PostCount:#,##0} forum posts", $"https://osu.ppy.sh/users/{user.Id}/posts", creationParameters: embolden);
2020-01-31 00:46:59 +08:00
string websiteWithoutProtocol = user.Website;
2020-01-31 00:46:59 +08:00
if (!string.IsNullOrEmpty(websiteWithoutProtocol))
{
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
}
}
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);
requireNewLineOnAddInfo = true;
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-04-25 17:42:19 +08:00
private void addSpacer(OsuTextFlowContainer textFlow) => textFlow.AddArbitraryDrawable(new Container { Width = 15 });
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;
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", " ");
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)
linkContainer.AddLink(" " + content, link, creationParameters: embolden);
2019-04-25 17:42:19 +08:00
else
linkContainer.AddText(" " + content, embolden);
2019-04-25 17:42:19 +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);
}
}