Webform message setting "Allow users to close the message" not respected

Created on 3 January 2025, 3 months ago

Problem/Motivation

Webform module provides a "Message" form element type that displays using the same templates and code as a Drupal alert message.

Bootstrap Barrio message templates provide a close button to remove the message and the presence of this close button is unconditional.

The Webform module provides a checkbox "Allow users to close the message" that implies you can toggle the close button on or off. Bootstrap Barrio does not provide any functionality for this checkbox.

Steps to reproduce

Install the Webform module. Create a new Webform and add a form element of the "Message" type. Save the form with the "Allow users to close the message" checked or unchecked. No difference is seen in the appearance of the message.

Proposed resolution

Webform maintainers seem to believe that their checkbox workingin Claro theme is all that is important -- see https://www.drupal.org/project/webform/issues/3451108 🐛 Message element with persistent closing message option Active

For Bootstrap Barrio, we can either leave this up to subtheme developers to cover in their own subthemes or we could try and account for it somewhere.

🐛 Bug report
Status

Active

Version

5.5

Component

User interface

Created by

🇨🇦Canada endless_wander

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @endless_wander
  • 🇨🇦Canada endless_wander

    Webform messages are using status-messages--alerts.html.twig template, which in turn uses the code in alert.twig component

    Webform theming in WebformMessage::preRenderWebformMessage() adds the close button as part of the first message and not appended to each message, which is a big difference for this functionality.

    Enabling the Webform-powered close button creates two close buttons, then. One added by Webform and one added by Bootstrap Barrio via alert.twig

    Not sure best way to proceed as this seems a case where both Webform module and BB theme are providing the same UI but via different methods and one needs to get out of the other's way. I would prefer to preserve the BB theme to keep all templating in the same place, but still have it respect the "Allow users to close the message" option in Webform.

  • 🇨🇦Canada endless_wander

    Webform outputs messages via webform-message.html.twig, which acts as a wrapper for what is output in status-messages.html.twig

    Here's what I did in my subtheme to have the Bootstrap Barrio close button respect the Webform message element setting:

    1) created my own webform-message.html.twig template in subtheme and changed its output, changing

    {{ message }}

    to:

    {% include '@weaver/misc/status-messages--alerts.html.twig' with { message_list: message_list, show_close_button: show_close_button } %}

    2) added hook_webform_message_preprocess() to my subtheme to pass the right message_list and the new show_close_button variable

    function mytheme_preprocess_webform_message(&$variables) {
      // allows Webform alerts to respect the Webform close button settings
      // see also webform-message.html.twig and alert.twig
      $element = $variables['element'];
      $variables['message_list'] = $element['#message']['#message_list'];
      $variables['show_close_button'] = $element['#message_close'];
    }
    

    3) finally, updated alert.twig to show/hide the close button according to show_close_button

          {% if show_close_button == true %}
               // HTML for button
         {% endif %}
    

    The Webform javascript close button still appears and I just used CSS to hide it.

    This is all kinda hacky but I just wanted a quick fix for now. Perhaps some unity can be found in matching Bootstrap Barrio's alerts with how Claro and core use them.

Production build 0.71.5 2024