summaryrefslogtreecommitdiff
path: root/spec/support/helpers/drag_to_helper.rb
blob: 2e9932f2e8a1dfdf57ac1c81222c015c74a09d38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# frozen_string_literal: true

module DragTo
  def drag_to(list_from_index: 0, from_index: 0, to_index: 0, list_to_index: 0, selector: '', scrollable: 'body', duration: 1000, perform_drop: true)
    js = <<~JS
      simulateDrag({
        scrollable: document.querySelector('#{scrollable}'),
        duration: #{duration},
        from: {
          el: document.querySelectorAll('#{selector}')[#{list_from_index}],
          index: #{from_index}
        },
        to: {
          el: document.querySelectorAll('#{selector}')[#{list_to_index}],
          index: #{to_index}
        },
        performDrop: #{perform_drop}
      });
    JS
    evaluate_script(js)

    Timeout.timeout(Capybara.default_max_wait_time) do
      loop while drag_active?
    end
  end

  def drag_active?
    page.evaluate_script('window.SIMULATE_DRAG_ACTIVE').nonzero?
  end
end