Sha256: 1824e5da7c3927706aee5dd0283d92f5318112c903945a4b4058b64e741f4e57

Contents?: true

Size: 1.1 KB

Versions: 15

Compression:

Stored size: 1.1 KB

Contents

module Effective
  class DatatablesController < ApplicationController
    skip_log_page_views quiet: true if defined?(EffectiveLogging)

    # This will respond to both a GET and a POST
    def show
      @datatable = find_datatable(params[:id]).try(:new, params[:attributes])
      @datatable.view = view_context if !@datatable.nil?

      EffectiveDatatables.authorized?(self, :index, @datatable.try(:collection_class) || @datatable.try(:class))

      respond_to do |format|
        format.html
        format.json {
          if Rails.env.production?
            render :json => (@datatable.to_json rescue error_json)
          else
            render :json => @datatable.to_json
          end
        }
      end

    end

    private

    def find_datatable(id)
      id_plural = id.pluralize == id && id.singularize != id
      klass = "effective/datatables/#{id}".classify

      (id_plural ? klass.pluralize : klass).safe_constantize
    end

    def error_json
      {
        :draw => params[:draw].to_i,
        :data => [],
        :recordsTotal => 0,
        :recordsFiltered => 0,
      }.to_json
    end

  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
effective_datatables-2.3.0 app/controllers/effective/datatables_controller.rb
effective_datatables-2.2.11 app/controllers/effective/datatables_controller.rb
effective_datatables-2.2.10 app/controllers/effective/datatables_controller.rb
effective_datatables-2.2.9 app/controllers/effective/datatables_controller.rb
effective_datatables-2.2.8 app/controllers/effective/datatables_controller.rb
effective_datatables-2.2.7 app/controllers/effective/datatables_controller.rb
effective_datatables-2.2.6 app/controllers/effective/datatables_controller.rb
effective_datatables-2.2.5 app/controllers/effective/datatables_controller.rb
effective_datatables-2.2.4 app/controllers/effective/datatables_controller.rb
effective_datatables-2.2.3 app/controllers/effective/datatables_controller.rb
effective_datatables-2.2.2 app/controllers/effective/datatables_controller.rb
effective_datatables-2.2.1 app/controllers/effective/datatables_controller.rb
effective_datatables-2.2.0 app/controllers/effective/datatables_controller.rb
effective_datatables-2.1.20 app/controllers/effective/datatables_controller.rb
effective_datatables-2.1.19 app/controllers/effective/datatables_controller.rb