Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Claushingebjerg 936 posts 2571 karma points
    Oct 01, 2019 @ 15:35
    Claushingebjerg
    0

    Font awesome links package

    Hi all

    Has anybody got a snippet for rendering output from the "U8 font awesome links" package? There's not a lot of doc.

    https://our.umbraco.com/packages/backoffice-extensions/u8-font-awesome-links/

    I sniffed out some from the Bulma starter kit, but cant get it to work...

    @foreach (var socialLink in Model.Value("social"))
    {
        <a href="@socialLink.Link.Url">
                <i class="@socialLink.ClassName fa-lg"></i>
        </a>
    }
    

    i get the error: Compiler Error Message: CS1579: foreach statement cannot operate on variables of type 'object' because 'object' does not contain a public instance definition for 'GetEnumerator'

  • Amir Khan 1282 posts 2739 karma points
    Oct 01, 2019 @ 16:57
    Amir Khan
    0

    Untested, but you might just need: Model.Value<>

  • Claushingebjerg 936 posts 2571 karma points
    Oct 01, 2019 @ 18:33
    Claushingebjerg
    0

    thanks, but returns CS0305: Using the generic method group 'Value' requires 1 type arguments

  • Amir Khan 1282 posts 2739 karma points
    Oct 01, 2019 @ 18:38
    Amir Khan
    0

    Sorry, edited my post...

    How about this?

    Model.Value<IEnumerable<IPublishedContent>>("social")
    
  • Claushingebjerg 936 posts 2571 karma points
    Oct 01, 2019 @ 18:54
    Claushingebjerg
    0

    Well... to check if it even iterates i did:

    @foreach (var socialLink in Model.Value<IEnumerable<IPublishedContent>>("social"))
    {
        <p>stuff</p>
    }
    

    and got: System.NullReferenceException: Object reference not set to an instance of an object.

    If i do just @Model.Value("social") i get raw JSON, like:

    [ { "primaryClass": "", "secondaryClass": "", "className": "fab fa-facebook", "svg": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z\"/></svg>", "label": "Facebook", "link": [ { "name": "https://www.facebook.com", "url": "https://www.facebook.com", "icon": "icon-link", "published": true } ] }, { "primaryClass": "", "secondaryClass": "", "className": "fab fa-instagram", "svg": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"/></svg>", "label": "Instagram", "link": [ { "name": "https://www.instagram.com", "url": "https://www.instagram.com", "icon": "icon-link", "published": true } ] } ]
    
  • Claushingebjerg 936 posts 2571 karma points
    Oct 09, 2019 @ 08:33
    Claushingebjerg
    0

    I moved on to another package as i couldnt get this to work.

  • Matt Barlow | jacker.io 164 posts 740 karma points c-trib
    Oct 21, 2019 @ 13:14
    Matt Barlow | jacker.io
    0

    Hey, there is an issue with the latest version of ModelsBuilder not honoring the property value converter and returning an object, rather than the strongly typed model.

    This happened somewhere after version 8.0.2. of Umbraco, so my starter kit and property editors are not working on version 8.1+

    If anyone has any ideas how to fix this? I also noticed it with other custom property editors (not my own).

Please Sign in or register to post replies

Write your reply to:

Draft