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
|
|
|
|
|
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;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
using osu.Framework.Graphics;
|
2019-08-27 15:47:37 +03:00
|
|
|
|
using osu.Game.Online.API;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
using osu.Game.Online.API.Requests;
|
2019-08-27 15:47:37 +03:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2020-04-21 16:03:18 +09:00
|
|
|
|
using osu.Game.Overlays.BeatmapListing.Panels;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
using osu.Game.Users;
|
2018-11-20 16:51:59 +09:00
|
|
|
|
using osuTK;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections.Beatmaps
|
|
|
|
|
{
|
2020-09-10 20:48:06 +03:00
|
|
|
|
public class PaginatedBeatmapContainer : PaginatedContainer<APIBeatmapSet>
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
|
|
|
|
private const float panel_padding = 10f;
|
|
|
|
|
private readonly BeatmapSetType type;
|
|
|
|
|
|
2020-09-07 23:08:50 +03:00
|
|
|
|
public PaginatedBeatmapContainer(BeatmapSetType type, Bindable<User> user, string headerText)
|
2020-09-11 12:17:12 +09:00
|
|
|
|
: base(user, headerText, "", CounterVisibilityState.AlwaysVisible)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
|
|
|
|
this.type = type;
|
|
|
|
|
ItemsPerPage = 6;
|
2020-09-07 23:08:50 +03:00
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2020-09-07 23:08:50 +03:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
2018-04-13 18:19:50 +09:00
|
|
|
|
ItemsContainer.Spacing = new Vector2(panel_padding);
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-07 23:08:50 +03:00
|
|
|
|
protected override int GetCount(User user)
|
|
|
|
|
{
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
case BeatmapSetType.Favourite:
|
|
|
|
|
return user.FavouriteBeatmapsetCount;
|
|
|
|
|
|
|
|
|
|
case BeatmapSetType.Graveyard:
|
|
|
|
|
return user.GraveyardBeatmapsetCount;
|
|
|
|
|
|
|
|
|
|
case BeatmapSetType.Loved:
|
|
|
|
|
return user.LovedBeatmapsetCount;
|
|
|
|
|
|
|
|
|
|
case BeatmapSetType.RankedAndApproved:
|
|
|
|
|
return user.RankedAndApprovedBeatmapsetCount;
|
|
|
|
|
|
|
|
|
|
case BeatmapSetType.Unranked:
|
|
|
|
|
return user.UnrankedBeatmapsetCount;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-27 15:47:37 +03:00
|
|
|
|
protected override APIRequest<List<APIBeatmapSet>> CreateRequest() =>
|
|
|
|
|
new GetUserBeatmapsRequest(User.Value.Id, type, VisiblePages++, ItemsPerPage);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2019-08-28 13:31:12 +09:00
|
|
|
|
protected override Drawable CreateDrawableItem(APIBeatmapSet model) => !model.OnlineBeatmapSetID.HasValue
|
2019-08-28 13:27:44 +09:00
|
|
|
|
? null
|
2020-04-21 20:55:33 +09:00
|
|
|
|
: new GridBeatmapPanel(model.ToBeatmapSet(Rulesets))
|
2019-08-28 13:27:44 +09:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
};
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
}
|