Module: Yattho::FetchOrFallbackHelper

Included in:
Component
Defined in:
app/lib/yattho/fetch_or_fallback_helper.rb

Overview

:nodoc:

Constant Summary collapse

InvalidValueError =
Class.new(StandardError)

Instance Method Summary collapse

Instance Method Details

#fetch_or_fallback(allowed_values, given_value, fallback = nil, deprecated_values: nil) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'app/lib/yattho/fetch_or_fallback_helper.rb', line 28

def fetch_or_fallback(allowed_values, given_value, fallback = nil, deprecated_values: nil)
  if allowed_values.include?(given_value)
    given_value
  elsif deprecated_values&.include?(given_value)
    ActiveSupport::Deprecation.warn("#{given_value} is deprecated and will be removed in a future version.") unless Rails.env.production? || silence_deprecations?

    given_value
  else
    if fallback_raises && ENV["RAILS_ENV"] != "production"
      raise InvalidValueError, <<~MSG
        fetch_or_fallback was called with an invalid value.
        Expected one of: #{allowed_values.inspect}
        Got: #{given_value.inspect}
        This will not raise in production, but will instead fallback to: #{fallback.inspect}
      MSG
    end

    fallback
  end
end

#fetch_or_fallback_boolean(given_value, fallback = false) ⇒ Object

rubocop:disable Style/OptionalBooleanParameter



50
51
52
53
54
55
56
# File 'app/lib/yattho/fetch_or_fallback_helper.rb', line 50

def fetch_or_fallback_boolean(given_value, fallback = false)
  if [true, false].include?(given_value)
    given_value
  else
    fallback
  end
end

#silence_deprecations?Boolean

rubocop:enable Style/OptionalBooleanParameter

Returns:

  • (Boolean)


59
60
61
# File 'app/lib/yattho/fetch_or_fallback_helper.rb', line 59

def silence_deprecations?
  Rails.application.config.yattho_view_components.silence_deprecations
end