mirror of
https://github.com/ppy/osu
synced 2025-03-04 18:40:24 +00:00
77 lines
2.4 KiB
C#
77 lines
2.4 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 Markdig.Extensions.Yaml;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Containers.Markdown;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Game.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Wiki.Markdown
|
|
{
|
|
public class WikiNoticeContainer : FillFlowContainer
|
|
{
|
|
private readonly bool isOutdated;
|
|
private readonly bool needsCleanup;
|
|
|
|
public WikiNoticeContainer(YamlFrontMatterBlock yamlFrontMatterBlock)
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
AutoSizeAxes = Axes.Y;
|
|
Direction = FillDirection.Vertical;
|
|
|
|
foreach (var line in yamlFrontMatterBlock.Lines)
|
|
{
|
|
switch (line.ToString())
|
|
{
|
|
case "outdated: true":
|
|
isOutdated = true;
|
|
break;
|
|
|
|
case "needs_cleanup: true":
|
|
needsCleanup = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
private class NoticeBox : Container
|
|
{
|
|
[Resolved]
|
|
private IMarkdownTextFlowComponent parentFlowComponent { get; set; }
|
|
|
|
public string Text { get; set; }
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OverlayColourProvider colourProvider, OsuColour colour)
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
AutoSizeAxes = Axes.Y;
|
|
MarkdownTextFlowContainer textFlow;
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = colourProvider.Background4,
|
|
},
|
|
textFlow = parentFlowComponent.CreateTextFlow().With(t =>
|
|
{
|
|
t.Colour = colour.Orange1;
|
|
t.Padding = new MarginPadding
|
|
{
|
|
Vertical = 10,
|
|
Horizontal = 15,
|
|
};
|
|
})
|
|
};
|
|
|
|
textFlow.AddText(Text);
|
|
}
|
|
}
|
|
}
|
|
}
|