kxhitiz
kxhitiz

Reputation: 1949

Adding conditions in rails include

going directly to my problem.

render :json => projects.to_json(:only => ['name', 'id'],:include => {:client => {:only => ['name']}, :deliverables => {:only => ['name', 'id'], :include => {:tasks => {:only => ['name','id']} } } })

This is how my controller responds for json request. Now my problem is that it lists all the deliverables & tasks that are in given project but here I want to respond with tasks & deliverables that meets certain condition like all that are created in specific month.

Thanks is advance.

Upvotes: 0

Views: 1355

Answers (2)

kxhitiz
kxhitiz

Reputation: 1949

Here's what I did, in project model

has_many :uncompleted_deliverables, :class_name => 'Deliverable', :conditions => 'completed = false'

The same applies to deliverable model

has_many :uncompleted_tsks, :class_name => 'Task', :conditions => 'completed = false'

And then responded json in following way,

 format.json { render :json => projects.to_json(:only => ['name', 'id'],
                                                 :include => {:client => {:only => ['name']}, :uncompleted_deliverables => {:only => ['name', 'id'], :include => {:uncompleted_tsks => {:only => ['name','id']} } } }) }

Anyway thanks guys for your response..

Upvotes: 2

alex
alex

Reputation: 1900

Could you just include a proc? (see end of documentation here)

I guess the code could look something like that:

in you Project model:

def to_json(options={})
  tasks_json = Proc.new { |options|
    options[:builder].tasks do
      selected_tasks = tasks.select {|t| t.created_at > 30.days.ago } # or whatever your condition is
      selected_tasks.each do |t|
        options[:builder].task do
          options[:builder].tag!('id', t.id)
          options[:builder].tag!('name', t.name)
        end
      end
    end }

  options.merge!(:procs => [tasks_json])
end

Would that work for you?

Upvotes: 0

Related Questions