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?
|
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? |
|||
|
|
|
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)). |
|||||||||||||||
|
|
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. |
|||
|
|