Sha256: 06f46b07118cde8785cfaad62c8424f74c534a5c88637b786e5deb0543fa4f22

Contents?: true

Size: 1.16 KB

Versions: 10

Compression:

Stored size: 1.16 KB

Contents

# frozen_string_literal: true

class Avo::AlertComponent < Avo::BaseComponent
  include Avo::ApplicationHelper

  prop :type, kind: :positional
  prop :message, kind: :positional

  def icon
    return "heroicons/solid/exclamation-circle" if is_error?
    return "heroicons/solid/exclamation" if is_warning?
    return "heroicons/solid/exclamation-circle" if is_info?
    return "heroicons/solid/check-circle" if is_success?

    "check-circle"
  end

  def classes
    return "hidden" if is_empty?

    result = "max-w-lg w-full shadow-lg rounded px-4 py-3 rounded relative border text-white pointer-events-auto"

    result += if is_error?
      " bg-red-400 border-red-600"
    elsif is_success?
      " bg-green-500 border-green-600"
    elsif is_warning?
      " bg-orange-400 border-orange-600"
    elsif is_info?
      " bg-blue-400 border-blue-600"
    end

    result
  end

  def is_error?
    @type.to_sym == :error || @type.to_sym == :alert
  end

  def is_success?
    @type.to_sym == :success
  end

  def is_info?
    @type.to_sym == :notice || @type.to_sym == :info
  end

  def is_warning?
    @type.to_sym == :warning
  end

  def is_empty?
    @message.nil?
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
avo-3.15.1 app/components/avo/alert_component.rb
avo-3.15.0 app/components/avo/alert_component.rb
avo-3.14.5 app/components/avo/alert_component.rb
avo-3.14.4 app/components/avo/alert_component.rb
avo-3.14.3 app/components/avo/alert_component.rb
avo-3.14.2 app/components/avo/alert_component.rb
avo-3.14.1 app/components/avo/alert_component.rb
avo-3.14.0 app/components/avo/alert_component.rb
avo-3.13.7 app/components/avo/alert_component.rb
avo-3.13.6 app/components/avo/alert_component.rb