2017-06-23 21:19:08 +08:00
|
|
|
class ChecklistItem < ApplicationRecord
|
2016-09-21 21:35:23 +08:00
|
|
|
auto_strip_attributes :text, nullify: false
|
2016-10-05 23:45:20 +08:00
|
|
|
validates :text,
|
|
|
|
presence: true,
|
|
|
|
length: { maximum: Constants::TEXT_MAX_LENGTH }
|
2016-02-12 23:52:43 +08:00
|
|
|
validates :checklist, presence: true
|
|
|
|
validates :checked, inclusion: { in: [true, false] }
|
2023-08-02 21:37:01 +08:00
|
|
|
validates :position, uniqueness: { scope: :checklist }
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2017-06-28 21:21:32 +08:00
|
|
|
belongs_to :checklist,
|
2023-01-04 19:33:11 +08:00
|
|
|
inverse_of: :checklist_items
|
2023-08-02 21:37:01 +08:00
|
|
|
acts_as_list scope: :checklist, top_of_list: 0, sequential_updates: true
|
2017-06-28 21:21:32 +08:00
|
|
|
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
|
2022-05-11 21:51:26 +08:00
|
|
|
|
2023-01-04 19:33:11 +08:00
|
|
|
# conditional touch excluding checked updates
|
|
|
|
after_destroy :touch_checklist
|
|
|
|
after_save :touch_checklist
|
2023-01-12 23:18:31 +08:00
|
|
|
after_touch :touch_checklist
|
2023-01-04 19:33:11 +08:00
|
|
|
|
2023-09-22 01:24:58 +08:00
|
|
|
def save_multiline!
|
|
|
|
if with_paragraphs
|
|
|
|
if new_record?
|
|
|
|
original_position = position
|
|
|
|
self.position = nil
|
|
|
|
save!
|
|
|
|
insert_at(original_position + 1)
|
|
|
|
else
|
|
|
|
save!
|
|
|
|
end
|
|
|
|
return [self]
|
|
|
|
end
|
|
|
|
|
|
|
|
items = []
|
|
|
|
if new_record?
|
|
|
|
start_position = position
|
2023-09-22 16:07:29 +08:00
|
|
|
text.split("\n").compact.each do |line|
|
2023-09-22 01:24:58 +08:00
|
|
|
new_item = checklist.checklist_items.create!(text: line)
|
|
|
|
new_item.insert_at(start_position + 1)
|
|
|
|
start_position = new_item.position
|
|
|
|
items.push(new_item)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
item = self
|
2023-09-22 16:07:29 +08:00
|
|
|
text.split("\n").compact.each_with_index do |line, index|
|
2023-09-22 01:24:58 +08:00
|
|
|
if index.zero?
|
|
|
|
update!(text: line)
|
|
|
|
items.push(self)
|
|
|
|
else
|
|
|
|
new_item = checklist.checklist_items.create!(text: line)
|
|
|
|
new_item.insert_at(item.position + 1)
|
|
|
|
item = new_item
|
|
|
|
items.push(new_item)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
items
|
|
|
|
end
|
|
|
|
|
2022-05-11 21:51:26 +08:00
|
|
|
private
|
|
|
|
|
2023-01-04 19:33:11 +08:00
|
|
|
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
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|