1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 03:27:24 +08:00
osu-lazer/osu.Game/Overlays/Profile/Sections/Kudosu/DrawableKudosuHistoryItem.cs

148 lines
4.5 KiB
C#
Raw Normal View History

// 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 osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
using osu.Game.Online.API.Requests.Responses;
2019-08-19 02:28:07 +08:00
using osu.Game.Online.API.Requests;
using osu.Game.Online.Chat;
namespace osu.Game.Overlays.Profile.Sections.Kudosu
{
2019-08-20 20:00:14 +08:00
public class DrawableKudosuHistoryItem : CompositeDrawable
{
2019-08-20 20:00:14 +08:00
private const int height = 25;
[Resolved]
private OsuColour colours { get; set; }
private readonly APIKudosuHistory historyItem;
2019-08-20 20:00:14 +08:00
private readonly LinkFlowContainer linkFlowContainer;
private readonly DrawableDate date;
public DrawableKudosuHistoryItem(APIKudosuHistory historyItem)
{
this.historyItem = historyItem;
2019-08-20 20:00:14 +08:00
Height = height;
RelativeSizeAxes = Axes.X;
AddRangeInternal(new Drawable[]
{
linkFlowContainer = new LinkFlowContainer
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
AutoSizeAxes = Axes.Both,
},
date = new DrawableDate(historyItem.CreatedAt)
{
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight,
}
});
}
[BackgroundDependencyLoader]
private void load()
{
2019-08-20 20:00:14 +08:00
date.Colour = colours.GreySeafoamLighter;
2019-08-20 20:00:14 +08:00
switch (historyItem.Action)
{
2019-08-20 20:00:14 +08:00
case KudosuAction.VoteGive:
case KudosuAction.Give:
linkFlowContainer.AddText($@"Received ");
addKudosuPart();
addMainPart();
addPostPart();
break;
case KudosuAction.Reset:
addMainPart();
addPostPart();
break;
case KudosuAction.VoteReset:
linkFlowContainer.AddText($@"Lost ");
addKudosuPart();
addMainPart();
addPostPart();
break;
case KudosuAction.DenyKudosuReset:
linkFlowContainer.AddText($@"Denied ");
addKudosuPart();
addMainPart();
addPostPart();
break;
case KudosuAction.Revoke:
addMainPart();
addPostPart();
break;
}
}
2019-08-20 20:00:14 +08:00
private void addKudosuPart()
{
linkFlowContainer.AddText($@"{historyItem.Amount} kudosu", t =>
{
2019-08-20 20:00:14 +08:00
t.Font = t.Font.With(italics: true);
t.Colour = colours.Blue;
});
2019-08-20 20:00:14 +08:00
}
2019-08-20 20:00:14 +08:00
private void addMainPart()
{
var text = createMessage();
2019-08-20 20:00:14 +08:00
linkFlowContainer.AddLinks(text.Text, text.Links);
}
2019-08-20 20:00:14 +08:00
private void addPostPart() => linkFlowContainer.AddLink(historyItem.Post.Title, historyItem.Post.Url);
2019-08-19 02:28:07 +08:00
private MessageFormatter.MessageFormatterResult createMessage()
{
string userLinkTemplate() => $"[{historyItem.Giver?.Url} {historyItem.Giver?.Username}]";
string message;
switch (historyItem.Action)
{
case KudosuAction.Give:
2019-08-20 20:00:14 +08:00
message = $" from {userLinkTemplate()} for a post at ";
2019-08-19 02:28:07 +08:00
break;
case KudosuAction.VoteGive:
2019-08-20 20:00:14 +08:00
message = $" from obtaining votes in modding post of ";
2019-08-19 02:28:07 +08:00
break;
case KudosuAction.Reset:
2019-08-20 20:00:14 +08:00
message = $"Kudosu reset by {userLinkTemplate()} for the post ";
2019-08-19 02:28:07 +08:00
break;
case KudosuAction.VoteReset:
2019-08-20 20:00:14 +08:00
message = $" from losing votes in modding post of ";
2019-08-19 02:28:07 +08:00
break;
case KudosuAction.DenyKudosuReset:
2019-08-20 20:00:14 +08:00
message = $" from modding post ";
2019-08-19 02:28:07 +08:00
break;
case KudosuAction.Revoke:
2019-08-20 20:00:14 +08:00
message = $"Denied kudosu by {userLinkTemplate()} for the post ";
2019-08-19 02:28:07 +08:00
break;
default:
message = string.Empty;
break;
}
return MessageFormatter.FormatText(message);
}
}
}