Sha256: abdcf10482ea2236d9907d2bd6cb1cf16207aeee4dfbf303ba0f646b7b4254f6
Contents?: true
Size: 1.59 KB
Versions: 5
Compression:
Stored size: 1.59 KB
Contents
module Olivander class Datatable < Effective::Datatable def link_col(field, path, path_args, visible: true) dsl_tool.col(field, visible: visible) do |r| args = [].tap do |arr| if path_args.is_a? Array path_args.each do |arg| arr << r.send(arg) end else arr << r.send(path_args) end end link_to r.send(field), send(path, args) end end def self.auto_datatable(klazz, collection: nil, link_path: nil, only: [], except: [], hide: [], show: [], order_by: []) Rails.logger.debug "initializing datatable for #{klazz}" attributes = klazz.new.attributes.collect{ |x| x[0] } attributes &&= only if only.size.positive? attributes -= except if except.size.positive? default_hidden = %w[id created updated created_at updated_at deleted_at current_user current_action] collection do collection.nil? ? klazz.all : collection end datatable do order(order_by[0], order_by[1]) if order_by.size == 2 bulk_actions_col attributes.each do |key| sym = key.gsub('_id', '').to_sym visible = show.include?(key) || !(default_hidden.include?(key) || hide.include?(key)) if link_path.present? && sym == :id link_col sym, link_path, :id, visible: visible elsif link_path.present? && sym == :name link_col sym, link_path, %i[id name], visible: visible else col sym, visible: visible end end actions_col end end end end
Version data entries
5 entries across 5 versions & 1 rubygems