1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 01:27:25 +08:00
osu-lazer/osu.Game/Overlays/Wiki/Markdown/WikiNoticeContainer.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

102 lines
3.3 KiB
C#
Raw Normal View History

2021-05-21 17:04:08 +08:00
// 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.
2022-06-17 15:37:17 +08:00
#nullable disable
2021-05-21 17:04:08 +08:00
using Markdig.Extensions.Yaml;
2021-05-21 17:06:43 +08:00
using osu.Framework.Allocation;
2021-05-21 17:04:08 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2021-05-21 17:06:43 +08:00
using osu.Framework.Graphics.Containers.Markdown;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Localisation;
2021-05-21 17:06:43 +08:00
using osu.Game.Graphics;
using osu.Game.Resources.Localisation.Web;
2021-05-21 17:04:08 +08:00
namespace osu.Game.Overlays.Wiki.Markdown
{
public class WikiNoticeContainer : FillFlowContainer
{
2021-05-21 17:05:37 +08:00
private readonly bool isOutdated;
private readonly bool needsCleanup;
2021-05-21 17:04:08 +08:00
public WikiNoticeContainer(YamlFrontMatterBlock yamlFrontMatterBlock)
{
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
Direction = FillDirection.Vertical;
2021-05-21 17:05:37 +08:00
foreach (object line in yamlFrontMatterBlock.Lines)
2021-05-21 17:05:37 +08:00
{
switch (line.ToString())
{
case "outdated: true":
isOutdated = true;
break;
case "needs_cleanup: true":
needsCleanup = true;
break;
}
}
2021-05-21 17:04:08 +08:00
}
2021-05-21 17:06:43 +08:00
2021-05-21 17:08:30 +08:00
[BackgroundDependencyLoader]
private void load()
{
// Reference : https://github.com/ppy/osu-web/blob/master/resources/views/wiki/_notice.blade.php and https://github.com/ppy/osu-web/blob/master/resources/lang/en/wiki.php
// TODO : add notice box for fallback translation, legal translation and outdated translation after implement wiki locale in the future.
if (isOutdated)
{
Add(new NoticeBox
{
Text = WikiStrings.ShowIncompleteOrOutdated,
2021-05-21 17:08:30 +08:00
});
}
else if (needsCleanup)
{
Add(new NoticeBox
{
Text = WikiStrings.ShowNeedsCleanupOrRewrite,
2021-05-21 17:08:30 +08:00
});
}
}
2021-05-21 17:06:43 +08:00
private class NoticeBox : Container
{
[Resolved]
private IMarkdownTextFlowComponent parentFlowComponent { get; set; }
public LocalisableString Text { get; set; }
2021-05-21 17:06:43 +08:00
[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);
}
}
2021-05-21 17:04:08 +08:00
}
}