Cildinizdeki yağ modelleri için model endişelerinin yanı sıra model kodlarınızı KURUYUN hakkında model kaygıları okuyorum . İşte örneklerle bir açıklama:
1) Model kodlarını KURMA
Bir Makale modeli, bir Olay modeli ve Yorum modeli düşünün. Bir makalenin veya etkinliğin birçok yorumu vardır. Bir yorum Makale veya Etkinliğe aittir.
Geleneksel olarak, modeller şöyle görünebilir:
Yorum Modeli:
class Comment < ActiveRecord::Base
belongs_to :commentable, polymorphic: true
end
Makale Modeli:
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
Etkinlik Modeli
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
Fark edebileceğimiz gibi, hem Etkinlik hem de Makale için ortak önemli bir kod parçası var. Endişeleri kullanarak, bu ortak kodu Commentable adlı ayrı bir modülde çıkarabiliriz.
Bunun için app / models / endişelerde commentable.rb dosyası oluşturun.
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
Ve şimdi modelleriniz şöyle görünüyor:
Yorum Modeli:
class Comment < ActiveRecord::Base
belongs_to :commentable, polymorphic: true
end
Makale Modeli:
class Article < ActiveRecord::Base
include Commentable
end
Etkinlik Modeli:
class Event < ActiveRecord::Base
include Commentable
end
2) Cilt Yapıcı Yağ Modelleri.
Bir Etkinlik modeli düşünün. Bir etkinliğin birçok katılımcısı ve yorumu vardır.
Tipik olarak, etkinlik modeli şöyle görünebilir
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
Birçok ilişkilendirmeye sahip ve aksi takdirde daha fazla kod biriktirme ve yönetilememe modelleri vardır. Endişeler, cilt modülleri için daha modüler ve anlaşılması kolay yağ modülleri sağlar.
Yukarıdaki model, aşağıdaki gibi endişeler kullanılarak yeniden düzenlenebilir: Uygulama / modeller / endişeler / etkinlik klasöründe bir attendable.rb
ve commentable.rb
dosya oluşturun
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
Ve şimdi Endişeleri kullanarak Etkinlik modeliniz
class Event < ActiveRecord::Base
include Commentable
include Attendable
end
* Endişeleri kullanırken, 'teknik' gruplama yerine 'alan adı' tabanlı gruplama yapılması önerilir. Etki Alanı Tabanlı gruplandırma 'Yorumlanabilir', 'Fotoğraflanabilir', 'Katlanabilir' gibidir. Teknik gruplandırma 'ValidationMethods', 'FinderMethods' vb.