मैं मॉडल के बारे में त्वचा-वसा के मॉडल के साथ-साथ आपके मॉडल कोड की DRY को पढ़ रहा हूँ । यहाँ उदाहरण के साथ एक स्पष्टीकरण है:
1) मॉडल कोडों को पूरा करना
एक अनुच्छेद मॉडल, एक घटना मॉडल और एक टिप्पणी मॉडल पर विचार करें। एक लेख या एक घटना में कई टिप्पणियां हैं। एक टिप्पणी या तो अनुच्छेद या घटना के अंतर्गत आती है।
परंपरागत रूप से, मॉडल इस तरह दिख सकते हैं:
टिप्पणी मॉडल:
class Comment < ActiveRecord::Base
belongs_to :commentable, polymorphic: true
end
लेख मॉडल:
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
इवेंट मॉडल
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
जैसा कि हम देख सकते हैं, इवेंट और आर्टिकल दोनों के लिए कॉमन कॉमन का एक महत्वपूर्ण हिस्सा है। चिंताओं का उपयोग करके हम एक अलग मॉड्यूल में इस सामान्य कोड को निकाल सकते हैं।
इसके लिए ऐप / मॉडल / सरोकारों में एक टिप्पणी करने योग्य.आरबी फ़ाइल बनाएँ।
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
और अब आपके मॉडल इस तरह दिखते हैं:
टिप्पणी मॉडल:
class Comment < ActiveRecord::Base
belongs_to :commentable, polymorphic: true
end
लेख मॉडल:
class Article < ActiveRecord::Base
include Commentable
end
इवेंट मॉडल:
class Event < ActiveRecord::Base
include Commentable
end
2) त्वचा-वसा वसा मॉडल।
एक इवेंट मॉडल पर विचार करें। एक घटना में कई परिचारक और टिप्पणियां हैं।
आमतौर पर, इवेंट मॉडल इस तरह दिख सकता है
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
कई संघों वाले मॉडल और अन्यथा अधिक से अधिक कोड जमा करने और असहनीय बनने की प्रवृत्ति है। चिंताएँ त्वचा-वसा के वसा मॉड्यूल का एक तरीका प्रदान करती हैं जिससे वे अधिक सुव्यवस्थित और समझने में आसान हो जाते हैं।
उपरोक्त मॉडल को नीचे दी गई चिंताओं का उपयोग करके फिर से बनाया जा सकता है: एप्लिकेशन / मॉडल / चिंताओं / ईवेंट फ़ोल्डर में एक attendable.rb
और commentable.rb
फ़ाइल बनाएं
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
और अब चिंता का उपयोग करते हुए, आपका ईवेंट मॉडल कम हो जाता है
class Event < ActiveRecord::Base
include Commentable
include Attendable
end
* जबकि 'तकनीकी' समूहीकरण के बजाय 'डोमेन' आधारित ग्रुपिंग के लिए जाने की सलाह दी जाती है। डोमेन आधारित ग्रुपिंग 'कमेंटेबल', 'फोटोबल', 'अटेंडेबल' की तरह है। टेक्निकल ग्रुपिंग का अर्थ होगा 'वैलिडेशनमेथोड्स', 'फाइंडरमैथोड्स' आदि