Sha256: 1e4d51ce53d49b293a14a501fa30efc325f03ecc3cd330152362aec8f61f37a4

Contents?: true

Size: 1.51 KB

Versions: 3

Compression:

Stored size: 1.51 KB

Contents

module Trestle
  class Table
    class Row
      attr_reader :options, :block

      def initialize(options={}, &block)
        @options = options
        @block = block if block_given?
      end

      def renderer(table:, template:)
        Renderer.new(self, table: table, template: template)
      end

      class Renderer
        def initialize(row, table:, template:)
          @row, @table, @template = row, table, template
        end

        def columns
          @table.columns.map { |column|
            column.renderer(table: @table, template: @template)
          }.select(&:render?)
        end

        def render(instance)
          @template.content_tag(:tr, options(instance)) do
            @template.safe_join(columns.map { |column| column.render(instance) }, "\n")
          end
        end

        def options(instance)
          options = Trestle::Options.new

          if @table.admin && @table.autolink? && @table.admin.actions.include?(:show)
            options.merge!(data: { controller: "follow-url", action: "click->follow-url#follow" })
            options.merge!(data: { url: admin_url_for(instance) })
            options.merge!(data: { modal: true }) if @table.admin.form.modal?
          end

          options.merge!(@row.options)
          options.merge!(@template.instance_exec(instance, &@row.block)) if @row.block

          options
        end

      protected
        def admin_url_for(instance)
          @template.admin_url_for(instance, admin: @table.admin)
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
trestle-0.10.0 lib/trestle/table/row.rb
trestle-0.10.0.pre2 lib/trestle/table/row.rb
trestle-0.10.0.pre lib/trestle/table/row.rb