mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
29 lines
746 B
Ruby
29 lines
746 B
Ruby
# frozen_string_literal: true
|
|
|
|
class StepOrderableElement < ApplicationRecord
|
|
validates :position, uniqueness: { scope: :step }
|
|
validate :check_step_relations
|
|
|
|
around_destroy :decrement_following_elements_positions
|
|
|
|
belongs_to :step, inverse_of: :step_orderable_elements, touch: true
|
|
belongs_to :orderable, polymorphic: true, inverse_of: :step_orderable_element
|
|
|
|
private
|
|
|
|
def check_step_relations
|
|
if step != orderable.step
|
|
errors.add(
|
|
:step_orderable_element,
|
|
I18n.t('activerecord.errors.models.step_orderable_element.attributes.step.wrong_step')
|
|
)
|
|
end
|
|
end
|
|
|
|
def decrement_following_elements_positions
|
|
step.with_lock do
|
|
yield
|
|
step.normalize_elements_position
|
|
end
|
|
end
|
|
end
|