Pętla przez elementy potomne w Twig jak Element :: children ()

9

Kiedy mamy do czynienia z tablicą renderowalną w PHP, mogę użyć Element :: children (), aby uzyskać dostęp do elementów, które nie są #właściwościami, ale podporządkowanymi elementami do renderowania (elementy formularza w zestawie pól, elementy w widżecie pola itp.). Na przykład ten fragment kodu z pliku.module:

<?php
if ($element['#multiple']) {
  foreach (Element::children($element) as $name) {
    // ...
  }
}
?>

Jak mogę zrobić to samo w szablonie Twig? Jeśli to zrobię {% for child in element %}, będzie on zawierał również #type, #cacheetc.

Arla
źródło
Błąd na DO drupal.org/node/2776307
gagarine

Odpowiedzi:

21
{% for key, child in element if key|first != '#' %}
  <div>{{ child }}</div>
{% endfor %}
Arla
źródło
2
Unikaj odpowiedzi tylko na kod.
Mołot
2

Stworzyłem filtr Twig, który powraca z dziećmi jako ArrayIterator.

mymodule/mymodule.services.yml

services:
  mymodule.twig_extension:
    arguments: ['@renderer']
    class: Drupal\mymodule\TwigExtension\Children
    tags:
      - { name: twig.extension }


mymodule/src/TwigExtension/Children.php

<?php

namespace Drupal\mymodule\TwigExtension;


class Children extends \Twig_Extension
{

  /**
   * Generates a list of all Twig filters that this extension defines.
   */
  public function getFilters()
  {
    return [
      new \Twig_SimpleFilter('children', array($this, 'children')),
    ];
  }


  /**
   * Gets a unique identifier for this Twig extension.
   */
  public function getName()
  {
    return 'mymodule.twig_extension';
  }


  /**
   * Get the children of a field (FieldItemList)
   */
  public static function Children($variable)
  {
    if (!empty($variable['#items'])
      && $variable['#items']->count() > 0
    ) {
      return $variable['#items']->getIterator();
    }

    return null;
  }

}


w szablonie Twig:

{% for headline in entity.field_headline|children %}
  {{ headline.get('value').getValue() }}
{% endfor %}
Zoltán Süle
źródło
2

Użyj modułu Twig Tweak , który oprócz innych wspaniałych funkcji ma filtr „dzieci”:

{% for item in content.field_name | children(true) %}
  {# loop.length, loop.revindex, loop.revindex0, and loop.last are now available #}
{% endfor %}
Joel Stein
źródło
1

Oto modyfikacja https://drupal.stackexchange.com/a/236408/67965, która zapętla się przez dzieci renderowane zamiast pola #items.

Przedłużenie gałązki:

/**
 * Generates a list of all Twig filters that this extension defines.
 */
public function getFilters() {
  return [
    new \Twig_SimpleFilter('children', array($this, 'children')),
  ];
}

/**
 * Get the render children of a field
 */
public static function children($variable) {
  return array_filter(
    $variable, 
    function($k) { return (is_numeric($k) || (strpos($k, '#') !== 0)); },
    ARRAY_FILTER_USE_KEY
  );
}

W gałązce możesz następnie przejść bezpośrednio przez renderowane dzieci, co pomaga w atomowych wzorach projektowych. Zdefiniuj szablon encji, na przykład:

{% include '@molecules/grid.html.twig' with { 
   head : content.field_title,
   grid_columns: content.field_collection_items|children
} %}

gdzie grid.html.twig jest coś takiego:

{% if head %}
<div class="slab__wrapper">
  {{ head }}
</div>
{% endif %}
<div class="grid">          
  {% for col in grid_columns %}
  <div class="grid__column">
    {{ col }}
  </div>
  {% endfor %}
</div>

Jest to zwykle bardziej przydatne niż konieczność renderowania szablonu pola, {{ content.field_collection_items }}ponieważ układ elementów potomnych może być kontrolowany w kontekście nadrzędnego elementu projektu.

ahebrank
źródło