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;
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
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.Overlays.Direct;
|
|
|
|
|
using osu.Game.Users;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections.Beatmaps
|
|
|
|
|
{
|
2019-08-27 20:47:37 +08:00
|
|
|
|
public class PaginatedBeatmapContainer : PaginatedContainer<APIBeatmapSet>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
private const float panel_padding = 10f;
|
|
|
|
|
private readonly BeatmapSetType type;
|
|
|
|
|
|
|
|
|
|
public PaginatedBeatmapContainer(BeatmapSetType type, Bindable<User> user, string header, string missing = "None... yet.")
|
|
|
|
|
: base(user, header, missing)
|
|
|
|
|
{
|
|
|
|
|
this.type = type;
|
|
|
|
|
|
|
|
|
|
ItemsPerPage = 6;
|
|
|
|
|
|
|
|
|
|
ItemsContainer.Spacing = new Vector2(panel_padding);
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-27 20:47:37 +08:00
|
|
|
|
protected override APIRequest<List<APIBeatmapSet>> CreateRequest() =>
|
|
|
|
|
new GetUserBeatmapsRequest(User.Value.Id, type, VisiblePages++, ItemsPerPage);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-08-27 20:58:57 +08:00
|
|
|
|
protected override bool AllowCreate(APIBeatmapSet item) => item.OnlineBeatmapSetID.HasValue;
|
|
|
|
|
|
2019-08-27 20:47:37 +08:00
|
|
|
|
protected override Drawable CreateDrawableItem(APIBeatmapSet item) => new DirectGridPanel(item.ToBeatmapSet(Rulesets))
|
2018-09-05 09:23:23 +08:00
|
|
|
|
{
|
2019-08-27 20:47:37 +08:00
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|