Sha256: 5cf1a9eebdee348a85df337cdfa4f73deee836b0e607341fac478cdd0e632e09
Contents?: true
Size: 1.14 KB
Versions: 10
Compression:
Stored size: 1.14 KB
Contents
# frozen_string_literal: true module Effective class DatatableDslTool attr_reader :datatable attr_reader :view attr_accessor :in_datatables_do_block include Effective::EffectiveDatatable::Dsl::BulkActions include Effective::EffectiveDatatable::Dsl::Charts include Effective::EffectiveDatatable::Dsl::Datatable include Effective::EffectiveDatatable::Dsl::Filters def initialize(datatable) @datatable = datatable @view = datatable.view end def method_missing(method, *args, &block) # Catch a common error if [:bulk_actions, :charts, :collection, :filters].include?(method) && in_datatables_do_block raise "#{method} block must be declared outside the datatable do ... end block" end if datatable.respond_to?(method) if block_given? datatable.send(method, *args) { yield } else datatable.send(method, *args) end elsif view.respond_to?(method) if block_given? view.send(method, *args) { yield } else view.send(method, *args) end else super end end end end
Version data entries
10 entries across 10 versions & 1 rubygems