You are here

facets-item-list.html.twig in Facets 8

Default theme implementation for a facets item list.

Available variables:

  • items: A list of items. Each item contains:

    • attributes: HTML attributes to be applied to each list item.
    • value: The content of the list element.
  • title: The title of the list.
  • list_type: The tag for list element ("ul" or "ol").
  • wrapper_attributes: HTML attributes to be applied to the list wrapper.
  • attributes: HTML attributes to be applied to the list.
  • empty: A message to display when there are no items. Allowed value is a string or render array.
  • context: A list of contextual data associated with the list. May contain:
    • list_style: The ID of the widget plugin this facet uses.
  • facet: The facet for this result item.
    • id: the machine name for the facet.
    • label: The facet label.

File

templates/facets-item-list.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a facets item list.
  5. *
  6. * Available variables:
  7. * - items: A list of items. Each item contains:
  8. * - attributes: HTML attributes to be applied to each list item.
  9. * - value: The content of the list element.
  10. * - title: The title of the list.
  11. * - list_type: The tag for list element ("ul" or "ol").
  12. * - wrapper_attributes: HTML attributes to be applied to the list wrapper.
  13. * - attributes: HTML attributes to be applied to the list.
  14. * - empty: A message to display when there are no items. Allowed value is a
  15. * string or render array.
  16. * - context: A list of contextual data associated with the list. May contain:
  17. * - list_style: The ID of the widget plugin this facet uses.
  18. * - facet: The facet for this result item.
  19. * - id: the machine name for the facet.
  20. * - label: The facet label.
  21. *
  22. * @see facets_preprocess_facets_item_list()
  23. *
  24. * @ingroup themeable
  25. */
  26. #}
  27. <div class="facets-widget- {{- facet.widget.type -}} ">
  28. {% if facet.widget.type %}
  29. {%- set attributes = attributes.addClass('item-list__' ~ facet.widget.type) %}
  30. {% endif %}
  31. {% if items or empty %}
  32. {%- if title is not empty -%}
  33. <h3>{{ title }}</h3>
  34. {%- endif -%}
  35. {%- if items -%}
  36. <{{ list_type }}{{ attributes }}>
  37. {%- for item in items -%}
  38. <li{{ item.attributes }}>{{ item.value }}</li>
  39. {%- endfor -%}
  40. </{{ list_type }}>
  41. {%- else -%}
  42. {{- empty -}}
  43. {%- endif -%}
  44. {%- endif %}
  45. {% if facet.widget.type == "dropdown" %}
  46. <label id="facet_{{ facet.id }}_label">{{ 'Facet'|t }} {{ facet.label }}</label>
  47. {%- endif %}
  48. </div>