2019-01-24 17:43:03 +09: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.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2019-08-27 15:47:37 +03:00
|
|
|
|
using System.Collections.Generic;
|
2020-09-07 23:08:50 +03:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 19:04:31 +09:00
|
|
|
|
using osu.Framework.Bindables;
|
2017-11-19 14:19:05 +01:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-08-27 15:47:37 +03:00
|
|
|
|
using osu.Game.Online.API;
|
2017-11-19 14:19:05 +01:00
|
|
|
|
using osu.Game.Online.API.Requests;
|
2019-08-27 15:47:37 +03:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2021-07-17 16:20:37 +02:00
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2021-11-04 18:02:44 +09:00
|
|
|
|
using APIUser = osu.Game.Online.API.Requests.Responses.APIUser;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-11-19 14:19:05 +01:00
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections.Historical
|
|
|
|
|
{
|
2020-11-21 03:18:24 +03:00
|
|
|
|
public class PaginatedMostPlayedBeatmapContainer : PaginatedProfileSubsection<APIUserMostPlayedBeatmap>
|
2017-11-19 14:19:05 +01:00
|
|
|
|
{
|
2021-11-04 18:02:44 +09:00
|
|
|
|
public PaginatedMostPlayedBeatmapContainer(Bindable<APIUser> user)
|
2021-07-17 16:20:37 +02:00
|
|
|
|
: base(user, UsersStrings.ShowExtraHistoricalMostPlayedTitle)
|
2017-11-19 14:19:05 +01:00
|
|
|
|
{
|
2020-09-07 23:08:50 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
2017-11-19 14:19:05 +01:00
|
|
|
|
ItemsContainer.Direction = FillDirection.Vertical;
|
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2021-12-09 21:15:00 -08:00
|
|
|
|
protected override int GetCount(APIUser user) => user.BeatmapPlayCountsCount;
|
2020-11-12 03:11:29 +03:00
|
|
|
|
|
2022-04-19 02:48:34 +03:00
|
|
|
|
protected override APIRequest<List<APIUserMostPlayedBeatmap>> CreateRequest(PaginationParameters pagination) =>
|
2022-04-19 02:04:23 +03:00
|
|
|
|
new GetUserMostPlayedBeatmapsRequest(User.Value.Id, pagination);
|
2018-09-05 10:23:23 +09:00
|
|
|
|
|
2021-10-22 21:25:13 +09:00
|
|
|
|
protected override Drawable CreateDrawableItem(APIUserMostPlayedBeatmap mostPlayed) =>
|
|
|
|
|
new DrawableMostPlayedBeatmap(mostPlayed);
|
2017-11-19 14:19:05 +01:00
|
|
|
|
}
|
|
|
|
|
}
|