1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-29 17:07:33 +08:00
osu-lazer/osu.Game/Overlays/Profile/Sections/Beatmaps/PaginatedBeatmapContainer.cs

72 lines
2.3 KiB
C#
Raw Normal View History

// 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
using System.Collections.Generic;
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;
2021-07-17 21:45:17 +08:00
using osu.Framework.Localisation;
using osu.Game.Online.API;
2018-04-13 17:19:50 +08:00
using osu.Game.Online.API.Requests;
using osu.Game.Online.API.Requests.Responses;
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
{
2020-11-21 08:18:24 +08:00
public class PaginatedBeatmapContainer : PaginatedProfileSubsection<APIBeatmapSet>
2018-04-13 17:19:50 +08:00
{
private const float panel_padding = 10f;
private readonly BeatmapSetType type;
2021-07-17 21:45:17 +08:00
public PaginatedBeatmapContainer(BeatmapSetType type, Bindable<User> user, LocalisableString headerText)
2021-07-17 21:53:24 +08:00
: base(user, headerText)
2018-04-13 17:19:50 +08:00
{
this.type = type;
ItemsPerPage = 6;
}
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
private void load()
{
2018-04-13 17:19:50 +08:00
ItemsContainer.Spacing = new Vector2(panel_padding);
}
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.Ranked:
return user.RankedBeatmapsetCount;
case BeatmapSetType.Pending:
return user.PendingBeatmapsetCount;
default:
return 0;
}
}
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
? null
2020-04-21 19:55:33 +08:00
: new GridBeatmapPanel(model.ToBeatmapSet(Rulesets))
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
};
2018-04-13 17:19:50 +08:00
}
}