2020-11-14 15:48:47 +00: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 osu.Framework.Bindables;
|
2021-07-17 14:20:37 +00:00
|
|
|
|
using osu.Framework.Localisation;
|
2021-11-04 09:02:44 +00:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2021-07-17 14:20:37 +00:00
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2020-11-14 15:48:47 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections.Historical
|
|
|
|
|
{
|
|
|
|
|
public partial class ReplaysSubsection : ChartProfileSubsection
|
|
|
|
|
{
|
2021-07-17 14:20:37 +00:00
|
|
|
|
protected override LocalisableString GraphCounterName => UsersStrings.ShowExtraHistoricalReplaysWatchedCountsCountLabel;
|
2021-04-12 18:51:04 +00:00
|
|
|
|
|
2023-01-10 18:24:54 +00:00
|
|
|
|
public ReplaysSubsection(Bindable<UserProfileData?> user)
|
|
|
|
|
: base(user, UsersStrings.ShowExtraHistoricalReplaysWatchedCountsTitle)
|
2020-11-14 15:48:47 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-30 12:17:59 +00:00
|
|
|
|
protected override APIUserHistoryCount[]? GetValues(APIUser? user) => user?.ReplaysWatchedCounts;
|
2020-11-14 15:48:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|