field--comment.html.twig 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {#
  2. /**
  3. * @file
  4. * Theme override for comment fields.
  5. *
  6. * Available variables:
  7. * - attributes: HTML attributes for the containing element.
  8. * - label_hidden: Whether to show the field label or not.
  9. * - title_attributes: HTML attributes for the title.
  10. * - label: The label for the field.
  11. * - title_prefix: Additional output populated by modules, intended to be
  12. * displayed in front of the main title tag that appears in the template.
  13. * - title_suffix: Additional title output populated by modules, intended to
  14. * be displayed after the main title tag that appears in the template.
  15. * - comments: List of comments rendered through comment.html.twig.
  16. * - comment_form: The 'Add new comment' form.
  17. * - comment_display_mode: Is the comments are threaded.
  18. * - comment_type: The comment type bundle ID for the comment field.
  19. * - entity_type: The entity type to which the field belongs.
  20. * - field_name: The name of the field.
  21. * - field_type: The type of the field.
  22. * - label_display: The display settings for the label.
  23. *
  24. * @see template_preprocess_field()
  25. * @see comment_preprocess_field()
  26. */
  27. #}
  28. {%
  29. set classes = [
  30. 'field',
  31. 'field--name-' ~ field_name|clean_class,
  32. 'field--type-' ~ field_type|clean_class,
  33. 'field--label-' ~ label_display,
  34. 'comment-wrapper',
  35. ]
  36. %}
  37. {%
  38. set title_classes = [
  39. 'title',
  40. label_display == 'visually_hidden' ? 'visually-hidden',
  41. ]
  42. %}
  43. <section{{ attributes.addClass(classes) }}>
  44. {% if comments and not label_hidden %}
  45. {{ title_prefix }}
  46. <h2{{ title_attributes.addClass(title_classes) }}>{{ label }}</h2>
  47. {{ title_suffix }}
  48. {% endif %}
  49. {{ comments }}
  50. {% if comment_form %}
  51. <h2 class="title comment-form__title">{{ 'Add new comment'|t }}</h2>
  52. {{ comment_form }}
  53. {% endif %}
  54. </section>