forked from fixin.me/fixin.me
28 lines
903 B
Ruby
28 lines
903 B
Ruby
class Unit < ApplicationRecord
|
|
belongs_to :user, optional: true
|
|
belongs_to :base, optional: true, class_name: "Unit"
|
|
|
|
validates :symbol, presence: true, uniqueness: {scope: :user_id},
|
|
length: {maximum: columns_hash['symbol'].limit}
|
|
validates :name, length: {maximum: columns_hash['name'].limit}
|
|
validates :multiplier, absence: true, unless: :base
|
|
validates :multiplier, presence: true, numericality: {other_than: 0}, if: :base
|
|
validate if: ->{ base&.base.present? } do
|
|
errors.add(:base, :multilevel_nesting)
|
|
end
|
|
|
|
acts_as_nested_set parent_column: :base_id, scope: :user, dependent: :destroy,
|
|
order_column: :multiplier
|
|
|
|
scope :defaults, -> { where(user: nil) }
|
|
|
|
after_save if: :base do |record|
|
|
record.move_to_ordered_child_of(record.base, :multiplier)
|
|
end
|
|
|
|
before_destroy do
|
|
# TODO: disallow destruction if any object depends on this unit
|
|
nil
|
|
end
|
|
end
|