Sha256: 2861eeb8efd1e2b32d8108c72f49423922867db45f251e68621dee1241fdfa8c

Contents?: true

Size: 1.91 KB

Versions: 4

Compression:

Stored size: 1.91 KB

Contents

module ActiveAdmin
  module Views

    # # Index as a Grid
    #
    # Sometimes you want to display the index screen for a set of resources as a grid
    # (possibly a grid of thumbnail images). To do so, use the :grid option for the
    # index block.
    #
    # ```ruby
    # index as: :grid do |product|
    #   link_to image_tag(product.image_path), admin_product_path(product)
    # end
    # ```
    #
    # The block is rendered within a cell in the grid once for each resource in the
    # collection. The resource is passed into the block for you to use in the view.
    #
    # You can customize the number of columns that are rendered using the columns
    # option:
    #
    # ```ruby
    # index as: :grid, columns: 5 do |product|
    #   link_to image_tag(product.image_path), admin_product_path(product)
    # end
    # ```
    #
    class IndexAsGrid < ActiveAdmin::Component

      def build(page_presenter, collection)
        @page_presenter = page_presenter
        @collection = collection.to_a
        add_class "index"
        build_table
      end

      def number_of_columns
        @page_presenter[:columns] || default_number_of_columns
      end

      def self.index_name
        "grid"
      end

      protected

      def build_table
        resource_selection_toggle_panel if active_admin_config.batch_actions.any?
        table class: "index_grid" do
          @collection.in_groups_of(number_of_columns).each do |group|
            build_row(group)
          end
        end
      end

      def build_row(group)
        tr do
          group.each do |item|
            item ? build_item(item) : build_empty_cell
          end
        end
      end

      def build_item(item)
        td for: item do
          instance_exec(item, &@page_presenter.block)
        end
      end

      def build_empty_cell
        td "&nbsp;".html_safe
      end

      def default_number_of_columns
        3
      end

    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
date_n_time_picker_activeadmin-0.1.2 vendor/bundle/ruby/2.6.0/gems/activeadmin-2.9.0/lib/active_admin/views/index_as_grid.rb
date_n_time_picker_activeadmin-0.1.1 vendor/bundle/ruby/2.6.0/gems/activeadmin-2.9.0/lib/active_admin/views/index_as_grid.rb
activeadmin-2.9.0 lib/active_admin/views/index_as_grid.rb
activeadmin-2.8.1 lib/active_admin/views/index_as_grid.rb