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

All sorts of talk lately in the Rails community about decorators, presenters.

What is the essential difference between the two? If there are, what are the cues that tell me to use one or the other? Or perhaps to use the two in conjunction?

share|improve this question

2 Answers

up vote 22 down vote accepted

A decorator is more of a "let's add some functionality to this entity". A presenter is more of a "let's build a bridge between the model and view", although IMO the presenter pattern has several interpretations.

Decorators are very generic/general purpose, while a presenter has a narrower range of responsibilities/uses (subject to differences in interpretation). So absolutely, decorators are used in conjunction with almost everything.

The Draper site has a link to its railscast, which IMO gives a pretty good overview of both Draper, and the purpose of presenters (or decorators, depending on your definition(s)).

share|improve this answer
1  
Thanks. Seems like that Draper gem is a hybrid of presenter and decorator. – keruilin Oct 22 '11 at 15:45
7  
@keruilin One thing to keep in mind: Decorators should really be able to decorate other decorators (as well as decorating the component object), because one of their purposes is to get around the limitations of inheritance. (Draper does not do this). The decorator pattern is very similar to the composite pattern in that sense, except handled from outside-in instead of inside-out (if that makes sense). – Smudge Dec 20 '11 at 7:32
2  
I see a decorator as a general purpose pattern, and presenter as a specific application of decorator related to the view layer. – Kris Jul 13 '12 at 9:40
@Smudge, draper decorators can decorate other decorates, at least as if the underlying models have an STI relationship. – keruilin Sep 3 '12 at 2:54

I suggest you to check this - Exhibit vs Presenter.

Decorator is a design pattern that is used to extend the functionality of specific object by wrapping it, without effecting other instances of that object. In general, Decorator pattern is an example of Open-Close Principle (class is closed for modifications by available for extensions).

Both the exhibit and presenter patterns are a form of the decorator pattern.

share|improve this answer

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.