Sha256: 74d2c736f36a8c2b0addb62b9091cdd616f58ce93053ceaef00291a9a66c919e

Contents?: true

Size: 1.48 KB

Versions: 2

Compression:

Stored size: 1.48 KB

Contents

# frozen_string_literal: true

module Capybara
  class Server
    class AnimationDisabler
      def self.selector_for(css_or_bool)
        case css_or_bool
        when String
          css_or_bool
        when true
          '*'
        else
          raise CapybaraError, 'Capybara.disable_animation supports either a String (the css selector to disable) or a boolean'
        end
      end

      def initialize(app)
        @app = app
        @disable_markup = format(DISABLE_MARKUP_TEMPLATE, selector: AnimationDisabler.selector_for(Capybara.disable_animation))
      end

      def call(env)
        @status, @headers, @body = @app.call(env)
        return [@status, @headers, @body] unless html_content?

        response = Rack::Response.new([], @status, @headers)

        @body.each { |html| response.write insert_disable(html) }
        @body.close if @body.respond_to?(:close)

        response.finish
      end

    private

      attr_reader :disable_markup

      def html_content?
        !!(@headers['Content-Type'] =~ /html/)
      end

      def insert_disable(html)
        html.sub(%r{(</head>)}, disable_markup + '\\1')
      end

      DISABLE_MARKUP_TEMPLATE = <<~HTML
        <script defer>(typeof jQuery !== 'undefined') && (jQuery.fx.off = true);</script>
        <style>
           %<selector>s {
             transition: none !important;
             animation-duration: 0s !important;
             animation-delay: 0s !important;
          }
        </style>
      HTML
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
capybara-3.10.1 lib/capybara/server/animation_disabler.rb
capybara-3.10.0 lib/capybara/server/animation_disabler.rb