Draper is a handy new gem for extracting logic normally held in helpers and views into something Ruby developers love: objects! Helpers are a great means to an end, but most of the time, our helpers accept arguments, a great sign that the method is procedural instead of being a method on the object we’re passing.
In my Intro to Test-Driven Rails workshop (which I’m holding September 17-18 in San Francisco and September 24-25 in Boston), one of the apps we build is a simple todo tracker. I decided to try out Draper in the codebase and see how things turned out; let’s dig in to some code and see what it can do!
Here’s the helper in question:
# app/helpers/todos_helper.rb
module TodosHelper
def completion_link(todo)
if todo.completed_at?
link_to 'Incomplete', todo_completion_path(todo), method: :delete
else
link_to 'Complete', todo_completion_path(todo), method: :post
end
end
def todo_state(todo)
if todo.completed_at
'complete'
else
''
end
end
end
Fairly straightforward: we have completion_link, which either POSTs or
DELETEs to /todos/:id/completion (adding or removing the timestamp of
completed_at), and todo_state, which generates an HTML class for us.
The view shouldn’t be much of a surprise:
<%= link_to 'Create a Todo', new_todo_path %>
<ul id='my-todos'>
<% @todos.each do |todo| %>
<li class='<%= todo_state todo %>' id='<%= dom_id todo %>'>
<%= todo.description %>
<%= completion_link todo %>
</li>
<% end %>
</ul>
As I mentioned above, helper methods that accept some instance of a model are
begging to be moved to an object that can instead be instantiated with that
model; in this case, a TodoDecorator.
My ideal interface would look like:
<%= todo.list_item do %>
<%= todo.description %>
<%= todo.completion_link %>
<% end %>
This provides the flexibility of adding whatever markup within the <li>
while moving the logic for id/class generation (as well as the
complete/incomplete links) out of the helper. Now that I know the interface,
let’s write some tests.
First, require the correct file in the RSpec helper:
require 'draper/test/rspec_integration'
To generate the decorator and its test, run:
rails generate decorator Todo
With that added, let’s test-drive the implementation. First, the list_item
method:
# spec/decorators/todo_decorator_spec.rb
describe TodoDecorator do
context 'list_item' do
it 'renders list item for complete todo' do
todo = build_stubbed(:todo, :completed)
result = TodoDecorator.new(todo).list_item do
'string'
end
markup = Capybara.string(result)
markup.should have_css("li#todo_#{todo.id}.complete",
text: 'string')
end
it 'renders list item for incomplete todo' do
todo = build_stubbed(:todo)
result = TodoDecorator.new(todo).list_item do
'string'
end
markup = Capybara.string(result)
markup.should have_css("li#todo_#{todo.id}:not(.complete)",
text: 'string')
end
end
end
I test both complete and incomplete todos, ensuring that the text within the
block is present. Capybara.string makes it really easy to write assertions
against the generated markup.
Next, let’s test completion_link:
describe TodoDecorator do
include Rails.application.routes.url_helpers
context 'completion_link' do
it 'generates a link to complete the todo when incomplete' do
todo = build_stubbed(:todo)
result = TodoDecorator.new(todo).completion_link
markup = Capybara.string(result)
markup.should have_css("a[data-method='post'][href='#{todo_completion_path(todo)}']",
text: 'Complete')
end
it 'generates a link to mark the todo as incomplete when complete' do
todo = build_stubbed(:todo, :completed)
result = TodoDecorator.new(todo).completion_link
markup = Capybara.string(result)
markup.should have_css("a[data-method='delete'][href='#{todo_completion_path(todo)}']",
text: 'Incomplete')
end
end
# context 'list_item' ...
end
Finally, the decorator implementation:
class TodoDecorator < Draper::Base
decorates :todo
def list_item(&block)
h.content_tag(:li, list_item_options, &block)
end
def completion_link
if completed_at?
h.link_to 'Incomplete', completion_path, method: :delete
else
h.link_to 'Complete', completion_path, method: :post
end
end
private
def completion_path
h.todo_completion_path(self)
end
def dom_id
h.dom_id(self)
end
def list_item_options
{ id: dom_id, class: state }
end
def state
if completed_at?
'complete'
end
end
end
This should look familiar since the majority of it came from the existing
helper. The biggest thing to note is accessing helper methods versus methods
on the decorated component. Helper methods are accessed by calling them on
h, which represents Rails’ helpers; this includes routes, record identifiers
(like dom_id), and tag generators (link_to, content_tag). Methods on
the decorated component (todo) can be invoked directly. Finally, if you don’t
want to prefix helper methods with h., just include Draper::LazyHelpers in
your decorator.
The view can now be changed to my desired implementation, and the suite is still green! What are the benefits to a decorator versus leaving logic in the view and helpers?
I’ve only recently started playing with the draper gem but I really enjoy it. The benefits are pretty clear to me and I love the fact that it’s so easily testable. If you’ve got procedural code or logic in your views (or methods on your models that are purely view-specific) I’d recommend moving those methods to a better place: a decorator.
Recently, decorators have become a big part of my Ruby on Rails life.
We used them heavily in a recent client project, Harold Giménez wrote a great post about them, Avdi Grimm is writing about them in Objects on Rails, and Jeff Casimir has a great presentation about them.
Until recently, I still had some questions, however, such as:
I’d like to try to answer those questions here.
A decorator is a design pattern. Its intent, as described in Design Patterns by the Gang of Four is:
> Attach additional responsibilities to an object dynamically. Decorators provide a flexible alternative to subclassing for extending functionality.
An example I’ve seen a couple of times for decorators is the “coffee with milk and sugar” example. One that I found particularly helpful was Luke Redpath’s article.
Here’s a Ruby implementation of that example using class inheritance (subclassing):
class CoffeeWithSugar < Coffee
def cost
super + 0.2
end
end
class CoffeeWithMilkAndSugar < Coffee
def cost
super + 0.4 + 0.2
end
end
The problems with inheritance include:
In Ruby, including a module is also inheritance:
module Milk
def cost_of_milk
0.4 if milk?
end
end
class Coffee
include Milk
include Sugar
def cost
2 + cost_of_milk + cost_of_sugar
end
end
Using Gang of Four terms, a decorator is an object that encloses a component object. It also:
This approach is more flexible than inheritance because you can mix and match responsibilities in more combinations and because the transparency lets you nest decorators recursively, it allows for an unlimited number of responsibilities.
I’ve researched and found four common implementations of decorators in Ruby:
There’s probably others but these seem to be the most common.
This implementation is described, and I think advocated for, in the Design Patterns in Ruby book. It consists of:
Staying with the “coffee with milk and sugar” example for consistency, it is implemented like this:
class Coffee
def cost
2
end
end
module Milk
def cost
super + 0.4
end
end
module Sugar
def cost
super + 0.2
end
end
coffee = Coffee.new
coffee.extend(Milk)
coffee.extend(Sugar)
coffee.cost # 2.6
The benefits of this implementation are:
The drawbacks of this implementation are:
My recommendation is to start with this style of decorator in your Ruby programs, including Rails apps, and then move to something else only when this style fails you.
class Coffee
def cost
2
end
def origin
"Colombia"
end
end
class Milk
def initialize(component)
@component = component
end
def cost
@component.cost + 0.4
end
end
coffee = Coffee.new
Sugar.new(Milk.new(coffee)).cost # 2.6
Sugar.new(Sugar.new(coffee)).cost # 2.4
Sugar.new(Milk.new(coffee)).class # Sugar
Milk.new(coffee).origin # NoMethodError
The benefits of this implementation are:
The drawbacks of this implementation are:
This drawback also means that this decorator isn’t really a decorator under the Gang of Four definition. I maintain that we should still call it a decorator, however, because it otherwise looks and acts overwhelmingly like a decorator.
This is a sticky opinion, however, so let’s consider the “transparent interface” requirement from Gang of Four in more detail.
Let’s say the interface we care about decorating is cost. If so, we don’t need to also support origin method. Then, the PORO decorator meets our practical needs.
By redefining the scope of “interface” to be the subset of the object’s entire interface that we care about, we meet the Gang of Four definition. Is that cheating?
I say no. Consider how many methods are on Object in Ruby 1.9.3:
> Object.new.methods.size
=> 56
An Object in Rails has more than double the number of methods:
> Object.new.methods.size
=> 118
An ActiveRecord Object has even more:
> User.new.methods.size
=> 366
We’re not using hundreds of methods on each object, especially in typical use from a Rails view.
However, if we used the PORO decorator in a Rails app to decorate an ActiveRecord object, we’re probably reducing the interface by about 300 methods.
Depending on how we use the object in the app, that may or may not be a problem.
In practice, when TDD’ing a new feature, I have not found this to be an actual problem. That’s why I say start with this decorator.
If it’s not a problem, great. Your test suite should tell you. You might decide to add one or two more methods that do very clear delegation:
def comments
@component.comments
end
def any?
@component.any?
end
However, you might feel like this is tedious or repetitive. So, let’s say we do care about the “transparent interface” requirement later on.
That’s usually accomplished with method_missing or something from Ruby’s delegate library like Delegator, SimpleDelegator, DelegateClass, or Forwardable.
Here’s a method_missing implementation of a Ruby decorator:
module Decorator
def initialize(component)
@component = component
end
def method_missing(meth, *args)
if @component.respond_to?(meth)
@component.send(meth, *args)
else
super
end
end
def respond_to?(meth)
@component.respond_to?(meth)
end
end
class Coffee
def cost
2
end
def origin
"Colombia"
end
end
class Milk
include Decorator
def cost
@component.cost + 0.4
end
end
coffee = Coffee.new
Sugar.new(Milk.new(coffee)).cost # 2.6
Sugar.new(Sugar.new(coffee)).cost # 2.4
Sugar.new(Milk.new(coffee)).origin # Colombia
Sugar.new(Milk.new(coffee)).class # Sugar
The benefits of this implementation are:
The drawbacks of this implementation are:
We should not. This is Ruby, land of duck typing.
However, Rails inflects (object.class.name) for polymorphic relationships, form_for, and other places. When I tried to convert a few older Rails view helpers to decorators, this was an actual problem in the form of ActiveRecord errors during test runs.
In some cases, this revealed a deeper problems. By re-working the model code, I was able to use PORO decorators and the overall codebase was cleaner. Other times, I just thought it was less time-consuming to make the class appear to be the component’s class and move on.
So, a Rails compromise is this decorator implementation. I’m trying to use it only as a last resort.
class Coffee
def cost
2
end
def origin
"Colombia"
end
end
require 'delegate'
class Decorator < SimpleDelegator
def class
__getobj__.class
end
end
class Milk < Decorator
def cost
super + 0.4
end
end
coffee = Coffee.new
Sugar.new(Milk.new(coffee)).cost # 2.6
Sugar.new(Sugar.new(coffee)).cost # 2.4
Milk.new(coffee).origin # Colombia
Sugar.new(Milk.new(coffee)).class # Coffee
The benefits of this implementation are:
The drawbacks of this implementation are:
classI honestly don’t know exactly what sort of problems can result from using method_missing or redefining class but I imagine they’ll be manifested in the form of a time-consuming debugging session.
I think I now understand the tradeoffs of different Ruby implementations and have a plan for using them:
SimpleDelegator if I need the “transparent interface” requirement or the decorated object’s class is causing problems for RailsI still have other questions like:
I think I have answers to some, but that’s another post…
Written by Dan Croak.