2019-12-09 20:38:40 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RepositoryChecklistValue < ApplicationRecord
|
|
|
|
belongs_to :created_by, foreign_key: 'created_by_id', class_name: 'User',
|
2020-01-06 20:03:05 +08:00
|
|
|
inverse_of: :created_repository_checklist_values
|
2019-12-09 20:38:40 +08:00
|
|
|
belongs_to :last_modified_by, foreign_key: 'last_modified_by_id', class_name: 'User',
|
2020-01-06 20:03:05 +08:00
|
|
|
inverse_of: :modified_repository_checklist_values
|
2019-12-09 20:38:40 +08:00
|
|
|
has_one :repository_cell, as: :value, dependent: :destroy, inverse_of: :value
|
2020-01-14 23:55:10 +08:00
|
|
|
has_many :repository_checklist_items_values, dependent: :destroy
|
|
|
|
has_many :repository_checklist_items, -> { order('data ASC') }, through: :repository_checklist_items_values
|
2019-12-09 20:38:40 +08:00
|
|
|
accepts_nested_attributes_for :repository_cell
|
|
|
|
|
2020-01-10 18:09:47 +08:00
|
|
|
validates :repository_cell, presence: true
|
2020-01-14 23:55:10 +08:00
|
|
|
validates :repository_checklist_items, presence: true
|
2020-01-10 18:09:47 +08:00
|
|
|
|
2019-12-18 21:10:41 +08:00
|
|
|
SORTABLE_COLUMN_NAME = 'repository_checklist_items.data'
|
2019-12-09 20:38:40 +08:00
|
|
|
SORTABLE_VALUE_INCLUDE = { repository_checklist_value: :repository_checklist_items }.freeze
|
|
|
|
|
2020-01-10 16:29:20 +08:00
|
|
|
def formatted(separator: ' | ')
|
|
|
|
repository_checklist_items.pluck(:data).join(separator)
|
|
|
|
end
|
|
|
|
|
|
|
|
def export_formatted
|
|
|
|
formatted(separator: "\n")
|
2019-12-09 20:38:40 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def data
|
2020-01-14 23:55:10 +08:00
|
|
|
repository_checklist_items.map { |i| { value: i.id, label: i.data } }
|
2019-12-11 21:49:14 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def data_changed?(new_data)
|
2019-12-18 21:10:41 +08:00
|
|
|
JSON.parse(new_data) != repository_checklist_items.pluck(:id)
|
2019-12-11 21:49:14 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def update_data!(new_data, user)
|
2020-01-14 23:55:10 +08:00
|
|
|
repository_checklist_items_values.destroy_all
|
2019-12-18 21:10:41 +08:00
|
|
|
repository_cell.repository_column
|
|
|
|
.repository_checklist_items.where(id: JSON.parse(new_data)).find_each do |item|
|
2020-01-14 23:55:10 +08:00
|
|
|
repository_checklist_items_values.create!(repository_checklist_item: item)
|
2019-12-18 21:10:41 +08:00
|
|
|
end
|
2019-12-11 21:49:14 +08:00
|
|
|
self.last_modified_by = user
|
|
|
|
save!
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.new_with_payload(payload, attributes)
|
2019-12-20 22:42:54 +08:00
|
|
|
value = new(attributes)
|
2020-01-15 22:23:03 +08:00
|
|
|
value.repository_checklist_items = value.repository_cell
|
|
|
|
.repository_column
|
|
|
|
.repository_checklist_items.where(id: JSON.parse(payload))
|
2019-12-11 21:49:14 +08:00
|
|
|
value
|
2019-12-09 20:38:40 +08:00
|
|
|
end
|
|
|
|
end
|