1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 20:47:25 +08:00
osu-lazer/osu.Game/Overlays/News/NewsHeader.cs

72 lines
2.1 KiB
C#
Raw Normal View History

// 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.
2020-07-12 20:45:48 +08:00
using System;
2019-08-10 23:06:52 +08:00
using osu.Framework.Bindables;
2019-08-10 18:53:34 +08:00
using osu.Framework.Graphics;
using osu.Framework.Localisation;
using osu.Game.Resources.Localisation.Web;
2019-08-10 18:53:34 +08:00
namespace osu.Game.Overlays.News
{
public class NewsHeader : BreadcrumbControlOverlayHeader
2019-08-10 18:53:34 +08:00
{
public LocalisableString FrontPageString => osu.Game.Resources.Localisation.Web.NewsStrings.IndexTitleInfo;
2020-07-12 20:45:48 +08:00
public Action ShowFrontPage;
2021-07-05 23:52:39 +08:00
private readonly Bindable<string> article = new Bindable<string>();
2019-08-10 23:06:52 +08:00
2019-08-10 18:53:34 +08:00
public NewsHeader()
{
TabControl.AddItem(FrontPageString);
2019-08-10 23:06:52 +08:00
article.BindValueChanged(onArticleChanged, true);
}
protected override void LoadComplete()
{
base.LoadComplete();
2020-07-12 20:45:48 +08:00
Current.BindValueChanged(e =>
{
if (e.NewValue == FrontPageString)
2020-07-12 20:45:48 +08:00
ShowFrontPage?.Invoke();
});
2019-08-10 18:53:34 +08:00
}
2020-07-12 20:45:48 +08:00
public void SetFrontPage() => article.Value = null;
public void SetArticle(string slug) => article.Value = slug;
private void onArticleChanged(ValueChangedEvent<string> e)
2019-08-10 23:06:52 +08:00
{
2020-07-12 20:45:48 +08:00
if (e.OldValue != null)
TabControl.RemoveItem(e.OldValue);
2019-08-10 23:06:52 +08:00
2020-07-12 20:45:48 +08:00
if (e.NewValue != null)
2019-08-10 23:06:52 +08:00
{
2020-07-12 20:45:48 +08:00
TabControl.AddItem(e.NewValue);
Current.Value = e.NewValue;
2019-08-10 23:06:52 +08:00
}
else
{
Current.Value = FrontPageString;
2019-08-10 23:06:52 +08:00
}
}
protected override Drawable CreateBackground() => new OverlayHeaderBackground(@"Headers/news");
2019-08-10 18:53:34 +08:00
protected override OverlayTitle CreateTitle() => new NewsHeaderTitle();
2019-08-10 18:53:34 +08:00
private class NewsHeaderTitle : OverlayTitle
2019-08-10 18:53:34 +08:00
{
public NewsHeaderTitle()
{
Title = LayoutStrings.MenuHomeNewsIndex;
Description = osu.Game.Localisation.NewsStrings.HeaderDescription;
IconTexture = "Icons/Hexacons/news";
2019-08-10 18:53:34 +08:00
}
}
}
}