summaryrefslogtreecommitdiff
path: root/lib/banzai/filter/image_lazy_load_filter.rb
blob: 4cd9b02b76c45d1f937ace15f47498761afe4b58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module Banzai
  module Filter
    # HTML filter that moves the value of image `src` attributes to `data-src`
    # so they can be lazy loaded.
    class ImageLazyLoadFilter < HTML::Pipeline::Filter
      def call
        doc.xpath('descendant-or-self::img').each do |img|
          img['class'] ||= '' << 'lazy'
          img['data-src'] = img['src']
          img['src'] = LazyImageTagHelper.placeholder_image
        end

        doc
      end
    end
  end
end