@@ -62,6 +62,7 @@ public HtmlRenderer(HtmlRendererOptions options)
62
62
new ListItemContentRenderer ( _contentRendererCollection , options . ListItemOptions ) ,
63
63
new QuoteContentRenderer ( _contentRendererCollection ) ,
64
64
new AssetRenderer ( _contentRendererCollection ) ,
65
+ new AssetHyperlinkRenderer ( _contentRendererCollection ) ,
65
66
new NullContentRenderer ( )
66
67
} ) ;
67
68
}
@@ -667,6 +668,69 @@ public async Task<string> RenderAsync(IContent content)
667
668
}
668
669
}
669
670
671
+ /// <summary>
672
+ /// A renderer for an asset hyperlink.
673
+ /// </summary>
674
+ public class AssetHyperlinkRenderer : IContentRenderer
675
+ {
676
+ private readonly ContentRendererCollection _rendererCollection ;
677
+
678
+ /// <summary>
679
+ /// Initializes a new AssetHyperlinkRenderer.
680
+ /// </summary>
681
+ /// <param name="rendererCollection">The collection of renderer to use for sub-content.</param>
682
+ public AssetHyperlinkRenderer ( ContentRendererCollection rendererCollection )
683
+ {
684
+ _rendererCollection = rendererCollection ;
685
+ }
686
+
687
+ /// <summary>
688
+ /// The order of this renderer in the collection.
689
+ /// </summary>
690
+ public int Order { get ; set ; } = 100 ;
691
+
692
+ /// <summary>
693
+ /// Whether or not this renderer supports the provided content.
694
+ /// </summary>
695
+ /// <param name="content">The content to evaluate.</param>
696
+ /// <returns>Returns true if the content is an assethyperlink, otherwise false.</returns>
697
+ public bool SupportsContent ( IContent content )
698
+ {
699
+ return content is AssetHyperlink ;
700
+ }
701
+
702
+ /// <summary>
703
+ /// Renders the content asynchronously.
704
+ /// </summary>
705
+ /// <param name="content">The content to render.</param>
706
+ /// <returns>The a tag.</returns>
707
+ public async Task < string > RenderAsync ( IContent content )
708
+ {
709
+ var assetStructure = content as AssetHyperlink ;
710
+ var asset = assetStructure . Data . Target ;
711
+ var sb = new StringBuilder ( ) ;
712
+
713
+ var url = asset . File ? . Url ;
714
+ sb . Append ( string . IsNullOrEmpty ( url ) ? "<a>" : $ "<a href=\" { asset . File . Url } \" >") ;
715
+
716
+ if ( assetStructure . Content != null && assetStructure . Content . Any ( ) )
717
+ {
718
+ foreach ( var subContent in assetStructure . Content )
719
+ {
720
+ var renderer = _rendererCollection . GetRendererForContent ( subContent ) ;
721
+ sb . Append ( await renderer . RenderAsync ( subContent ) ) ;
722
+ }
723
+ }
724
+ else
725
+ {
726
+ sb . Append ( asset . Title ) ;
727
+ }
728
+ sb . Append ( "</a>" ) ;
729
+
730
+ return sb . ToString ( ) ;
731
+ }
732
+ }
733
+
670
734
/// <summary>
671
735
/// A renderer for a hyperlink.
672
736
/// </summary>
0 commit comments