Giter Club home page Giter Club logo

Comments (4)

AugustMiller avatar AugustMiller commented on July 27, 2024

Yep yep yep.

The two “joining” strings should represent "all" and "last", like this:

{% set titles = entry.authors | toList('title', ', ', ' & ') %}
<h2>{{ titles }}</h2>

Internally, we might also want to implement a pluck filter, to fetch properties as an array:

{% set titlesArray = entry.authors | pluck('title') %}

Anything more, I think a normal loop would do fine with—particularly if you need to wrap each element in a li or link each element.

from craft-utils.

AugustMiller avatar AugustMiller commented on July 27, 2024

Implemented a toList filter in d8b472f!

pluck is not implemented, though.

One neat side-effect: some EntryModel properties seem to still be usable, so you can do something like…

{{ entry.myRelationField | toList('link', ', ', ' & ') | raw }}

…to output a list of links for each of the categories, since link happens to generate an anchor tag. raw just makes sure the HTML comes through (otherwise, it's considered text and you get HTML entities).

from craft-utils.

whoisgina avatar whoisgina commented on July 27, 2024

Nice nice nice nice nice! 👌

from craft-utils.

AugustMiller avatar AugustMiller commented on July 27, 2024

Just added pluck to the available Twig filters! Nice companion method for this.

Closing!

from craft-utils.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.