// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. 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.Chat; using osu.Game.Overlays; namespace osu.Game.Graphics.Containers.Markdown { public class OsuMarkdownLinkText : MarkdownLinkText { [Resolved(canBeNull: true)] private OsuGame game { 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() => game?.HandleLink(Url); private class OsuMarkdownLinkCompiler : DrawableLinkCompiler { public OsuMarkdownLinkCompiler(IEnumerable parts) : base(parts) { } [BackgroundDependencyLoader] private void load(OverlayColourProvider colourProvider) { IdleColour = colourProvider.Light2; HoverColour = colourProvider.Light1; } } } }