Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am building up an Active Record Relation object in steps, allowing a user to filter a list of car parts by make and model of car:

parts = Part.where(:listed => (start_date..end_date))

unless filters[:make_id].nil? || filters[:make_id] == 0    
  parts = parts.joins(:car).
      where("cars.make_id = ?", filters[:make_id] ) 
end

unless filters[:model_id].nil? || filters[:model_id] == 0      
  parts = parts.joins(:car).
      where("cars.model_id = ?", filters[:model_id] ) 
end

etc...

This is repetitive, and I would like to pull this out into a method that takes 'make_id' and 'model_id' as parameters. One important feature to retain is that if a filter is nil (e.g. the user doesn't specify the model) then parts for all models are returned.

I can't figure out how to tackle this and I'm not sure what to Google. Can you help?

share|improve this question

1 Answer

up vote 1 down vote accepted
parts = Part.where(:listed => (start_date..end_date))

[:make_id, :model_id].each do |k|
  filters[k]
  .tap{|f| parts = parts.joins(:car).where("cars.#{k} = ?", f) unless f.to_i.zero?}
end
share|improve this answer
Thanks sawa. Do you know what this is called? i.e. what should I have Googled? – Derek Hill Jan 20 at 18:26
@DerekHill Which part are you mentioning? – sawa Jan 20 at 18:34
On second thoughts don't worry about it. I guess it's the idea of iterating across an array of symbols and converting them to strings where needed. Also the use of tap that I have not encountered before. Just need to get my head around that. Very much appreciate your help. – Derek Hill Jan 20 at 18:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.