// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Threading; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Game.Online.API.Requests; using osu.Game.Overlays.News; using osu.Game.Overlays.News.Displays; using osu.Game.Overlays.News.Sidebar; namespace osu.Game.Overlays { public class NewsOverlay : OnlineOverlay { private readonly Bindable article = new Bindable(); private readonly Container sidebarContainer; private readonly NewsSidebar sidebar; private readonly Container content; private GetNewsRequest lastRequest; private Cursor lastCursor; /// /// The year currently being displayed. If null, the main listing is being displayed. /// private int? displayedYear; private CancellationTokenSource cancellationToken; private bool displayUpdateRequired = true; public NewsOverlay() : base(OverlayColourScheme.Purple, false) { Child = new GridContainer { RelativeSizeAxes = Axes.X, AutoSizeAxes = Axes.Y, RowDimensions = new[] { new Dimension(GridSizeMode.AutoSize) }, ColumnDimensions = new[] { new Dimension(GridSizeMode.AutoSize), new Dimension() }, Content = new[] { new Drawable[] { sidebarContainer = new Container { AutoSizeAxes = Axes.X, Child = sidebar = new NewsSidebar() }, content = new Container { RelativeSizeAxes = Axes.X, AutoSizeAxes = Axes.Y } } } }; } protected override void LoadComplete() { base.LoadComplete(); // should not be run until first pop-in to avoid requesting data before user views. article.BindValueChanged(onArticleChanged); } protected override NewsHeader CreateHeader() => new NewsHeader { ShowFrontPage = ShowFrontPage }; protected override void PopIn() { base.PopIn(); if (displayUpdateRequired) { article.TriggerChange(); displayUpdateRequired = false; } } protected override void PopOutComplete() { base.PopOutComplete(); displayUpdateRequired = true; } public void ShowFrontPage() { article.Value = null; Show(); } public void ShowYear(int year) { loadListing(year); Show(); } public void ShowArticle(string slug) { article.Value = slug; Show(); } protected void LoadDisplay(Drawable display) { ScrollFlow.ScrollToStart(); LoadComponentAsync(display, loaded => { content.Child = loaded; Loading.Hide(); }, (cancellationToken = new CancellationTokenSource()).Token); } protected override void UpdateAfterChildren() { base.UpdateAfterChildren(); sidebarContainer.Height = DrawHeight; sidebarContainer.Y = Math.Clamp(ScrollFlow.Current - Header.DrawHeight, 0, Math.Max(ScrollFlow.ScrollContent.DrawHeight - DrawHeight - Header.DrawHeight, 0)); } private void onArticleChanged(ValueChangedEvent article) { if (article.NewValue == null) loadListing(); else loadArticle(article.NewValue); } private void loadListing(int? year = null) { beginLoading(); Header.SetFrontPage(); displayedYear = year; lastCursor = null; performListingRequest(response => { sidebar.Metadata.Value = response.SidebarMetadata; var listing = new ArticleListing(response); listing.RequestMorePosts += getMorePosts; LoadDisplay(listing); }); } private void getMorePosts() { lastRequest?.Cancel(); performListingRequest(response => { if (content.Child is ArticleListing listing) listing.AddPosts(response); }); } private void loadArticle(string article) { beginLoading(); Header.SetArticle(article); // Temporary, should be handled by ArticleDisplay later LoadDisplay(Empty()); } private void performListingRequest(Action onSuccess) { lastRequest = new GetNewsRequest(displayedYear, lastCursor); lastRequest.Success += response => Schedule(() => { lastCursor = response.Cursor; onSuccess?.Invoke(response); }); API.PerformAsync(lastRequest); } private void beginLoading() { lastRequest?.Cancel(); cancellationToken?.Cancel(); Loading.Show(); } protected override void Dispose(bool isDisposing) { lastRequest?.Cancel(); cancellationToken?.Cancel(); base.Dispose(isDisposing); } } }