mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:27:31 +08:00
67 lines
2.0 KiB
C#
67 lines
2.0 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.Syntax;
|
|
using Markdig.Syntax.Inlines;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Containers.Markdown;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
namespace osu.Game.Overlays.Wiki
|
|
{
|
|
public class WikiSidebar : OverlaySidebar
|
|
{
|
|
private WikiTableOfContents tableOfContents;
|
|
|
|
protected override Drawable CreateContent() => new FillFlowContainer
|
|
{
|
|
Direction = FillDirection.Vertical,
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Children = new Drawable[]
|
|
{
|
|
new OsuSpriteText
|
|
{
|
|
Text = "CONTENTS",
|
|
Font = OsuFont.GetFont(size: 12, weight: FontWeight.Bold),
|
|
Margin = new MarginPadding { Bottom = 5 },
|
|
},
|
|
tableOfContents = new WikiTableOfContents(),
|
|
},
|
|
};
|
|
|
|
public void AddEntry(HeadingBlock headingBlock, MarkdownHeading heading)
|
|
{
|
|
switch (headingBlock.Level)
|
|
{
|
|
case 2:
|
|
case 3:
|
|
tableOfContents.AddEntry(getTitle(headingBlock.Inline), heading, headingBlock.Level == 3);
|
|
break;
|
|
}
|
|
}
|
|
|
|
private string getTitle(ContainerInline containerInline)
|
|
{
|
|
foreach (var inline in containerInline)
|
|
{
|
|
switch (inline)
|
|
{
|
|
case LiteralInline literalInline:
|
|
return literalInline.Content.ToString();
|
|
|
|
case LinkInline linkInline:
|
|
if (!linkInline.IsImage)
|
|
return getTitle(linkInline);
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
return string.Empty;
|
|
}
|
|
}
|
|
}
|