universal_table/app/models/table_entry.rb

128 lines
4.2 KiB
Ruby
Raw Normal View History

2015-11-13 13:10:00 +00:00
class TableEntry
include Mongoid::Document
include Mongoid::Timestamps
include Slug
2022-02-24 09:31:45 +00:00
attr_accessor :sort_value
2022-02-25 06:49:00 +00:00
field :sort_number, type: Integer
2024-07-21 07:23:29 +00:00
field :view_count, type: Integer, default: 0
2022-02-24 09:31:45 +00:00
2015-11-13 13:10:00 +00:00
has_many :column_entries, :dependent => :destroy
2024-07-20 00:45:45 +00:00
belongs_to :u_table, index: true
2015-11-13 13:10:00 +00:00
accepts_nested_attributes_for :column_entries, :allow_destroy => true
2022-02-25 06:49:00 +00:00
before_save do
if self[:sort_number].nil?
2022-04-01 08:06:59 +00:00
sort_number_to_set = self.class.where(u_table_id: self.u_table_id).order_by(sort_number: :desc).first.sort_number rescue 0
2022-02-25 06:49:00 +00:00
self.sort_number = sort_number_to_set + 1
end
end
2022-02-24 09:31:45 +00:00
def self.u_table
UTable.find(criteria.selector['u_table_id'])
end
def self.get_sort_field(params: nil, table: nil)
field = nil
direction = nil
2022-02-24 09:31:45 +00:00
if table.nil?
table = self.u_table
2022-02-24 09:31:45 +00:00
end
if params
2022-02-24 09:31:45 +00:00
if !params[:sortcolumn].blank?
field = params[:sortcolumn]
direction = params[:sort]
else
field = params[:sort].blank? ? nil : params[:sort]
direction = params[:order].blank? ? 'desc' : params[:order]
end
if field.nil?
field, direction = table.default_ordered
2022-02-25 06:49:00 +00:00
else
field = field.to_s
if !(field=='created_at' || field == 'sort_number')
field = table.table_columns.where(key: field).first || table.table_columns.where(title: field).first
2022-02-24 09:31:45 +00:00
end
end
end
[table, field, direction]
end
def self.sorted(entries: nil, params: nil, table: nil, field: nil, direction: nil, paginated: true)
if field.nil? || direction.nil?
table, field, direction = self.get_sort_field(params: params, table: table)
end
if entries.nil?
entries = table.table_entries
end
if (field=='created_at' || field == 'sort_number')
values = entries.order_by({field => direction})
else
column_to_sort = field
if entries.selector.present?
column_entries = ColumnEntry.where(:table_column_id=>column_to_sort.id,:table_entry_id.in => entries.pluck(:id)).order_by(column_to_sort.sort_hash(direction))
else
column_entries = ColumnEntry.where(:table_column_id=>column_to_sort.id).order_by(column_to_sort.sort_hash(direction))
end
values = column_entries.map{|v| v.table_entry}
if paginated
values = Kaminari.paginate_array(values)
end
end
values
end
def self.sorting(params: nil,table: nil,field: nil,direction: nil,page_num: nil,per: nil,column_entries: nil,paginated: true)
page_num = 1 if page_num.blank?
page_num = page_num.to_i
if field.nil? || direction.nil?
table, field, direction = self.get_sort_field(params: params, table: table)
end
2022-02-24 09:31:45 +00:00
2022-02-25 06:49:00 +00:00
if (field=='created_at' || field == 'sort_number')
if column_entries.nil?
values = self.order_by({field => direction})
else
2023-06-12 15:37:32 +00:00
values = column_entries.map{|v| v.table_entry}.compact
2022-02-25 06:49:00 +00:00
values = values.sort_by{|v| v.send(field)}
if direction == 'desc'
values = values.reverse
end
2022-03-05 13:41:58 +00:00
if paginated || !per.nil?
values_count = values.count
values_count = 1 if values_count==0
values = Kaminari.paginate_array(values,limit: values_count)
end
2022-03-05 13:26:42 +00:00
end
if !per.nil?
values = values.page(page_num).per(per)
2022-02-24 11:34:53 +00:00
end
2022-02-24 09:31:45 +00:00
else
2022-02-25 06:49:00 +00:00
column_to_sort = field
2022-02-24 11:34:53 +00:00
if column_entries.nil?
if criteria.selector.keys != ['u_table_id']
column_entries = ColumnEntry.where(:table_column_id=>column_to_sort.id,:table_entry_id.in => criteria.pluck(:id)).order_by(column_to_sort.sort_hash(direction))
else
column_entries = ColumnEntry.where(:table_column_id=>column_to_sort.id).order_by(column_to_sort.sort_hash(direction))
end
else
column_entries = ColumnEntry.where(:table_column_id=>column_to_sort.id,:table_entry_id.in => (column_entries.class==Kaminari::PaginatableArray ? column_entries.map(&:table_entry_id) : column_entries.pluck(:table_entry_id))).order_by(column_to_sort.sort_hash(direction))
2022-02-24 09:31:45 +00:00
end
2022-02-24 11:34:53 +00:00
if !per.nil?
total_count = column_entries.count
column_entries = column_entries.page(page_num).per(per)
offset = page_num==0 ? 0 : (page_num-1)*per
end_offset = (total_count-offset-per)
end_offset = 0 if end_offset<0
values = Kaminari.paginate_array([nil]*offset+column_entries.map{|v| v.table_entry}+[nil]*end_offset).page(page_num).per(per)
else
values = column_entries.map{|v| v.table_entry}
if paginated
values = Kaminari.paginate_array(values)
end
2022-02-24 09:31:45 +00:00
end
end
2022-02-24 11:34:53 +00:00
values
2022-02-24 09:31:45 +00:00
end
2015-11-13 13:10:00 +00:00
end