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;
|
2020-04-21 15:03:18 +08:00
|
|
|
|
using osu.Game.Overlays.BeatmapListing.Panels;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
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-28 12:31:12 +08:00
|
|
|
|
protected override Drawable CreateDrawableItem(APIBeatmapSet model) => !model.OnlineBeatmapSetID.HasValue
|
2019-08-28 12:27:44 +08:00
|
|
|
|
? null
|
2020-04-21 15:03:18 +08:00
|
|
|
|
: new BeatmapPanelGrid(model.ToBeatmapSet(Rulesets))
|
2019-08-28 12:27:44 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
};
|
2019-12-17 17:36:44 +08:00
|
|
|
|
|
2019-12-17 18:41:28 +08:00
|
|
|
|
protected override int GetCount(User user) => type switch
|
2019-12-17 17:36:44 +08:00
|
|
|
|
{
|
2019-12-17 18:41:28 +08:00
|
|
|
|
BeatmapSetType.Favourite => user.FavouriteBeatmapsetCount,
|
|
|
|
|
BeatmapSetType.Graveyard => user.GraveyardBeatmapsetCount,
|
|
|
|
|
BeatmapSetType.Loved => user.LovedBeatmapsetCount,
|
|
|
|
|
BeatmapSetType.RankedAndApproved => user.RankedAndApprovedBeatmapsetCount,
|
|
|
|
|
BeatmapSetType.Unranked => user.UnrankedBeatmapsetCount,
|
|
|
|
|
_ => 0
|
|
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|