2019-08-09 16:14:38 +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.
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Online.API.Requests;
|
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
using osu.Framework.Bindables;
|
2019-08-23 19:11:21 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
|
|
|
using osu.Game.Online.API;
|
|
|
|
|
using System.Collections.Generic;
|
2021-07-17 23:36:49 +08:00
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2019-08-09 16:14:38 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections.Kudosu
|
|
|
|
|
{
|
2020-11-21 08:18:24 +08:00
|
|
|
|
public class PaginatedKudosuHistoryContainer : PaginatedProfileSubsection<APIKudosuHistory>
|
2019-08-09 16:14:38 +08:00
|
|
|
|
{
|
2020-09-08 03:30:43 +08:00
|
|
|
|
public PaginatedKudosuHistoryContainer(Bindable<User> user)
|
2021-07-17 23:36:49 +08:00
|
|
|
|
: base(user, missingText: UsersStrings.ShowExtraKudosuEntryEmpty)
|
2019-08-09 16:14:38 +08:00
|
|
|
|
{
|
|
|
|
|
ItemsPerPage = 5;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-23 19:11:21 +08:00
|
|
|
|
protected override APIRequest<List<APIKudosuHistory>> CreateRequest()
|
|
|
|
|
=> new GetUserKudosuHistoryRequest(User.Value.Id, VisiblePages++, ItemsPerPage);
|
2019-08-09 16:14:38 +08:00
|
|
|
|
|
2019-08-23 19:11:21 +08:00
|
|
|
|
protected override Drawable CreateDrawableItem(APIKudosuHistory item) => new DrawableKudosuHistoryItem(item);
|
2019-08-09 16:14:38 +08:00
|
|
|
|
}
|
|
|
|
|
}
|