Unverified Commit 8f8ddab2 authored by Lauri Timmanee's avatar Lauri Timmanee
Browse files

Revert "Issue #2822778 by wengerk, bighappyface, joelpittet, Lendude, lauriii,...

Revert "Issue #2822778 by wengerk, bighappyface, joelpittet, Lendude, lauriii, vivekguptakota, Meenakshi.g, shashikant_chauhan, GoZ, ifrik, Manuel Garcia, Neograph734: Modal popups in views is not showing properly when toolbar tray is upon modal"

This reverts commit 3257ff16.
parent 9a3477e8
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -129,9 +129,6 @@
          autoResize,
        );
      }
      // Force the dialog & dialog-overlay to render on top.
      $element.dialog('widget').css('zIndex', 601);
      $('.ui-widget-overlay').css('zIndex', 600);
    },
    'dialog:beforeclose': function(event, dialog, $element) {
      $(window).off('.dialogResize');
+0 −3
Original line number Diff line number Diff line
@@ -60,9 +60,6 @@
        $(window).on('resize.dialogResize scroll.dialogResize', eventData, autoResize).trigger('resize.dialogResize');
        $(document).on('drupalViewportOffsetChange.dialogResize', eventData, autoResize);
      }

      $element.dialog('widget').css('zIndex', 601);
      $('.ui-widget-overlay').css('zIndex', 600);
    },
    'dialog:beforeclose': function dialogBeforeclose(event, dialog, $element) {
      $(window).off('.dialogResize');
+1 −66
Original line number Diff line number Diff line
@@ -14,13 +14,7 @@ class FilterOptionsTest extends WebDriverTestBase {
  /**
   * {@inheritdoc}
   */
  public static $modules = [
    'node',
    'views',
    'views_ui',
    'views_ui_test_field',
    'toolbar',
  ];
  public static $modules = ['node', 'views', 'views_ui', 'views_ui_test_field'];

  /**
   * {@inheritdoc}
@@ -28,12 +22,8 @@ class FilterOptionsTest extends WebDriverTestBase {
  public function setUp() {
    parent::setUp();

    // Install additional themes Seven & Bartik.
    $this->container->get('theme_installer')->install(['seven', 'bartik']);

    $admin_user = $this->drupalCreateUser([
      'administer views',
      'access toolbar',
    ]);
    $this->drupalLogin($admin_user);
  }
@@ -83,59 +73,4 @@ public function testFilterOptionsAddFields() {
    $this->assertFalse($page->findField('name[views.views_test_field_1]')->isVisible());
  }

  /**
   * Test the integration of the dialog with the toolbar module.
   *
   * @dataProvider themeDataProvider
   */
  public function testDialogOverlayWithHorizontalToolbar($theme) {
    // Switch to the provided theme.
    $this->container->get('config.factory')->getEditable('system.theme')
      ->set('default', $theme)->save();
    $this->container->get('router.builder')->rebuildIfNeeded();

    $session = $this->getSession();

    // Set size for horizontal toolbar.
    $this->getSession()->resizeWindow(1200, 600);
    $this->drupalGet('admin/structure/views/view/content');

    $web_assert = $this->assertSession();
    $page = $session->getPage();

    $this->assertNotEmpty($web_assert->waitForElement('css', 'body.toolbar-horizontal'));
    $this->assertNotEmpty($web_assert->waitForElementVisible('css', '.toolbar-tray'));

    // Toggle the Toolbar in Horizontal mode to asserts the checkboxes are not
    // covered by the toolbar.
    $page->pressButton('Vertical orientation');

    // Open the dialog.
    $page->clickLink('views-add-field');

    // Wait for the popup to open and the search field to be available.
    $options_search = $web_assert->waitForField('override[controls][options_search]');

    $options_search->setValue('FIELD_1_TITLE');
    // Assert the element is clickable and on top of toolbar.
    $web_assert->waitForElement('css', 'input[name="name[views.views_test_field_1]"]')->click();
  }

  /**
   * Dataprovider that returns theme name as the sole argument.
   */
  public function themeDataProvider() {
    return [
      [
        'classy',
      ],
      [
        'seven',
      ],
      [
        'bartik',
      ],
    ];
  }

}