mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
57 lines
2 KiB
Ruby
57 lines
2 KiB
Ruby
class SamplesTable < ActiveRecord::Base
|
|
validates :user, :organization, presence: true
|
|
|
|
belongs_to :user, inverse_of: :samples_tables
|
|
belongs_to :organization, inverse_of: :samples_tables
|
|
|
|
scope :find_status,
|
|
->(user, org) { where(user: user, organization: org).pluck(:status) }
|
|
|
|
def self.update_samples_table_state(custom_field, column_index)
|
|
samples_table = SamplesTable.where(user: custom_field.user,
|
|
organization: custom_field.organization)
|
|
org_status = samples_table.first['status']
|
|
if column_index
|
|
# delete column
|
|
org_status['columns'].delete(column_index)
|
|
org_status['columns'].keys.each do |index|
|
|
p index
|
|
if index.to_i > column_index.to_i
|
|
org_status['columns'][(index.to_i - 1).to_s] =
|
|
org_status['columns'].delete(index)
|
|
else
|
|
index
|
|
end
|
|
end
|
|
org_status['ColReorder'].delete(column_index)
|
|
org_status['ColReorder'].map! do |index|
|
|
if index.to_i > column_index.to_i
|
|
(index.to_i - 1).to_s
|
|
else
|
|
index
|
|
end
|
|
end
|
|
else
|
|
# add column
|
|
index = org_status['columns'].count
|
|
org_status['columns'][index] = SampleDatatable::
|
|
SAMPLES_TABLE_DEFAULT_STATE['columns'].first
|
|
org_status['ColReorder'].insert(2, index)
|
|
end
|
|
samples_table.first.update(status: org_status)
|
|
end
|
|
|
|
def self.create_samples_table_state(user_org)
|
|
default_columns_num = SampleDatatable::
|
|
SAMPLES_TABLE_DEFAULT_STATE['columns'].count
|
|
org_status = SampleDatatable::SAMPLES_TABLE_DEFAULT_STATE.deep_dup
|
|
user_org.organization.custom_fields.each_with_index do |_, index|
|
|
org_status['columns'] << SampleDatatable::
|
|
SAMPLES_TABLE_DEFAULT_STATE['columns'].first
|
|
org_status['ColReorder'] << (default_columns_num + index)
|
|
end
|
|
SamplesTable.create(user: user_org.user,
|
|
organization: user_org.organization,
|
|
status: org_status)
|
|
end
|
|
end
|