Sha256: 7f00f2f93af35cd5918a9049c835a72cad0960a4875fb9642569c4ef2a434ae1

Contents?: true

Size: 1.68 KB

Versions: 19

Compression:

Stored size: 1.68 KB

Contents

# frozen_string_literal: true

class Avo::Views::ResourceShowComponent < Avo::ResourceComponent
  include Avo::ApplicationHelper

  attr_reader :display_breadcrumbs

  prop :resource
  prop :reflection
  prop :parent_resource
  prop :parent_record
  prop :resource_panel, reader: :public
  prop :actions, default: [].freeze, reader: :public

  def after_initialize
    @view = Avo::ViewInquirer.new("show")
    @display_breadcrumbs = @reflection.blank?
  end

  def title
    if @reflection.present?
      return field.name if has_one_field?

      reflection_resource.name
    else
      @resource.default_panel_name
    end
  end

  def back_path
    if via_resource?
      helpers.resource_path(resource: association_resource, resource_id: params[:via_record_id])
    else
      helpers.resources_path(resource: @resource, **keep_referrer_params)
    end
  end

  def edit_path
    args = if via_resource?
      {
        via_resource_class: params[:via_resource_class],
        via_record_id: params[:via_record_id]
      }
    elsif @parent_resource.present?
      {
        via_resource_class: @parent_resource.class,
        via_record_id: @parent_record.to_param
      }
    else
      {}
    end

    helpers.edit_resource_path(record: @resource.record, resource: @resource, **args)
  end

  def controls
    @resource.render_show_controls
  end

  def view_for(field)
    @view
  end

  private

  # In development and test environments we should show the invalid field errors
  def should_display_invalid_fields_errors?
    (Rails.env.development? || Rails.env.test?) && @resource.invalid_fields.present?
  end

  def has_one_field?
    field.present? and field.instance_of? Avo::Fields::HasOneField
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
avo-3.16.2 app/components/avo/views/resource_show_component.rb
avo-3.16.1 app/components/avo/views/resource_show_component.rb
avo-3.16.0 app/components/avo/views/resource_show_component.rb
avo-3.15.7 app/components/avo/views/resource_show_component.rb
avo-3.15.6 app/components/avo/views/resource_show_component.rb
avo-3.15.5 app/components/avo/views/resource_show_component.rb
avo-3.15.4 app/components/avo/views/resource_show_component.rb
avo-3.15.3 app/components/avo/views/resource_show_component.rb
avo-3.15.2 app/components/avo/views/resource_show_component.rb
avo-3.15.1 app/components/avo/views/resource_show_component.rb
avo-3.15.0 app/components/avo/views/resource_show_component.rb
avo-3.14.5 app/components/avo/views/resource_show_component.rb
avo-3.14.4 app/components/avo/views/resource_show_component.rb
avo-3.14.3 app/components/avo/views/resource_show_component.rb
avo-3.14.2 app/components/avo/views/resource_show_component.rb
avo-3.14.1 app/components/avo/views/resource_show_component.rb
avo-3.14.0 app/components/avo/views/resource_show_component.rb
avo-3.13.7 app/components/avo/views/resource_show_component.rb
avo-3.13.6 app/components/avo/views/resource_show_component.rb