Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an object that is coming back blank and here is what I would like to do

@photo = [] # this is coming back blank, but it won't do the correct comparison in the ||
@sanitized_photos = PhotoPresenter.new(@photo).to_json || PhotoPresenter.default_layout.to_json

Any thoughts on how to make it work without a beefy if statement

UPDATED ::: Here is a copy of my presenter that works pretty well. I know i have put collection logic inside here but it works the most clean way

class PhotoPresenter < Presenter

  def initialize(photo)
    @photo = photo
  end

  def to_gallery
    {
      "thumb" => @photo.image.url(:thumb),
      "image" => @photo.image.url(:large),
      "big" => @photo.image.url,
      "title" => @photo.attachable.name
    }
  end

  def self.blank_gallery
    {
        "thumb" => help.polymorphic_photo_url(nil, :large),
        "image" => help.polymorphic_photo_url(nil, :large),
        "big" => help.polymorphic_photo_url(nil, :large),
        "title" => "No photo provided"
      }
  end

  def self.as_gallery(photos)
    unless photos.blank?
      photos.collect{|object| self.new(object).to_gallery}.to_json
    else
      blank_gallery.to_json
    end
  end

end
share|improve this question
What's wrong with adding a class method that returns default_layout if the photo list is empty? Then you could PhotoPresenter.x(@photo).to_json. – mu is too short May 10 '12 at 0:12
mu is too short. I'm not sure I follow the difference as to what I did with the as_gallery. Must be missing something. You mean just set something in the initialize to return the blank_gallery. Could you possibly answer the question with an example. Then I could accept the answer if it is super awesome :) Im doing this now. PhotoPresenter.as_gallery(@photos) and it will return the default if the set is empty. Is that what you meant? – bokor May 21 '12 at 17:01
Yes, I think your as_gallery is what I was thinking of. Push the logic down into the model so that you only have to worry about it in one place. – mu is too short May 21 '12 at 17:28

1 Answer

up vote 0 down vote accepted
@sanitized_photos = @photo.any? ? PhotoPresenter.new(@photo).to_json : PhotoPresenter.default_layout.to_json

That being said you are much better of moving this logic into PhotoPresenter class initializer

share|improve this answer
Yuriy, I currently have it working as you have it there. Do you have away to do this without the if condition. I'm trying to figure out how to do this in my presenter but don't have a good way yet to get the code working. I can refactor later...Thanks! – bokor May 9 '12 at 22:12
Can you share your presenter code? – Yuriy Goldshtrakh May 9 '12 at 22:30
I created a class method in my presenter...edited above – bokor May 10 '12 at 6:20

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.