Sha256: b9f5ecdf90b3d8707dedd29120cacb6150b3cc1a5b67d7f2460eeca2909bd9ea

Contents?: true

Size: 1.62 KB

Versions: 22

Compression:

Stored size: 1.62 KB

Contents

class Avo::Tab
  include Avo::Concerns::IsResourceItem
  include Avo::Concerns::VisibleItems
  include Avo::Fields::FieldExtensions::VisibleInDifferentViews

  class_attribute :item_type, default: :tab
  delegate :items, :add_item, to: :items_holder

  attr_reader :view
  attr_accessor :description
  attr_accessor :items_holder
  attr_accessor :holds_one_field

  def initialize(name: nil, description: nil, view: nil, holds_one_field: false, **args)
    # Initialize the visibility markers
    super

    @name = name
    @description = description
    @holds_one_field = holds_one_field
    @items_holder = Avo::ItemsHolder.new
    @view = view

    show_on args[:show_on] if args[:show_on].present?
    hide_on args[:hide_on] if args[:hide_on].present?
    only_on args[:only_on] if args[:only_on].present?
    except_on args[:except_on] if args[:except_on].present?
  end

  def name
    if @name.respond_to?(:call)
      Avo::Hosts::BaseHost.new(block: @name).handle
    else
      @name
    end
  end

  def hydrate(view: nil)
    @view = view

    items_holder.items.grep(Avo::Panel).each do |panel|
      panel.hydrate(view: view)
    end

    self
  end

  def turbo_frame_id(parent: nil)
    id = "#{Avo::Tab.to_s.parameterize} #{name}".parameterize

    return id if parent.nil?

    "#{parent.turbo_frame_id} #{id}".parameterize
  end

  def empty?
    visible_items.blank?
  end

  # Checks for visibility on itself or on theone field it holds
  def visible_on?(view)
    if holds_one_field
      super(view) && items.first.visible_on?(view)
    else
      super(view)
    end
  end

  def has_a_single_item?
    items.count == 1
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

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