Module: Para::Component::Exportable

Extended by:
ActiveSupport::Concern
Included in:
Crud
Defined in:
lib/para/component/exportable.rb

Instance Method Summary collapse

Instance Method Details

#exportable?Boolean

Returns:

  • (Boolean)


10
11
12
# File 'lib/para/component/exportable.rb', line 10

def exportable?
  @exportable ||= exports.length > 0
end

#exportsObject

TODO : Move :configuration column store to JSON instead of HStore which handles more data types and will help us avoid eval here



16
17
18
19
20
21
22
# File 'lib/para/component/exportable.rb', line 16

def exports
  @exports ||= if export.present?
    eval(export).map(&:with_indifferent_access)
  else
    []
  end
end