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
|
|
|
|
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
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;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Online.API;
|
|
|
|
|
using osu.Game.Users;
|
2019-08-27 20:47:37 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading;
|
2020-07-30 09:51:09 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2020-11-22 03:49:56 +08:00
|
|
|
|
using osu.Game.Rulesets;
|
2020-11-22 04:03:54 +08:00
|
|
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
|
using osu.Game.Graphics;
|
2021-07-17 21:45:17 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections
|
|
|
|
|
{
|
2020-11-21 08:18:24 +08:00
|
|
|
|
public abstract class PaginatedProfileSubsection<TModel> : ProfileSubsection
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-08-27 20:47:37 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private IAPIProvider api { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-11-22 03:49:56 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
protected RulesetStore Rulesets { get; private set; }
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
protected int VisiblePages;
|
|
|
|
|
protected int ItemsPerPage;
|
|
|
|
|
|
2020-11-21 08:18:24 +08:00
|
|
|
|
protected FillFlowContainer ItemsContainer { get; private set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-09-08 04:08:50 +08:00
|
|
|
|
private APIRequest<List<TModel>> retrievalRequest;
|
|
|
|
|
private CancellationTokenSource loadCancellation;
|
|
|
|
|
|
|
|
|
|
private ShowMoreButton moreButton;
|
2020-11-22 04:03:54 +08:00
|
|
|
|
private OsuSpriteText missing;
|
2021-07-17 21:45:17 +08:00
|
|
|
|
private readonly LocalisableString? missingText;
|
2020-09-08 04:08:50 +08:00
|
|
|
|
|
2021-07-17 22:13:33 +08:00
|
|
|
|
protected PaginatedProfileSubsection(Bindable<User> user, LocalisableString? headerText = null, LocalisableString? missingText = null)
|
2021-05-03 05:31:06 +08:00
|
|
|
|
: base(user, headerText, CounterVisibilityState.AlwaysVisible)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-11-22 04:03:54 +08:00
|
|
|
|
this.missingText = missingText;
|
2020-09-08 04:08:50 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-11-21 08:18:24 +08:00
|
|
|
|
protected override Drawable CreateContent() => new FillFlowContainer
|
2020-09-08 04:08:50 +08:00
|
|
|
|
{
|
2020-11-21 08:18:24 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Direction = FillDirection.Vertical,
|
2020-09-11 01:48:06 +08:00
|
|
|
|
Children = new Drawable[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
ItemsContainer = new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2019-05-28 22:04:05 +08:00
|
|
|
|
Spacing = new Vector2(0, 2),
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
2020-07-30 09:51:09 +08:00
|
|
|
|
moreButton = new ShowMoreButton
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-05-31 04:07:04 +08:00
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Alpha = 0,
|
2019-05-28 22:04:05 +08:00
|
|
|
|
Margin = new MarginPadding { Top = 10 },
|
2019-08-27 20:47:37 +08:00
|
|
|
|
Action = showMore,
|
2020-11-22 04:03:54 +08:00
|
|
|
|
},
|
|
|
|
|
missing = new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Font = OsuFont.GetFont(size: 15),
|
2021-07-17 21:45:17 +08:00
|
|
|
|
Text = missingText ?? string.Empty,
|
2020-11-22 04:03:54 +08:00
|
|
|
|
Alpha = 0,
|
2020-11-21 08:18:24 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-11-22 04:13:46 +08:00
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
User.BindValueChanged(onUserChanged, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void onUserChanged(ValueChangedEvent<User> e)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-08-27 20:47:37 +08:00
|
|
|
|
loadCancellation?.Cancel();
|
|
|
|
|
retrievalRequest?.Cancel();
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
VisiblePages = 0;
|
|
|
|
|
ItemsContainer.Clear();
|
|
|
|
|
|
2019-02-21 17:56:34 +08:00
|
|
|
|
if (e.NewValue != null)
|
2019-12-17 17:50:50 +08:00
|
|
|
|
{
|
2020-09-11 01:48:06 +08:00
|
|
|
|
showMore();
|
|
|
|
|
SetCount(GetCount(e.NewValue));
|
2019-12-17 17:50:50 +08:00
|
|
|
|
}
|
2019-08-27 20:47:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void showMore()
|
|
|
|
|
{
|
|
|
|
|
loadCancellation = new CancellationTokenSource();
|
|
|
|
|
|
|
|
|
|
retrievalRequest = CreateRequest();
|
|
|
|
|
retrievalRequest.Success += UpdateItems;
|
|
|
|
|
|
|
|
|
|
api.Queue(retrievalRequest);
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-28 12:28:57 +08:00
|
|
|
|
protected virtual void UpdateItems(List<TModel> items) => Schedule(() =>
|
2019-08-27 20:47:37 +08:00
|
|
|
|
{
|
2020-09-08 04:33:04 +08:00
|
|
|
|
OnItemsReceived(items);
|
|
|
|
|
|
2019-08-28 12:28:57 +08:00
|
|
|
|
if (!items.Any() && VisiblePages == 1)
|
2019-08-27 20:47:37 +08:00
|
|
|
|
{
|
2019-08-28 12:28:57 +08:00
|
|
|
|
moreButton.Hide();
|
|
|
|
|
moreButton.IsLoading = false;
|
2020-09-08 03:30:43 +08:00
|
|
|
|
|
2021-07-17 21:45:17 +08:00
|
|
|
|
if (missingText.HasValue)
|
2020-11-22 04:03:54 +08:00
|
|
|
|
missing.Show();
|
2020-09-08 03:30:43 +08:00
|
|
|
|
|
2019-08-28 12:28:57 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
2019-08-27 20:47:37 +08:00
|
|
|
|
|
2019-08-28 12:28:57 +08:00
|
|
|
|
LoadComponentsAsync(items.Select(CreateDrawableItem).Where(d => d != null), drawables =>
|
|
|
|
|
{
|
2020-11-22 04:03:54 +08:00
|
|
|
|
missing.Hide();
|
2019-08-28 12:28:57 +08:00
|
|
|
|
moreButton.FadeTo(items.Count == ItemsPerPage ? 1 : 0);
|
|
|
|
|
moreButton.IsLoading = false;
|
2019-08-27 20:47:37 +08:00
|
|
|
|
|
2019-08-28 12:28:57 +08:00
|
|
|
|
ItemsContainer.AddRange(drawables);
|
|
|
|
|
}, loadCancellation.Token);
|
|
|
|
|
});
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-09-11 01:48:06 +08:00
|
|
|
|
protected virtual int GetCount(User user) => 0;
|
|
|
|
|
|
2020-09-08 04:33:04 +08:00
|
|
|
|
protected virtual void OnItemsReceived(List<TModel> items)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-28 12:28:21 +08:00
|
|
|
|
protected abstract APIRequest<List<TModel>> CreateRequest();
|
2019-08-27 20:47:37 +08:00
|
|
|
|
|
2019-08-28 12:31:12 +08:00
|
|
|
|
protected abstract Drawable CreateDrawableItem(TModel model);
|
2019-08-27 20:47:37 +08:00
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
retrievalRequest?.Cancel();
|
2020-11-21 08:18:24 +08:00
|
|
|
|
loadCancellation?.Cancel();
|
|
|
|
|
base.Dispose(isDisposing);
|
2019-08-27 20:47:37 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|