mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
146 lines
4.1 KiB
C#
146 lines
4.1 KiB
C#
// 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;
|
|
using System.Threading;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
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<NewsHeader>
|
|
{
|
|
private readonly Bindable<string> article = new Bindable<string>(null);
|
|
|
|
protected override Container<Drawable> Content => content;
|
|
|
|
private readonly Container content;
|
|
private readonly Container sidebarContainer;
|
|
|
|
public NewsOverlay()
|
|
: base(OverlayColourScheme.Purple, false)
|
|
{
|
|
base.Content.Add(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 = 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
|
|
};
|
|
|
|
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<string> 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 =>
|
|
{
|
|
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));
|
|
}
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
{
|
|
cancellationToken?.Cancel();
|
|
base.Dispose(isDisposing);
|
|
}
|
|
}
|
|
}
|