2021-05-02 23:02:06 +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.
using Markdig.Syntax.Inlines ;
using osu.Framework.Graphics.Containers.Markdown ;
using osu.Framework.Graphics.Cursor ;
namespace osu.Game.Overlays.Wiki.Markdown
{
public class WikiMarkdownImage : MarkdownImage , IHasTooltip
{
public string TooltipText { get ; }
public WikiMarkdownImage ( LinkInline linkInline )
: base ( linkInline . Url )
{
TooltipText = linkInline . Title ;
}
2021-05-26 16:10:09 +08:00
protected override ImageContainer CreateImageContainer ( string url )
2021-05-02 23:02:06 +08:00
{
2021-05-26 16:10:09 +08:00
// The idea is replace "https://website.url/wiki/{path-to-image}" to "https://website.url/wiki/images/{path-to-image}"
2021-05-02 23:02:06 +08:00
// "/wiki/images/*" is route to fetch wiki image from osu!web server (see: https://github.com/ppy/osu-web/blob/4205eb66a4da86bdee7835045e4bf28c35456e04/routes/web.php#L289)
2021-05-26 16:10:09 +08:00
url = url . Replace ( "/wiki/" , "/wiki/images/" ) ;
2021-05-02 23:02:06 +08:00
2021-05-26 16:10:09 +08:00
return base . CreateImageContainer ( url ) ;
2021-05-02 23:02:06 +08:00
}
}
}