// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Threading; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Shapes; using osu.Game.Graphics.UserInterface; using osu.Game.Overlays.News; using osu.Game.Overlays.News.Displays; namespace osu.Game.Overlays { public class NewsOverlay : FullscreenOverlay { private readonly Bindable article = new Bindable(null); private Container content; private LoadingLayer loading; private OverlayScrollContainer scrollFlow; public NewsOverlay() : base(OverlayColourScheme.Purple, new NewsHeader()) { } [BackgroundDependencyLoader] private void load() { Children = new Drawable[] { new Box { RelativeSizeAxes = Axes.Both, Colour = ColourProvider.Background5, }, scrollFlow = new OverlayScrollContainer { RelativeSizeAxes = Axes.Both, ScrollbarVisible = false, Child = new FillFlowContainer { RelativeSizeAxes = Axes.X, AutoSizeAxes = Axes.Y, Direction = FillDirection.Vertical, Children = new Drawable[] { Header.With(h => { h.ShowFrontPage = ShowFrontPage; }), content = new Container { RelativeSizeAxes = Axes.X, AutoSizeAxes = Axes.Y, } }, }, }, loading = new LoadingLayer(content), }; } protected override void LoadComplete() { base.LoadComplete(); // should not be run until first pop-in to avoid requesting data before user views. article.BindValueChanged(onArticleChanged); } private bool displayUpdateRequired = true; 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 ShowArticle(string slug) { article.Value = slug; Show(); } private CancellationTokenSource cancellationToken; private void onArticleChanged(ValueChangedEvent e) { cancellationToken?.Cancel(); loading.Show(); if (e.NewValue == null) { Header.SetFrontPage(); LoadDisplay(new FrontPageDisplay()); return; } Header.SetArticle(e.NewValue); LoadDisplay(Empty()); } protected void LoadDisplay(Drawable display) { scrollFlow.ScrollToStart(); LoadComponentAsync(display, loaded => { content.Child = loaded; loading.Hide(); }, (cancellationToken = new CancellationTokenSource()).Token); } protected override void Dispose(bool isDisposing) { cancellationToken?.Cancel(); base.Dispose(isDisposing); } } }