Sha256: 6881fea1190929b79b891a97c50c20979bfe320d36f163903ec2c0417a373232

Contents?: true

Size: 1.13 KB

Versions: 9

Compression:

Stored size: 1.13 KB

Contents

# frozen_string_literal: true

class Avo::AlertComponent < ViewComponent::Base
  include Avo::ApplicationHelper

  attr_reader :type
  attr_reader :message

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

  def icon
    return "heroicons/solid/x-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
    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
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
avo-2.7.1.pre.1 app/components/avo/alert_component.rb
avo-2.7.0 app/components/avo/alert_component.rb
avo-2.6.1.pre.2 app/components/avo/alert_component.rb
avo-2.6.1.pre.1 app/components/avo/alert_component.rb
avo-2.6.0 app/components/avo/alert_component.rb
avo-2.5.2.pre.6 app/components/avo/alert_component.rb
avo-2.5.2.pre.5 app/components/avo/alert_component.rb
avo-2.5.2.pre.4 app/components/avo/alert_component.rb
avo-2.5.2.pre.3 app/components/avo/alert_component.rb