2019-01-24 16:43:03 +08: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 17:19:50 +08:00
|
|
|
|
|
2019-08-27 20:47:37 +08:00
|
|
|
|
using System.Collections.Generic;
|
2020-09-08 04:08:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-08-27 20:47:37 +08:00
|
|
|
|
using osu.Game.Online.API;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Online.API.Requests;
|
2019-08-27 20:47:37 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections.Historical
|
|
|
|
|
{
|
2020-09-11 01:48:06 +08:00
|
|
|
|
public class PaginatedMostPlayedBeatmapContainer : PaginatedContainer<APIUserMostPlayedBeatmap>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
public PaginatedMostPlayedBeatmapContainer(Bindable<User> user)
|
2020-09-11 11:17:12 +08:00
|
|
|
|
: base(user, "Most Played Beatmaps", "No records. :(")
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
ItemsPerPage = 5;
|
2020-09-08 04:08:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
2018-04-13 17:19:50 +08:00
|
|
|
|
ItemsContainer.Direction = FillDirection.Vertical;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-27 20:47:37 +08:00
|
|
|
|
protected override APIRequest<List<APIUserMostPlayedBeatmap>> CreateRequest() =>
|
|
|
|
|
new GetUserMostPlayedBeatmapsRequest(User.Value.Id, VisiblePages++, ItemsPerPage);
|
2018-09-05 09:23:23 +08:00
|
|
|
|
|
2019-08-28 12:31:12 +08:00
|
|
|
|
protected override Drawable CreateDrawableItem(APIUserMostPlayedBeatmap model) =>
|
|
|
|
|
new DrawableMostPlayedBeatmap(model.GetBeatmapInfo(Rulesets), model.PlayCount);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|