mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 22:07:40 +08:00
37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
// 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;
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
using osu.Game.Online.API;
|
|
using System.Collections.Generic;
|
|
using osuTK;
|
|
using osu.Framework.Allocation;
|
|
using osu.Game.Resources.Localisation.Web;
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections.Recent
|
|
{
|
|
public class PaginatedRecentActivityContainer : PaginatedProfileSubsection<APIRecentActivity>
|
|
{
|
|
public PaginatedRecentActivityContainer(Bindable<User> user)
|
|
: base(user, missingText: EventsStrings.Empty)
|
|
{
|
|
ItemsPerPage = 10;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
ItemsContainer.Spacing = new Vector2(0, 8);
|
|
}
|
|
|
|
protected override APIRequest<List<APIRecentActivity>> CreateRequest() =>
|
|
new GetUserRecentActivitiesRequest(User.Value.Id, VisiblePages++, ItemsPerPage);
|
|
|
|
protected override Drawable CreateDrawableItem(APIRecentActivity model) => new DrawableRecentActivity(model);
|
|
}
|
|
}
|