mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
41 lines
1.5 KiB
C#
41 lines
1.5 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using System.Collections.Generic;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Online.API;
|
|
using osu.Game.Online.API.Requests;
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
using osu.Game.Resources.Localisation.Web;
|
|
using APIUser = osu.Game.Online.API.Requests.Responses.APIUser;
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections.Historical
|
|
{
|
|
public class PaginatedMostPlayedBeatmapContainer : PaginatedProfileSubsection<APIUserMostPlayedBeatmap>
|
|
{
|
|
public PaginatedMostPlayedBeatmapContainer(Bindable<APIUser> user)
|
|
: base(user, UsersStrings.ShowExtraHistoricalMostPlayedTitle)
|
|
{
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
ItemsContainer.Direction = FillDirection.Vertical;
|
|
}
|
|
|
|
protected override int GetCount(APIUser user) => user.BeatmapPlayCountsCount;
|
|
|
|
protected override APIRequest<List<APIUserMostPlayedBeatmap>> CreateRequest(PaginationParameters pagination) =>
|
|
new GetUserMostPlayedBeatmapsRequest(User.Value.Id, pagination);
|
|
|
|
protected override Drawable CreateDrawableItem(APIUserMostPlayedBeatmap mostPlayed) =>
|
|
new DrawableMostPlayedBeatmap(mostPlayed);
|
|
}
|
|
}
|