split field elements in 'prefix', 'content' and 'suffix'

Created on 9 February 2024, 5 months ago
Updated 10 February 2024, 5 months ago

Problem/Motivation

For theming purpose, I'd like to split field elements in 'prefix', 'content' and 'suffix' and then display them in 3 different tags.
Is it possible with the Tiwg Tweak module?

✨ Feature request
Status

Closed: duplicate

Version

3.2

Component

Code

Created by

πŸ‡«πŸ‡·France webmestre

Live updates comments and jobs are added and updated live.
  • theming

    Used in Documentation issues related to theming

Sign in to follow issues

Comments & Activities

  • Issue created by @webmestre
  • πŸ‡«πŸ‡·France webmestre

    Here's a field template that makes the job:

    
    {%
      set classes = [
        'field',
        'field--name-' ~ field_name|clean_class,
        'field--type-' ~ field_type|clean_class,
        'field--label-' ~ label_display,
      ]
    %}
    {%
      set title_classes = [
        'field__label',
        label_display == 'visually_hidden' ? 'visually-hidden' : '',
      ]
    %}
    
    {# get prefix and suffix #}
    {% set prefix = element['#items'].getFieldDefinition().getSetting('prefix') ?? '' %}
    {% set suffix = element['#items'].getFieldDefinition().getSetting('suffix') ?? '' %}
    
    {# display the field #}
    <div{{ attributes.addClass(classes) }}>
      <div{{ title_attributes.addClass(title_classes) }}>{{ element['#title'] }}</div>
      {% if multiple %}
        <div class='field__items'>
      {% endif %}
      {% for item in items %}
        <span>{{ prefix }} </span>
        <span{{ item.attributes.addClass('field__item') }}>{{ item.content }}</span>
        <span> {{ suffix }}</span>
      {% endfor %}
      {% if multiple %}
        </div>
      {% endif %}
    </div>
    
    
  • Status changed to Closed: duplicate 5 months ago
  • πŸ‡·πŸ‡ΊRussia Chi

    The use case is kind of narrow. Only a few field types have support for prefix and suffix. Anyway I think it's a case for Twig Field Value β†’ module as it seems more related to processing field values.

    I guess it could be filters like this.

    {{ content.field_name|field_prefix }}
    {{ content.field_name|field_suffix }}
    
Production build 0.69.0 2024