Sha256: abe7862a219d11474b5022b57a412279bfda2c38faf32156dbecc8f6fd094527

Contents?: true

Size: 958 Bytes

Versions: 2

Compression:

Stored size: 958 Bytes

Contents

# frozen_string_literal: true

require "active_support/concern"

module Primer
  # Helper to share tab validation logic between components.
  # The component will raise an error if there are 0 or 2+ selected tabs.
  module TabbedComponentHelper
    extend ActiveSupport::Concern

    class MultipleSelectedTabsError < StandardError; end

    def before_render
      validate_single_selected_tab unless Rails.env.production?
    end

    private

    def navigation_tag(with_panel)
      with_panel ? :div : :nav
    end

    def wrapper(**system_arguments)
      return yield unless @with_panel

      render Primer::TabContainerComponent.new(**system_arguments) do
        yield if block_given?
      end
    end

    def validate_single_selected_tab
      raise MultipleSelectedTabsError, "only one tab can be selected" if selected_tabs_count > 1
    end

    def selected_tabs_count
      @selected_tabs_count ||= tabs.count(&:selected)
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
primer_view_components-0.0.53 app/lib/primer/tabbed_component_helper.rb
primer_view_components-0.0.52 app/lib/primer/tabbed_component_helper.rb