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
|
|
|
|
|
|
|
|
|
using System.Linq;
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Online.API.Requests;
|
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections.Historical
|
|
|
|
|
{
|
|
|
|
|
public class PaginatedMostPlayedBeatmapContainer : PaginatedContainer
|
|
|
|
|
{
|
2018-09-05 09:23:23 +08:00
|
|
|
|
private GetUserMostPlayedBeatmapsRequest request;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public PaginatedMostPlayedBeatmapContainer(Bindable<User> user)
|
2019-02-28 12:31:40 +08:00
|
|
|
|
: base(user, "Most Played Beatmaps", "No records. :(")
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
ItemsPerPage = 5;
|
|
|
|
|
|
|
|
|
|
ItemsContainer.Direction = FillDirection.Vertical;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void ShowMore()
|
|
|
|
|
{
|
2019-07-15 18:37:25 +08:00
|
|
|
|
request = new GetUserMostPlayedBeatmapsRequest(User.Value.Id, VisiblePages++ * ItemsPerPage, ItemsPerPage);
|
2018-09-05 09:23:23 +08:00
|
|
|
|
request.Success += beatmaps => Schedule(() =>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-05-28 22:04:05 +08:00
|
|
|
|
MoreButton.FadeTo(beatmaps.Count == ItemsPerPage ? 1 : 0);
|
|
|
|
|
MoreButton.IsLoading = false;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
if (!beatmaps.Any() && VisiblePages == 1)
|
|
|
|
|
{
|
|
|
|
|
MissingText.Show();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MissingText.Hide();
|
|
|
|
|
|
|
|
|
|
foreach (var beatmap in beatmaps)
|
|
|
|
|
{
|
|
|
|
|
ItemsContainer.Add(new DrawableMostPlayedRow(beatmap.GetBeatmapInfo(Rulesets), beatmap.PlayCount));
|
|
|
|
|
}
|
2018-09-05 09:23:23 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
Api.Queue(request);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
request?.Cancel();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|