Sha256: 440dd91d9587cd4e141295cfe13e635fa1f3f1773f6a93a48c129cc92abe8999
Contents?: true
Size: 1.43 KB
Versions: 6
Compression:
Stored size: 1.43 KB
Contents
class Tag < ActiveRecord::Base attr_accessible :name, :name_transcription has_many :taggings, dependent: :destroy, class_name: 'ActsAsTaggableOn::Tagging' validates :name, presence: true after_save :save_taggings after_destroy :save_taggings extend FriendlyId friendly_id :name searchable do text :name string :name time :created_at time :updated_at integer :bookmark_ids, multiple: true do tagged(Bookmark).compact.collect(&:id) end integer :taggings_count do taggings.size end end paginates_per 10 def self.bookmarked(bookmark_ids, options = {}) count = Tag.count count = Tag.default_per_page if count == 0 unless bookmark_ids.empty? tags = Tag.search do with(:bookmark_ids).any_of bookmark_ids order_by :taggings_count, :desc paginate(:page => 1, :per_page => count) end.results end end def save_taggings taggings.collect(&:taggable).each do |t| t.save end end def tagged(taggable_type) self.taggings.where(:taggable_type => taggable_type.to_s).includes(:taggable).collect(&:taggable) end end # == Schema Information # # Table name: tags # # id :integer not null, primary key # name :string(255) # name_transcription :string(255) # created_at :datetime not null # updated_at :datetime not null # taggings_count :integer default(0) #
Version data entries
6 entries across 6 versions & 1 rubygems