Ransacker返回相关领域

时间:2015-10-29 11:57:34

标签: ruby-on-rails ransack

我正在尝试创建一个自定义的ransacker,它根据另一个(相关)表中的属性返回一个产品。我的数据库架构是这样的:

-------------   --------------------
|products   |   |product_properties|   ------------
|-----------|   |------------------|   |properties|
|name       |---|value             |---|----------|
|description|   |product_id        |   |name      |
|etc...     |   |property_id       |   ------------
-------------   --------------------

class Product < ActiveRecord::Base
  has_many :product_properties
  has_many :properties, through: :product_properties

  Property.pluck(:id, :name).each do |id, name|
    ransacker name.to_sym, formatter: -> (value) { value.to_s.downcase } do |parent|
      product_properties = Arel::Table.new(:product_properties)
      Arel::Nodes::InfixOperation.new('AND',
        Arel::Nodes::InfixOperation.new('=',
          product_properties[:property_id], id
        ),
        product_properties[:value]
      )
    end
  end
end

class ProductProperty < ActiveRecord::Base
  belongs_to :product, inverse_of: :product_properties, touch: true
  belongs_to :property, inverse_of: :product_properties
end

class Property < ActiveRecord::Base
  has_many :product_properties
  has_many :products, through: :product_properties
end

您可能会看到我想使用ransack来选择所有具有特定属性的产品,其值与通过ransack传入的谓词相匹配,即如果我有宽度属性,我想这样做< / p>

Product.ransack(width_eq: 100).result

而不是

Product.ransack(product_properties_value_eq: 100, product_properties_property_name_eq: 'width')

我是否会沿着正确的轨道前进,对此的任何帮助都将非常感激。我一直在解决这个问题。

1 个答案:

答案 0 :(得分:0)

错误在于我需要使用Arel::Nodes.build_quoted(id)。显然,在Rails和Arel上使用更高版本时需要这样做。

Property.pluck(:id, :name).each do |id, name|
  product_properties = Arel::Table.new(:product_properties)

  ransacker name.to_sym, formatter: -> (value) { value.to_s.downcase } do |parent|
    Arel::Nodes::InfixOperation.new('AND',
      Arel::Nodes::InfixOperation.new('=',
        product_properties[:property_id], Arel::Nodes.build_quoted(id)
      ),
      product_properties[:value]
    )
  end
end