Sha256: 206a32e38502fbf8947f367dee06ee6d70b73a8ba8474c75735166a979703097

Contents?: true

Size: 890 Bytes

Versions: 5

Compression:

Stored size: 890 Bytes

Contents

module Coco
  class Snackbar < Coco::Component
    include Concerns::WithIcon
    include Concerns::ActsAsNotification

    THEME_ICONS = {
      positive: :check,
      warning: :alert_triangle,
      negative: :alert_circle,
      pending: :loader_circle
    }.freeze

    accepts_option :theme, from: [:positive, :warning, :negative, :pending]

    renders_one :action, ->(*args, **kwargs, &block) do
      coco_button(*args, **kwargs, theme: :blank, size: :sm, icon: nil, &block)
    end

    before_render do
      theme = get_option_value(:theme)

      unless tag_attr?(:id)
        set_tag_attr(:id, "snackbar-#{rand(1000)}")
      end

      if !icon? && theme.present?
        icon_opts = get_option_group(:icon).values
        icon_name = THEME_ICONS[theme]
        spin = theme == :pending
        with_icon(**icon_opts, name: icon_name, spin: spin)
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
coveragebook_components-0.19.8 app/components/coco/messaging/snackbar/snackbar.rb
coveragebook_components-0.19.7 app/components/coco/messaging/snackbar/snackbar.rb
coveragebook_components-0.19.6 app/components/coco/messaging/snackbar/snackbar.rb
coveragebook_components-0.19.5 app/components/coco/messaging/snackbar/snackbar.rb
coveragebook_components-0.19.4 app/components/coco/messaging/snackbar/snackbar.rb