Sha256: e65baf7676ca30e5e099d8d49886f3c818382bd138dffa1fc0ff4ff8980bb896

Contents?: true

Size: 1.21 KB

Versions: 19

Compression:

Stored size: 1.21 KB

Contents

# frozen_string_literal: true

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

  attr_reader :type
  attr_reader :message

  def initialize(type, message)
    @type = type
    @message = message
  end

  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

19 entries across 19 versions & 1 rubygems

Version Path
avo-3.11.7 app/components/avo/alert_component.rb
avo-3.11.6 app/components/avo/alert_component.rb
avo-3.11.5 app/components/avo/alert_component.rb
avo-3.11.4 app/components/avo/alert_component.rb
avo-3.11.3 app/components/avo/alert_component.rb
avo-3.11.2 app/components/avo/alert_component.rb
avo-3.11.1 app/components/avo/alert_component.rb
avo-3.11.0 app/components/avo/alert_component.rb
avo-3.10.10 app/components/avo/alert_component.rb
avo-3.10.9 app/components/avo/alert_component.rb
avo-3.10.8 app/components/avo/alert_component.rb
avo-3.10.7 app/components/avo/alert_component.rb
avo-3.10.6 app/components/avo/alert_component.rb
avo-3.10.5 app/components/avo/alert_component.rb
avo-3.10.4 app/components/avo/alert_component.rb
avo-3.10.3 app/components/avo/alert_component.rb
avo-3.10.2 app/components/avo/alert_component.rb
avo-3.10.1 app/components/avo/alert_component.rb
avo-3.10.0 app/components/avo/alert_component.rb