1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 02:37:19 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

90 lines
2.8 KiB
C#
Raw Normal View History

2020-11-14 18:48:47 +03: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.
2020-11-14 19:17:01 +03:00
using System.Collections.Generic;
2020-11-24 13:10:11 +09:00
using System.Linq;
2020-11-14 18:48:47 +03:00
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2021-07-17 16:20:37 +02:00
using osu.Framework.Localisation;
using osu.Game.Online.API.Requests.Responses;
2020-11-14 18:48:47 +03:00
namespace osu.Game.Overlays.Profile.Sections.Historical
{
public abstract partial class ChartProfileSubsection : ProfileSubsection
{
2022-12-30 13:17:59 +01:00
private ProfileLineChart chart = null!;
2020-11-14 18:48:47 +03:00
/// <summary>
/// Text describing the value being plotted on the graph, which will be displayed as a prefix to the value in the history graph tooltip.
/// </summary>
2021-07-17 16:20:37 +02:00
protected abstract LocalisableString GraphCounterName { get; }
2023-01-10 19:24:54 +01:00
protected ChartProfileSubsection(Bindable<UserProfileData?> user, LocalisableString headerText)
: base(user, headerText)
2020-11-14 18:48:47 +03:00
{
}
protected override Drawable CreateContent() => new Container
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Padding = new MarginPadding
{
Top = 10,
Left = 20,
Right = 40
},
Child = chart = new ProfileLineChart(GraphCounterName)
2020-11-14 18:48:47 +03:00
};
2020-11-22 02:13:35 +03:00
protected override void LoadComplete()
{
base.LoadComplete();
2023-01-10 19:24:54 +01:00
User.BindValueChanged(onUserChanged, true);
2020-11-22 02:13:35 +03:00
}
2023-01-09 17:37:28 +01:00
private void onUserChanged(ValueChangedEvent<UserProfileData?> e)
2020-11-14 18:48:47 +03:00
{
var values = GetValues(e.NewValue?.User);
2020-11-14 18:48:47 +03:00
2020-11-24 13:12:04 +09:00
if (values == null || values.Length <= 1)
2020-11-14 18:48:47 +03:00
{
2020-11-24 13:12:04 +09:00
Hide();
2020-11-22 02:25:12 +03:00
return;
}
2020-11-14 19:17:01 +03:00
2020-11-24 13:12:04 +09:00
chart.Values = fillZeroValues(values);
Show();
2020-11-22 02:25:12 +03:00
}
2020-11-14 19:17:01 +03:00
2020-11-24 13:10:11 +09:00
/// <summary>
/// Add entries for any missing months (filled with zero values).
/// </summary>
private APIUserHistoryCount[] fillZeroValues(APIUserHistoryCount[] historyEntries)
2020-11-22 02:25:12 +03:00
{
var filledHistoryEntries = new List<APIUserHistoryCount>();
2020-11-14 19:17:01 +03:00
2020-11-24 13:10:11 +09:00
foreach (var entry in historyEntries)
2020-11-22 02:25:12 +03:00
{
2020-11-24 13:10:11 +09:00
var lastFilled = filledHistoryEntries.LastOrDefault();
while (lastFilled?.Date.AddMonths(1) < entry.Date)
2020-11-14 19:17:01 +03:00
{
filledHistoryEntries.Add(lastFilled = new APIUserHistoryCount
2020-11-22 02:25:12 +03:00
{
Count = 0,
2020-11-24 13:10:11 +09:00
Date = lastFilled.Date.AddMonths(1)
2020-11-22 02:25:12 +03:00
});
2020-11-14 19:17:01 +03:00
}
2020-11-24 13:10:11 +09:00
filledHistoryEntries.Add(entry);
2020-11-14 18:48:47 +03:00
}
2020-11-24 13:10:11 +09:00
return filledHistoryEntries.ToArray();
2020-11-14 18:48:47 +03:00
}
2022-12-30 13:17:59 +01:00
protected abstract APIUserHistoryCount[]? GetValues(APIUser? user);
2020-11-14 18:48:47 +03:00
}
}