Sha256: ace81dbd874138efdc39763125618b11910cf3e0058df4c5633afdcc41f641d5

Contents?: true

Size: 1.29 KB

Versions: 7

Compression:

Stored size: 1.29 KB

Contents

module Snaptable
  module Constructor    
    module Renderer

      def present(buttons: nil)
        render_to_string('/snaptable/base', layout: false, locals: { presenter: self, buttons: buttons}).html_safe
      end

      def respond
        respond_to do |format|
          format.html
          format.js { render '/snaptable/sort' }
        end
      end

      def attributes
        model.attribute_names
      end

      def column_names
        attributes.map do |a|
          (a.is_a?(Hash) ? a.keys[0] : a).to_s
        end
      end

      def values(element)
        attributes.map do |attribute|
          attr_value = if attribute.is_a?(Symbol) || attribute.is_a?(String)
            element.send(attribute)
          else
            element.send(*attribute.keys).send(*attribute.values)
          end
          format(attribute, attr_value)
        end
      end

      def format(attribute, attr_value)
        if attr_value.is_a?(Date) || attr_value.is_a?(Time) || attr_value.is_a?(DateTime)
          l attr_value, format: :snaptable
        elsif attribute.to_s.in? enums
          t "#{model.model_name.singular}.#{attribute.to_s.pluralize}.#{attr_value}"
        else
          attr_value
        end.to_s
      end

      def enums
        model.defined_enums.keys
      end

    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
snaptable-0.8.5 lib/snaptable/constructor/renderer.rb
snaptable-0.8.4 lib/snaptable/constructor/renderer.rb
snaptable-0.8.3 lib/snaptable/constructor/renderer.rb
snaptable-0.8.2 lib/snaptable/constructor/renderer.rb
snaptable-0.8.1 lib/snaptable/constructor/renderer.rb
snaptable-0.8.0 lib/snaptable/constructor/renderer.rb
snaptable-0.7.0 lib/snaptable/constructor/renderer.rb