Sha256: bfb2274dcebcad1ae4abbb192cad55d0c5fdeeb62b54e074b655960e03d08b67

Contents?: true

Size: 1.54 KB

Versions: 5

Compression:

Stored size: 1.54 KB

Contents

module Spree
  class OptionValue < Spree::Base
    include Spree::Metadata
    include Spree::TranslatableResource
    if defined?(Spree::Webhooks::HasWebhooks)
      include Spree::Webhooks::HasWebhooks
    end

    if Spree.always_use_translations?
      TRANSLATABLE_FIELDS = %i[name presentation].freeze
      translates(*TRANSLATABLE_FIELDS)
    else
      TRANSLATABLE_FIELDS = %i[presentation].freeze
      translates(*TRANSLATABLE_FIELDS, column_fallback: true)
    end

    belongs_to :option_type, class_name: 'Spree::OptionType', touch: true, inverse_of: :option_values

    acts_as_list scope: :option_type
    auto_strip_attributes :name, :presentation

    has_many :option_value_variants, class_name: 'Spree::OptionValueVariant'
    has_many :variants, through: :option_value_variants, class_name: 'Spree::Variant'

    with_options presence: true do
      validates :name, uniqueness: { scope: :option_type_id, case_sensitive: false }
      validates :presentation
    end

    scope :filterable, lambda {
      joins(:option_type).
        where(OptionType.table_name => { filterable: true }).
        distinct
    }

    scope :for_products, lambda { |products|
      joins(:variants).
        where(Variant.table_name => { product_id: products.map(&:id) })
    }

    after_touch :touch_all_variants

    delegate :name, :presentation, to: :option_type, prefix: true, allow_nil: true

    self.whitelisted_ransackable_attributes = ['presentation']

    private

    def touch_all_variants
      variants.update_all(updated_at: Time.current)
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
spree_core-4.10.1 app/models/spree/option_value.rb
spree_core-4.10.0 app/models/spree/option_value.rb
spree_core-4.9.0 app/models/spree/option_value.rb
spree_core-4.8.3 app/models/spree/option_value.rb
spree_core-4.8.2 app/models/spree/option_value.rb