Last active
August 29, 2015 14:04
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Nerd < ActiveRecord::Base | |
belongs_to :team, inverse_of: :nerds | |
def team | |
super || NullTeam.new | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This could likely be simplified by relying on
ActiveModel::Model
which did not exist when I originally created thisNullTeam
.