Sha256: 2cfe8a5717253c4e9ae518994a0d23a7b9b1fdda94bd87b18d7e6b75adaf98cb

Contents?: true

Size: 1.61 KB

Versions: 21

Compression:

Stored size: 1.61 KB

Contents

# frozen_string_literal: true

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

  def initialize(resource: nil, reflection: nil, parent_resource: nil, parent_model: nil, resource_panel: nil, actions: [])
    @resource = resource
    @reflection = reflection
    @resource_panel = resource_panel
    @actions = actions
    @parent_model = parent_model
    @parent_resource = parent_resource
    @view = :show
  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(model: association_resource.model_class, resource: association_resource, resource_id: params[:via_resource_id])
    else
      helpers.resources_path(resource: @resource)
    end
  end

  def edit_path
    args = {}

    if via_resource?
      args = {
        via_resource_class: params[:via_resource_class],
        via_resource_id: params[:via_resource_id]
      }
    end

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

  def render_action_control?(action)
    can_act_on? && action.visible_in_view(parent_resource: @parent_resource)
  end

  private

  # In development and test environments we shoudl 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

21 entries across 21 versions & 1 rubygems

Version Path
avo-2.53.0 app/components/avo/views/resource_show_component.rb
avo-2.52.0 app/components/avo/views/resource_show_component.rb
avo-2.49.0 app/components/avo/views/resource_show_component.rb
avo-2.48.0 app/components/avo/views/resource_show_component.rb
avo-2.47.0 app/components/avo/views/resource_show_component.rb
avo-2.46.0 app/components/avo/views/resource_show_component.rb
avo-2.45.0 app/components/avo/views/resource_show_component.rb
avo-2.44.0 app/components/avo/views/resource_show_component.rb
avo-2.43.0 app/components/avo/views/resource_show_component.rb
avo-2.42.2 app/components/avo/views/resource_show_component.rb
avo-2.42.1 app/components/avo/views/resource_show_component.rb
avo-2.42.0 app/components/avo/views/resource_show_component.rb
avo-2.41.0 app/components/avo/views/resource_show_component.rb
avo-2.40.0 app/components/avo/views/resource_show_component.rb
avo-2.39.0 app/components/avo/views/resource_show_component.rb
avo-2.38.0 app/components/avo/views/resource_show_component.rb
avo-2.37.2 app/components/avo/views/resource_show_component.rb
avo-2.37.1 app/components/avo/views/resource_show_component.rb
avo-2.37.0 app/components/avo/views/resource_show_component.rb
avo-2.36.3 app/components/avo/views/resource_show_component.rb