HEX
Server: Apache/2.4.34 (Red Hat) OpenSSL/1.0.2k-fips
System: Linux WORDPRESS 3.10.0-1160.118.1.el7.x86_64 #1 SMP Thu Apr 4 03:33:23 EDT 2024 x86_64
User: digital (1020)
PHP: 7.2.24
Disabled: NONE
Upload Files
File: /datos/www/fabricas.colombiatrade.com.co/public_html/core/modules/text/text.es6.js
/**
 * @file
 * Text behaviors.
 */

(function($, Drupal) {
  /**
   * Auto-hide summary textarea if empty and show hide and unhide links.
   *
   * @type {Drupal~behavior}
   *
   * @prop {Drupal~behaviorAttach} attach
   *   Attaches auto-hide behavior on `text-summary` events.
   */
  Drupal.behaviors.textSummary = {
    attach(context, settings) {
      $(context)
        .find('.js-text-summary')
        .once('text-summary')
        .each(function() {
          const $widget = $(this).closest('.js-text-format-wrapper');

          const $summary = $widget.find('.js-text-summary-wrapper');
          const $summaryLabel = $summary.find('label').eq(0);
          const $full = $widget.children('.js-form-type-textarea');
          let $fullLabel = $full.find('label').eq(0);

          // Create a placeholder label when the field cardinality is greater
          // than 1.
          if ($fullLabel.length === 0) {
            $fullLabel = $('<label></label>').prependTo($full);
          }

          // Set up the edit/hide summary link.
          const $link = $(
            `<span class="field-edit-link"> (<button type="button" class="link link-edit-summary">${Drupal.t(
              'Hide summary',
            )}</button>)</span>`,
          );
          const $button = $link.find('button');
          let toggleClick = true;
          $link
            .on('click', e => {
              if (toggleClick) {
                $summary.hide();
                $button.html(Drupal.t('Edit summary'));
                $link.appendTo($fullLabel);
              } else {
                $summary.show();
                $button.html(Drupal.t('Hide summary'));
                $link.appendTo($summaryLabel);
              }
              e.preventDefault();
              toggleClick = !toggleClick;
            })
            .appendTo($summaryLabel);

          // If no summary is set, hide the summary field.
          if ($widget.find('.js-text-summary').val() === '') {
            $link.trigger('click');
          }
        });
    },
  };
})(jQuery, Drupal);