mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
73 lines
2.1 KiB
C#
73 lines
2.1 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.
|
|
|
|
#nullable disable
|
|
|
|
using System.Collections.Generic;
|
|
using Markdig.Syntax.Inlines;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers.Markdown;
|
|
using osu.Game.Online;
|
|
using osu.Game.Online.Chat;
|
|
using osu.Game.Overlays;
|
|
|
|
namespace osu.Game.Graphics.Containers.Markdown
|
|
{
|
|
public class OsuMarkdownLinkText : MarkdownLinkText
|
|
{
|
|
[Resolved(canBeNull: true)]
|
|
private ILinkHandler linkHandler { get; set; }
|
|
|
|
private readonly string text;
|
|
private readonly string title;
|
|
|
|
public OsuMarkdownLinkText(string text, LinkInline linkInline)
|
|
: base(text, linkInline)
|
|
{
|
|
this.text = text;
|
|
title = linkInline.Title;
|
|
}
|
|
|
|
public OsuMarkdownLinkText(AutolinkInline autolinkInline)
|
|
: base(autolinkInline)
|
|
{
|
|
text = autolinkInline.Url;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
var textDrawable = CreateSpriteText().With(t => t.Text = text);
|
|
|
|
InternalChildren = new Drawable[]
|
|
{
|
|
textDrawable,
|
|
new OsuMarkdownLinkCompiler(new[] { textDrawable })
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Action = OnLinkPressed,
|
|
TooltipText = title ?? Url,
|
|
}
|
|
};
|
|
}
|
|
|
|
protected override void OnLinkPressed() => linkHandler?.HandleLink(Url);
|
|
|
|
private class OsuMarkdownLinkCompiler : DrawableLinkCompiler
|
|
{
|
|
public OsuMarkdownLinkCompiler(IEnumerable<Drawable> parts)
|
|
: base(parts)
|
|
{
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OverlayColourProvider colourProvider)
|
|
{
|
|
IdleColour = colourProvider.Light2;
|
|
HoverColour = colourProvider.Light1;
|
|
}
|
|
}
|
|
}
|
|
}
|