mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-09 17:09:45 +08:00
31f8bc19d5
* Add unique database index to checklist items position and update errors to render flash message when a checklist item validation fails [SCI-8841] * Improve protocol checklist item reordering [SCI-8841] * Add act as list to gemfile and use sequential updates for reodering with act_as_list [SCI-8841]
37 lines
1.2 KiB
Ruby
37 lines
1.2 KiB
Ruby
class ChecklistItem < ApplicationRecord
|
|
auto_strip_attributes :text, nullify: false
|
|
validates :text,
|
|
presence: true,
|
|
length: { maximum: Constants::TEXT_MAX_LENGTH }
|
|
validates :checklist, presence: true
|
|
validates :checked, inclusion: { in: [true, false] }
|
|
validates :position, uniqueness: { scope: :checklist }
|
|
|
|
belongs_to :checklist,
|
|
inverse_of: :checklist_items
|
|
acts_as_list scope: :checklist, top_of_list: 0, sequential_updates: true
|
|
belongs_to :created_by,
|
|
foreign_key: 'created_by_id',
|
|
class_name: 'User',
|
|
optional: true
|
|
belongs_to :last_modified_by,
|
|
foreign_key: 'last_modified_by_id',
|
|
class_name: 'User',
|
|
optional: true
|
|
|
|
# conditional touch excluding checked updates
|
|
after_destroy :touch_checklist
|
|
after_save :touch_checklist
|
|
after_touch :touch_checklist
|
|
|
|
private
|
|
|
|
def touch_checklist
|
|
# if only checklist item checked attribute changed, do not touch checklist
|
|
return if saved_changes.keys.sort == %w(checked updated_at)
|
|
|
|
# rubocop:disable Rails/SkipsModelValidations
|
|
checklist.touch
|
|
# rubocop:enable Rails/SkipsModelValidations
|
|
end
|
|
end
|