Sha256: ae89317fb47f109cdc069939fe413426d9afd50c109db76bed8b1904f5736052

Contents?: true

Size: 1.09 KB

Versions: 7

Compression:

Stored size: 1.09 KB

Contents

module Spree
  module V2
    module Storefront
      class TaxonSerializer < BaseSerializer
        set_type   :taxon

        attributes :name, :pretty_name, :permalink, :seo_title, :description, :meta_title, :meta_description,
                   :meta_keywords, :left, :right, :position, :depth, :updated_at

        attribute :is_root do |taxon|
          taxon.root?
        end

        attribute :is_child do |taxon|
          taxon.child?
        end

        attribute :is_leaf do |taxon|
          taxon.leaf?
        end

        belongs_to :parent,   record_type: :taxon, serializer: :taxon
        belongs_to :taxonomy, record_type: :taxonomy

        has_many   :children, record_type: :taxon, serializer: :taxon
        has_many   :products, record_type: :product,
                              if: proc { |_taxon, params| params && params[:include_products] == true }

        has_one    :image,
                   object_method_name: :icon,
                   id_method_name: :icon_id,
                   record_type: :taxon_image,
                   serializer: :taxon_image
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
spree_api-4.3.3 app/serializers/spree/v2/storefront/taxon_serializer.rb
spree_api-4.3.2 app/serializers/spree/v2/storefront/taxon_serializer.rb
spree_api-4.3.1 app/serializers/spree/v2/storefront/taxon_serializer.rb
spree_api-4.3.0 app/serializers/spree/v2/storefront/taxon_serializer.rb
spree_api-4.3.0.rc3 app/serializers/spree/v2/storefront/taxon_serializer.rb
spree_api-4.3.0.rc2 app/serializers/spree/v2/storefront/taxon_serializer.rb
spree_api-4.3.0.rc1 app/serializers/spree/v2/storefront/taxon_serializer.rb