Sha256: bc7cacd3334664fd7ba267c5e98bc4a1503d63f08d169242c65ef1ea08b651a3

Contents?: true

Size: 1.63 KB

Versions: 7

Compression:

Stored size: 1.63 KB

Contents

# frozen_string_literal: true

module Primer
  # Use `ClipboardCopy` to copy element text content or input values to the clipboard.
  #
  # @accessibility
  #   Always set an accessible label to help the user interact with the component.
  class ClipboardCopy < Primer::Component
    status :alpha

    # @example Default
    #   <%= render(Primer::ClipboardCopy.new(value: "Text to copy", "aria-label": "Copy text to the system clipboard")) %>
    #
    # @example With text instead of icons
    #   <%= render(Primer::ClipboardCopy.new(value: "Text to copy", "aria-label": "Copy text to the system clipboard")) do %>
    #     Click to copy!
    #   <% end %>
    #
    # @example Copying from an element
    #   <%= render(Primer::ClipboardCopy.new(for: "blob-path", "aria-label": "Copy text to the system clipboard")) %>
    #   <div id="blob-path">src/index.js</div>
    #
    # @param aria-label [String] String that will be read to screenreaders when the component is focused
    # @param value [String] Text to copy into the users clipboard when they click the component.
    # @param for [String] Element id from where to get the copied value.
    # @param system_arguments [Hash] <%= link_to_system_arguments_docs %>
    def initialize(value: nil, **system_arguments)
      @system_arguments = system_arguments
      @value = value

      validate!

      @system_arguments[:tag] = "clipboard-copy"
      @system_arguments[:value] = value if value.present?
    end

    private

    def validate!
      validate_aria_label
      raise ArgumentError, "Must provide either `value` or `for`" if @value.nil? && @system_arguments[:for].nil?
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
primer_view_components-0.0.51 app/components/primer/clipboard_copy.rb
primer_view_components-0.0.50 app/components/primer/clipboard_copy.rb
primer_view_components-0.0.49 app/components/primer/clipboard_copy.rb
primer_view_components-0.0.48 app/components/primer/clipboard_copy.rb
primer_view_components-0.0.47 app/components/primer/clipboard_copy.rb
primer_view_components-0.0.46 app/components/primer/clipboard_copy.rb
primer_view_components-0.0.45 app/components/primer/clipboard_copy.rb