Skip to content
Snippets Groups Projects
Verified Commit dfbffd2a authored by Théodore Biadala's avatar Théodore Biadala
Browse files

Issue #3396099 by Utkarsh_33, nod_, Gauravvvv, bnjmnm, tedbow, smustgrave,...

Issue #3396099 by Utkarsh_33, nod_, Gauravvvv, bnjmnm, tedbow, smustgrave, Anybody, Rob230: The core/drupal.message library requires a status_messages render element

(cherry picked from commit bff71e54)
parent 05b9d0d0
No related branches found
No related tags found
13 merge requests!10602Issue #3438769 by vinmayiswamy, antonnavi, michelle, amateescu: Sub workspace does not clear,!10301Issue #3469309 by mstrelan, smustgrave, moshe weitzman: Use one-time login...,!10187Issue #3487488 by dakwamine: ExtensionMimeTypeGuesser::guessMimeType must support file names with "0" (zero) like foo.0.zip,!9929Issue #3445469 by pooja_sharma, smustgrave: Add additional test coverage for...,!9787Resolve issue 3479427 - bootstrap barrio issue under Windows,!9742Issue #3463908 by catch, quietone: Split OptionsFieldUiTest into two,!9526Issue #3458177 by mondrake, catch, quietone, godotislate, longwave, larowlan,...,!8949Backport .gitlabci.yml changes.,!8738Issue #3424162 by camilledavis, dineshkumarbollu, smustgrave: Claro...,!8704Make greek characters available in ckeditor5,!6502Draft: Resolve #2938524 "Plach testing issue",!38582585169-10.1.x,!3226Issue #2987537: Custom menu link entity type should not declare "bundle" entity key
Pipeline #209375 passed with warnings
Pipeline: drupal

#209416

    Pipeline: drupal

    #209410

      Pipeline: drupal

      #209399

        +1
        ......@@ -37,13 +37,27 @@
        * The default destination for JavaScript messages.
        */
        static defaultWrapper() {
        let wrapper = document.querySelector('[data-drupal-messages]');
        // Search for the element with '[data-drupal-messages]' selector.
        // If not found then only try to search for fallback element.
        let wrapper =
        document.querySelector('[data-drupal-messages]') ||
        document.querySelector('[data-drupal-messages-fallback]');
        if (!wrapper) {
        wrapper = document.querySelector('[data-drupal-messages-fallback]');
        // If no status messages element is found, a fallback element is created to prevent
        // execution-breaking JS errors when attempting to report a problem.
        // This scenario can occur on any page that does not include a status_messages
        // render element.
        wrapper = document.createElement('div');
        document.body.appendChild(wrapper);
        }
        if (wrapper.hasAttribute('data-drupal-messages-fallback')) {
        // Remove the fallback attribute if it exists.
        wrapper.removeAttribute('data-drupal-messages-fallback');
        wrapper.setAttribute('data-drupal-messages', '');
        wrapper.classList.remove('hidden');
        }
        wrapper.setAttribute('data-drupal-messages', '');
        return wrapper.innerHTML === ''
        ? Drupal.Message.messageInternalWrapper(wrapper)
        : wrapper.firstElementChild;
        ......
        ......@@ -58,19 +58,6 @@ public function batchPage(Request $request) {
        return $output;
        }
        elseif (isset($output)) {
        // Directly render a status message placeholder without any messages.
        // Messages are not intended to be show on the batch page, but in the
        // event an error in a AJAX callback the messages will be displayed.
        // @todo Remove in https://drupal.org/i/3396099.
        $output['batch_messages'] = [
        '#theme' => 'status_messages',
        '#message_list' => [],
        '#status_headings' => [
        'status' => $this->t('Status message'),
        'error' => $this->t('Error message'),
        'warning' => $this->t('Warning message'),
        ],
        ];
        $title = $output['#title'] ?? NULL;
        $page = [
        '#type' => 'page',
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment