Sha256: ace0cbb5d218d87ee0328b2571aa5a23c39fc7412b8ff13d1fb98eae4efc5e70

Contents?: true

Size: 1.08 KB

Versions: 2

Compression:

Stored size: 1.08 KB

Contents

module Roar::Rails
  module ModelMethods
    # DISCUSS: move this into a generic namespace as we could need that in Sinatra as well.
    def extend_with!(model, representer)
      model.extend(representer)
    end
  end
  
  module Responder
    include ModelMethods
    
    # DISCUSS: why THE FUCK is options not passed as a method argument but kept as an internal instance variable in the responder? this is something i will never understand about Rails.
    def display(model, *args)
      if representer = options.delete(:represent_items_with)
        render_items_with(model, representer) # convenience API, not recommended since it's missing hypermedia.
        return super
      end
      
      representer = controller.representer_for(format, model, options)
      extend_with!(model, representer)
      super
    end
    
  private
    def render_items_with(collection, representer)
      collection.map! do |m|  # DISCUSS: i don't like changing the method argument here.
        extend_with!(m, representer)
        m.to_hash # FIXME: huh? and what about XML?
      end
    end
    
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
roar-rails-0.0.9 lib/roar/rails/responder.rb
roar-rails-0.0.8 lib/roar/rails/responder.rb