Sha256: e95ca62c16455055079f1abd31777416d9a6a66a784a94ceb719a762d64daed4

Contents?: true

Size: 1.56 KB

Versions: 2

Compression:

Stored size: 1.56 KB

Contents

module Spree
  class TaxonsController < Spree::StoreController
    include Spree::FrontendHelper
    include Spree::CacheHelper
    helper 'spree/products'

    before_action :load_taxon

    def show
      if !http_cache_enabled? || stale?(etag: etag, last_modified: last_modified, public: true)
        load_products
      end
    end

    def product_carousel
      if !http_cache_enabled? || stale?(etag: carousel_etag, last_modified: last_modified, public: true)
        load_products
        if @products.reload.any?
          render template: 'spree/taxons/product_carousel', layout: false
        else
          head :no_content
        end
      end
    end

    private

    def accurate_title
      @taxon.try(:seo_title) || super
    end

    def load_taxon
      @taxon = find_with_fallback_default_locale { current_store.taxons.friendly.find(params[:id]) }
    end

    def load_products
      search_params = params.merge(
        current_store: current_store,
        taxon: @taxon,
        include_images: true
      )

      @searcher = build_searcher(search_params)
      @products = @searcher.retrieve_products
    end

    def etag
      [
        store_etag,
        @taxon,
        available_option_types_cache_key,
        filtering_params_cache_key
      ]
    end

    def carousel_etag
      [
        store_etag,
        @taxon
      ]
    end

    def last_modified
      taxon_last_modified = @taxon&.updated_at&.utc
      current_store_last_modified = current_store.updated_at.utc

      [taxon_last_modified, current_store_last_modified].compact.max
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
spree_frontend-4.7.0 app/controllers/spree/taxons_controller.rb
spree_frontend-4.6.0 app/controllers/spree/taxons_controller.rb