Sha256: 6eadcb6fb8f7f58866279f9d7d61fc8ef797ea2e376b42be183498ed6efc146e

Contents?: true

Size: 1.48 KB

Versions: 5

Compression:

Stored size: 1.48 KB

Contents

# frozen_string_literal: true

module Primer
  module Beta
    # Use `CloseButton` to render an `×` without default button styles.
    #
    # @accessibility
    #   `CloseButton` has a default `aria-label` of "Close" to provides assistive technologies with an accessible label.
    #   You may choose to override this label with something more descriptive via [system_arguments][0].
    # [0]: https://primer.style/view-components/system-arguments#html-attributes
    class CloseButton < Primer::Component
      status :beta

      DEFAULT_TYPE = :button
      TYPE_OPTIONS = [DEFAULT_TYPE, :submit].freeze

      # @example Default
      #   <%= render(Primer::Beta::CloseButton.new) %>
      #
      # @param type [Symbol] <%= one_of(Primer::Beta::CloseButton::TYPE_OPTIONS) %>
      # @param system_arguments [Hash] <%= link_to_system_arguments_docs %>
      def initialize(type: DEFAULT_TYPE, **system_arguments)
        @system_arguments = deny_tag_argument(**system_arguments)
        @system_arguments[:tag] = :button
        @system_arguments[:block] = false
        @system_arguments[:type] = fetch_or_fallback(TYPE_OPTIONS, type, DEFAULT_TYPE)
        @system_arguments[:classes] = class_names(
          "close-button",
          system_arguments[:classes]
        )
        @system_arguments[:"aria-label"] ||= "Close"
      end

      def call
        render(Primer::Beta::BaseButton.new(**@system_arguments)) do
          render(Primer::Beta::Octicon.new("x"))
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
primer_view_components-0.0.120 app/components/primer/beta/close_button.rb
primer_view_components-0.0.119 app/components/primer/beta/close_button.rb
primer_view_components-0.0.118 app/components/primer/beta/close_button.rb
primer_view_components-0.0.117 app/components/primer/beta/close_button.rb
primer_view_components-0.0.116 app/components/primer/beta/close_button.rb