Skip to content

Instantly share code, notes, and snippets.

@stevenharman
Last active August 29, 2015 14:04
Show Gist options
  • Save stevenharman/5b6c4bbf4b8c83daba77 to your computer and use it in GitHub Desktop.
Save stevenharman/5b6c4bbf4b8c83daba77 to your computer and use it in GitHub Desktop.
Implementing the null object pattern on an ActiveRecord association. This is really a special case being represented with an object which acts like a null object.
class Nerd < ActiveRecord::Base
belongs_to :team, inverse_of: :nerds
def team
super || NullTeam.new
end
end
require 'active_model'
class NullTeam
extend ActiveModel::Naming
include ActiveModel::Conversion
def self.model_name
Team.model_name
end
def lead
nil
end
def lead_id
nil
end
def name
'No team'
end
def persisted?
false
end
def blank?
true
end
def present?
!blank?
end
end
@stevenharman
Copy link
Author

This could likely be simplified by relying on ActiveModel::Model which did not exist when I originally created this NullTeam.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment