Sha256: a2296419ae97157deeeb6a1bcbee1b21539dbd4d873840cd62a77674513fb8f3
Contents?: true
Size: 1.52 KB
Versions: 10
Compression:
Stored size: 1.52 KB
Contents
class Shelf < ApplicationRecord include MasterModel scope :real, -> { where('library_id != 1') } belongs_to :library, validate: true has_many :items has_many :picture_files, as: :picture_attachable, dependent: :destroy validates_associated :library validates :library, presence: true validates_uniqueness_of :display_name, scope: :library_id validates :name, format: { with: /\A[a-z][0-9a-z\-_]{1,253}[0-9a-z]\Z/ } before_update :reset_position acts_as_list scope: :library searchable do string :shelf_name do name end string :library do library.name end text :name do [name, library.name, display_name, library.display_name] end integer :position end paginates_per 10 def web_shelf? return true if id == 1 false end def self.web Shelf.find(1) end def localized_display_name display_name.localize end # http://stackoverflow.com/a/12437606 def reset_position if library_id_changed? self.position = library.shelves.count > 0 ? library.shelves.last.position + 1 : 1 end end end # == Schema Information # # Table name: shelves # # id :integer not null, primary key # name :string not null # display_name :text # note :text # library_id :integer not null # items_count :integer default(0), not null # position :integer # created_at :datetime # updated_at :datetime # deleted_at :datetime # closed :boolean default(FALSE), not null #
Version data entries
10 entries across 10 versions & 1 rubygems