Ich habe über die Verwendung von Modellproblemen gelesen, um Fettmodelle zu häuten und Ihre Modellcodes auszutrocknen. Hier ist eine Erklärung mit Beispielen:
1) Trocknen von Modellcodes
Betrachten Sie ein Artikelmodell, ein Ereignismodell und ein Kommentarmodell. Ein Artikel oder eine Veranstaltung hat viele Kommentare. Ein Kommentar gehört entweder zum Artikel oder zum Ereignis.
Traditionell sehen die Modelle folgendermaßen aus:
Kommentar Modell:
class Comment < ActiveRecord::Base
belongs_to :commentable, polymorphic: true
end
Artikelmodell:
class Article < ActiveRecord::Base
has_many :comments, as: :commentable
def find_first_comment
comments.first(created_at DESC)
end
def self.least_commented
#return the article with least number of comments
end
end
Ereignismodell
class Event < ActiveRecord::Base
has_many :comments, as: :commentable
def find_first_comment
comments.first(created_at DESC)
end
def self.least_commented
#returns the event with least number of comments
end
end
Wie wir feststellen können, gibt es sowohl für Event als auch für Article einen wichtigen Code. Mit Bedenken können wir diesen gemeinsamen Code in einem separaten Modul Commentable extrahieren.
Erstellen Sie dazu eine commentable.rb-Datei in App / Models / Concerns.
module Commentable
extend ActiveSupport::Concern
included do
has_many :comments, as: :commentable
end
# for the given article/event returns the first comment
def find_first_comment
comments.first(created_at DESC)
end
module ClassMethods
def least_commented
#returns the article/event which has the least number of comments
end
end
end
Und jetzt sehen Ihre Modelle so aus:
Kommentar Modell:
class Comment < ActiveRecord::Base
belongs_to :commentable, polymorphic: true
end
Artikelmodell:
class Article < ActiveRecord::Base
include Commentable
end
Ereignismodell:
class Event < ActiveRecord::Base
include Commentable
end
2) Hautfettende Fettmodelle.
Betrachten Sie ein Ereignismodell. Eine Veranstaltung hat viele Teilnehmer und Kommentare.
In der Regel sieht das Ereignismodell folgendermaßen aus
class Event < ActiveRecord::Base
has_many :comments
has_many :attenders
def find_first_comment
# for the given article/event returns the first comment
end
def find_comments_with_word(word)
# for the given event returns an array of comments which contain the given word
end
def self.least_commented
# finds the event which has the least number of comments
end
def self.most_attended
# returns the event with most number of attendes
end
def has_attendee(attendee_id)
# returns true if the event has the mentioned attendee
end
end
Modelle mit vielen Assoziationen und anderen Tendenzen neigen dazu, immer mehr Code anzusammeln und nicht mehr zu verwalten. Bedenken bieten eine Möglichkeit, Fettmodule zu häuten, wodurch sie modularer und verständlicher werden.
Das obige Modell kann mithilfe der folgenden Bedenken überarbeitet werden: Erstellen Sie eine attendable.rb
und commentable.rb
-Datei im Ordner app / models / ca. / event
attendable.rb
module Attendable
extend ActiveSupport::Concern
included do
has_many :attenders
end
def has_attender(attender_id)
# returns true if the event has the mentioned attendee
end
module ClassMethods
def most_attended
# returns the event with most number of attendes
end
end
end
commentable.rb
module Commentable
extend ActiveSupport::Concern
included do
has_many :comments
end
def find_first_comment
# for the given article/event returns the first comment
end
def find_comments_with_word(word)
# for the given event returns an array of comments which contain the given word
end
module ClassMethods
def least_commented
# finds the event which has the least number of comments
end
end
end
Und jetzt, wo Sie Bedenken verwenden, reduziert sich Ihr Ereignismodell auf
class Event < ActiveRecord::Base
include Commentable
include Attendable
end
* Bei der Verwendung von Bedenken ist es ratsam, sich für eine domänenbasierte Gruppierung anstatt für eine technische Gruppierung zu entscheiden. Domainbasierte Gruppierung ist wie "Kommentierbar", "Fotofähig", "Teilnahmefähig". Technische Gruppierung bedeutet "ValidationMethods", "FinderMethods" usw.