Sha256: e89f96d306522007e07f662a5a9698a2d2544006c8042e056a9f3813e32a04a2

Contents?: true

Size: 1.86 KB

Versions: 1

Compression:

Stored size: 1.86 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}"

      klazz_attributes = klazz.new.attributes.collect{ |x| x[0] }
      column_attributes = klazz_attributes
      column_attributes &&= only if only.size.positive?
      column_attributes -= except if except.size.positive?

      default_hidden = %w[id created updated created_at updated_at deleted_at current_user current_action]

      collection do
        dc = collection.nil? ? klazz.all : collection

        attributes.each do |att|
          dc = dc.where("#{att[0]} = ?", att[1]) if klazz_attributes.include?(att[0].to_s)
        end

        dc
      end

      datatable do
        order(order_by[0], order_by[1]) if order_by.size == 2
        bulk_actions_col
        column_attributes.each do |key|
          label = field_label_for(klazz, 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, :id, visible: visible
          else
            col sym, visible: visible, label: label
          end
        end
        actions_col
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
five-two-nw-olivander-0.1.2.26 app/datatables/olivander/datatable.rb