Sha256: 02f48b17bcdfd1afb397afe7ff3d5260aa0d767c858911271a13300d5c2d77b8

Contents?: true

Size: 1 KB

Versions: 5

Compression:

Stored size: 1 KB

Contents

# frozen_string_literal: true

module Capybara
  class Server
    class AnimationDisabler
      def initialize(app)
        @app = app
      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

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

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

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

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
tdiary-5.0.9 vendor/bundle/gems/capybara-3.2.1/lib/capybara/server/animation_disabler.rb
capybara-3.3.1 lib/capybara/server/animation_disabler.rb
capybara-3.3.0 lib/capybara/server/animation_disabler.rb
capybara-3.2.1 lib/capybara/server/animation_disabler.rb
capybara-3.2.0 lib/capybara/server/animation_disabler.rb