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

143 lines
4.7 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;
2019-08-30 15:13:21 +08:00
using System;
2019-08-30 15:22:49 +08:00
using osuTK;
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,
2019-09-02 14:37:38 +08:00
Spacing = new Vector2(0, 3),
2019-08-20 20:00:14 +08:00
},
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-28 16:29:18 +08:00
string prefix = getPrefix(historyItem);
var formattedSource = MessageFormatter.FormatText(getSource(historyItem));
if (!string.IsNullOrEmpty(prefix))
{
linkFlowContainer.AddText(prefix);
2019-09-02 14:37:38 +08:00
linkFlowContainer.AddText($@" {Math.Abs(historyItem.Amount)} kudosu ", t =>
2019-08-28 16:29:18 +08:00
{
t.Font = t.Font.With(italics: true);
t.Colour = colours.Blue;
});
}
2019-09-02 14:37:38 +08:00
linkFlowContainer.AddLinks(formattedSource.Text, formattedSource.Links);
linkFlowContainer.AddText(" ");
2019-08-28 16:29:18 +08:00
linkFlowContainer.AddLink(historyItem.Post.Title, historyItem.Post.Url);
}
private string getSource(APIKudosuHistory historyItem)
{
string userLink() => $"[{historyItem.Giver?.Url} {historyItem.Giver?.Username}]";
2019-08-20 21:11:59 +08:00
2019-08-20 20:00:14 +08:00
switch (historyItem.Action)
{
2019-08-20 20:00:14 +08:00
case KudosuAction.VoteGive:
2019-08-30 15:22:49 +08:00
return @"from obtaining votes in modding post of";
2019-08-20 21:11:59 +08:00
2019-09-02 14:57:23 +08:00
case KudosuAction.ForumGive:
2019-08-30 15:22:49 +08:00
return $@"from {userLink()} for a post at";
2019-08-20 20:00:14 +08:00
2019-09-02 14:57:23 +08:00
case KudosuAction.ForumReset:
2019-08-28 16:29:18 +08:00
return $@"Kudosu reset by {userLink()} for the post";
2019-08-20 20:00:14 +08:00
case KudosuAction.VoteReset:
2019-08-30 15:22:49 +08:00
return @"from losing votes in modding post of";
2019-08-20 20:00:14 +08:00
case KudosuAction.DenyKudosuReset:
2019-08-30 15:22:49 +08:00
return @"from modding post";
2019-08-20 20:00:14 +08:00
2019-09-02 14:57:23 +08:00
case KudosuAction.ForumRevoke:
2019-08-28 16:29:18 +08:00
return $@"Denied kudosu by {userLink()} for the post";
2019-08-22 21:50:54 +08:00
case KudosuAction.AllowKudosuGive:
2019-08-30 15:22:49 +08:00
return @"from kudosu deny repeal of modding post";
2019-08-22 21:50:54 +08:00
case KudosuAction.DeleteReset:
2019-08-30 15:22:49 +08:00
return @"from modding post deletion of";
2019-08-22 21:50:54 +08:00
case KudosuAction.RestoreGive:
2019-08-30 15:22:49 +08:00
return @"from modding post restoration of";
2019-08-22 21:50:54 +08:00
case KudosuAction.RecalculateGive:
2019-08-30 15:22:49 +08:00
return @"from votes recalculation in modding post of";
2019-08-22 21:50:54 +08:00
case KudosuAction.RecalculateReset:
2019-08-30 15:22:49 +08:00
return @"from votes recalculation in modding post of";
2019-08-27 20:30:41 +08:00
2019-08-28 16:29:18 +08:00
default:
2019-08-30 15:22:49 +08:00
return @"from unknown event";
2019-08-28 16:29:18 +08:00
}
2019-08-20 20:00:14 +08:00
}
2019-08-28 16:29:18 +08:00
private string getPrefix(APIKudosuHistory historyItem)
2019-08-20 20:00:14 +08:00
{
2019-08-28 16:29:18 +08:00
switch (historyItem.Action)
{
2019-08-28 16:29:18 +08:00
case KudosuAction.VoteGive:
2019-09-02 14:57:23 +08:00
case KudosuAction.ForumGive:
2019-09-02 14:44:21 +08:00
case KudosuAction.AllowKudosuGive:
case KudosuAction.RestoreGive:
case KudosuAction.RecalculateGive:
2019-08-28 16:29:18 +08:00
return @"Received";
2019-08-28 16:29:18 +08:00
case KudosuAction.DenyKudosuReset:
return @"Denied";
case KudosuAction.DeleteReset:
2019-09-02 14:44:21 +08:00
case KudosuAction.VoteReset:
2019-08-28 16:29:18 +08:00
case KudosuAction.RecalculateReset:
return @"Lost";
default:
return null;
}
}
}
}