Цикл по дочерним элементам в Twig, как Element :: children ()


9

При работе с рендерируемым массивом в PHP я могу использовать Element :: children () для доступа к элементам, которые не являются #свойствами, но подчиненными рендерируемыми элементами (элементы формы внутри набора полей, элементы внутри виджета поля и т. Д.). Например, этот фрагмент из файла file.module:

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

Как я могу сделать то же самое в шаблоне Twig? Если я это сделаю {% for child in element %}, это будет включать в себя также #typeи #cacheт. Д.


Ошибка на DO drupal.org/node/2776307
gagarine

Ответы:


21
{% for key, child in element if key|first != '#' %}
  <div>{{ child }}</div>
{% endfor %}

2
Пожалуйста, избегайте ответов только по коду.
Молот

2

Я создал фильтр Twig, который возвращается с детьми как 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;
  }

}


в шаблоне Twig:

{% for headline in entity.field_headline|children %}
  {{ headline.get('value').getValue() }}
{% endfor %}

2

Используйте модуль Twig Tweak , который, помимо других замечательных функций, имеет «детский» фильтр:

{% for item in content.field_name | children(true) %}
  {# loop.length, loop.revindex, loop.revindex0, and loop.last are now available #}
{% endfor %}

1

Вот модификация https://drupal.stackexchange.com/a/236408/67965, которая перебирает дочерние элементы рендера вместо поля #items.

Удлинитель веточки:

/**
 * 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
  );
}

В ветке вы можете напрямую проходить через отрисованных потомков, что помогает в атомарных шаблонах проектирования. Определите шаблон сущности, например:

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

где grid.html.twig это что-то вроде:

{% 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>

Это обычно более полезно, чем необходимость отображать шаблон поля, {{ content.field_collection_items }}поскольку макет дочерних элементов может управляться в контексте родительского элемента дизайна.

Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.