Sha256: 308ba921df33d6de6f31efc92c6c5d0456d1719d7ee364bea45657d21521a52c

Contents?: true

Size: 1.92 KB

Versions: 2

Compression:

Stored size: 1.92 KB

Contents

module Avo
  module ResourcesHelper
    def resource_table(resources, resource)
      render partial: "avo/partials/resource_table", locals: {
        resources: resources,
        resource: resource
      }
    end

    def resource_grid(resources, resource)
      render partial: "avo/partials/resource_grid", locals: {
        resources: resources,
        resource: resource
      }
    end

    def index_field_wrapper(**args, &block)
      render Index::FieldWrapperComponent.new(**args) do
        capture(&block)
      end
    end

    def field_wrapper(**args, &block)
      render Avo::FieldWrapperComponent.new(**args) do
        capture(&block)
      end
    end
    alias_method :edit_field_wrapper, :field_wrapper
    alias_method :show_field_wrapper, :field_wrapper

    def filter_wrapper(name: nil, index: nil, **args, &block)
      render layout: "layouts/avo/filter_wrapper", locals: {
        name: name,
        index: index
      } do
        capture(&block)
      end
    end

    def item_selector_data_attributes(resource, controller: "")
      {
        resource_name: resource.model_key,
        resource_id: resource.record.to_param,
        controller: "item-selector #{controller}"
      }
    end

    def resource_show_path(resource:, parent_resource: nil, parent_record: nil, parent_or_child_resource: nil)
      args = {}

      if parent_record.present?
        args = {
          via_resource_class: parent_resource.class.to_s,
          via_record_id: parent_record.to_param
        }
      end

      resource_path(record: resource.record, resource: parent_or_child_resource, **args)
    end

    def resource_for_record(record)
      klass = Avo.resource_manager.get_resource_by_model_class(record.class)
      klass.new(record: record)
    end

    def record_title(record)
      resource_for_record(record).record_title
    end

    def record_path(record)
      resource_for_record(record).record_path
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
avo-3.16.4 app/helpers/avo/resources_helper.rb
avo-3.16.3 app/helpers/avo/resources_helper.rb