1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 09:57:26 +08:00
osu-lazer/osu.Game/Overlays/News/Displays/ArticleListing.cs

104 lines
3.3 KiB
C#
Raw Normal View History

2020-07-09 09:02:14 +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 System;
2020-07-09 09:02:14 +08:00
using System.Linq;
using System.Threading;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics.UserInterface;
using osu.Game.Online.API.Requests;
using osuTK;
namespace osu.Game.Overlays.News.Displays
{
/// <summary>
/// Lists articles in a vertical flow for a specified year.
/// </summary>
public class ArticleListing : CompositeDrawable
2020-07-09 09:02:14 +08:00
{
public Action RequestMorePosts;
2020-07-09 09:02:14 +08:00
2020-07-25 14:26:29 +08:00
private FillFlowContainer content;
private ShowMoreButton showMore;
2020-07-09 09:02:14 +08:00
private readonly GetNewsResponse initialResponse;
/// <summary>
/// Instantiate a listing for the specified year.
/// </summary>
/// <param name="initialResponse">Initial response to create articles from.</param>
public ArticleListing(GetNewsResponse initialResponse)
{
this.initialResponse = initialResponse;
}
2020-07-25 14:26:29 +08:00
[BackgroundDependencyLoader]
private void load()
2020-07-09 09:02:14 +08:00
{
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
Padding = new MarginPadding
{
Vertical = 20,
Left = 30,
Right = 50
};
InternalChild = new FillFlowContainer
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Spacing = new Vector2(0, 10),
Children = new Drawable[]
{
content = new FillFlowContainer
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Spacing = new Vector2(0, 10),
Children = initialResponse.NewsPosts.Select(p => new NewsCard(p)).ToList()
2020-07-09 09:02:14 +08:00
},
showMore = new ShowMoreButton
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Margin = new MarginPadding
{
Top = 15
},
Action = RequestMorePosts,
Alpha = initialResponse.Cursor != null ? 1 : 0
2020-07-09 09:02:14 +08:00
}
}
};
}
private CancellationTokenSource cancellationToken;
public void AddPosts(GetNewsResponse response)
2020-07-09 09:02:14 +08:00
{
2020-07-25 14:26:29 +08:00
cancellationToken?.Cancel();
LoadComponentsAsync(response.NewsPosts.Select(p => new NewsCard(p)).ToList(), loaded =>
2020-07-09 09:02:14 +08:00
{
content.AddRange(loaded);
2020-07-09 09:02:14 +08:00
showMore.IsLoading = false;
showMore.Alpha = response.Cursor != null ? 1 : 0;
2020-07-09 09:02:14 +08:00
}, (cancellationToken = new CancellationTokenSource()).Token);
}
protected override void Dispose(bool isDisposing)
{
cancellationToken?.Cancel();
base.Dispose(isDisposing);
}
}
}