I'm a relative Rails newb so be gentle with me :). After watching the recent Railscasts episode on Draper I thought I'd have a go at refactoring some of my stuff to make use of the decorator pattern. And then instantly managed to confuse myself.

I have a view logic in my application layout file that provides login or logout links depending on whethere (wait for it) you're logged in or not.

<% if signed_in? %>
  <li><%= link_to "Sign out", signout_path, :method => :delete %></li>
<% else %>
  <li><%= link_to "Sign in", signin_path %></li>
<% end %>

Seems like a perfect candidate for moving that logic into a decorator. But this is an app wide bit of view logic, so what am I decorating? I guess I'm creating an application decorator but I'm unclear of how to instantiate the app decorator object and how to reference it.

The Railscasts episode does show how to create an app decorator, but it's referenced from within a specific controller (i.e. not the app controller). How do I structure things so I can access the decorated view logic from every page on the site?

Cheers

link|improve this question
2  
Is it safe to assume that you have a User (or Account, Member, etc.) model? If so, I think the decorator you have in mind is best conceived of as a decorator for your User model. – maxenglander Oct 17 '11 at 21:15
Thanks max, i think you're spot on. Cheers – DDubyah Nov 4 '11 at 16:02
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.