mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
109 lines
3.5 KiB
Ruby
109 lines
3.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class RepositoryListValue < ApplicationRecord
|
|
belongs_to :repository_list_item
|
|
belongs_to :created_by,
|
|
foreign_key: :created_by_id,
|
|
class_name: 'User'
|
|
belongs_to :last_modified_by,
|
|
foreign_key: :last_modified_by_id,
|
|
class_name: 'User'
|
|
has_one :repository_cell, as: :value, dependent: :destroy, inverse_of: :value
|
|
accepts_nested_attributes_for :repository_cell
|
|
|
|
validates :repository_cell, presence: true
|
|
validates :repository_list_item, presence: true
|
|
|
|
validates_inclusion_of :repository_list_item,
|
|
in: (lambda do |list_value|
|
|
list_value.repository_cell&.repository_column&.repository_list_items || []
|
|
end)
|
|
|
|
SORTABLE_COLUMN_NAME = 'repository_list_items.data'
|
|
EXTRA_SORTABLE_VALUE_INCLUDE = :repository_list_item
|
|
EXTRA_PRELOAD_INCLUDE = :repository_list_item
|
|
|
|
def formatted
|
|
data.to_s
|
|
end
|
|
|
|
def self.add_filter_condition(repository_rows, join_alias, filter_element)
|
|
items_join_alias = "#{join_alias}_status_items"
|
|
repository_rows =
|
|
repository_rows
|
|
.joins(
|
|
"LEFT OUTER JOIN \"repository_list_items\" AS \"#{items_join_alias}\" " \
|
|
"ON \"#{join_alias}\".\"repository_list_item_id\" = \"#{items_join_alias}\".\"id\""
|
|
)
|
|
case filter_element.operator
|
|
when 'any_of'
|
|
repository_rows
|
|
.where("#{items_join_alias}.id = ANY(ARRAY[?]::bigint[])", filter_element.parameters['item_ids'])
|
|
when 'none_of'
|
|
repository_rows
|
|
.where("NOT #{items_join_alias}.id IN(?) OR #{items_join_alias}.id IS NULL",
|
|
filter_element.parameters['item_ids'])
|
|
else
|
|
raise ArgumentError, 'Wrong operator for RepositoryListValue!'
|
|
end
|
|
end
|
|
|
|
def data
|
|
return nil unless repository_list_item
|
|
repository_list_item.data
|
|
end
|
|
|
|
def data_different?(new_data)
|
|
new_data.to_i != repository_list_item_id
|
|
end
|
|
|
|
def update_data!(new_data, user)
|
|
self.repository_list_item_id = new_data.to_i
|
|
self.last_modified_by = user
|
|
save!
|
|
end
|
|
|
|
def snapshot!(cell_snapshot)
|
|
value_snapshot = dup
|
|
list_item = cell_snapshot.repository_column
|
|
.repository_list_items
|
|
.find { |item| item.data == repository_list_item.data }
|
|
value_snapshot.assign_attributes(
|
|
repository_cell: cell_snapshot,
|
|
repository_list_item: list_item,
|
|
created_at: created_at,
|
|
updated_at: updated_at
|
|
)
|
|
value_snapshot.save!
|
|
end
|
|
|
|
def self.new_with_payload(payload, attributes)
|
|
value = new(attributes)
|
|
value.repository_list_item = value.repository_cell
|
|
.repository_column
|
|
.repository_list_items
|
|
.find_by(id: payload)
|
|
value
|
|
end
|
|
|
|
def self.import_from_text(text, attributes, _options = {})
|
|
return nil if text.blank?
|
|
|
|
value = new(attributes)
|
|
column = attributes.dig(:repository_cell_attributes, :repository_column)
|
|
list_item = column.repository_list_items.find { |item| item.data == text }
|
|
|
|
if list_item.blank?
|
|
list_item = column.repository_list_items.new(data: text,
|
|
created_by: value.created_by,
|
|
last_modified_by: value.last_modified_by)
|
|
|
|
return nil unless list_item.save
|
|
end
|
|
|
|
value.repository_list_item = list_item
|
|
value
|
|
end
|
|
|
|
alias export_formatted formatted
|
|
end
|