Class: Dry::Types::Enum

Inherits:
Object
  • Object
show all
Includes:
Decorator
Defined in:
lib/dry/types/enum.rb

Instance Attribute Summary collapse

Attributes included from Decorator

#type

Attributes included from Options

#options

Instance Method Summary collapse

Methods included from Decorator

#constrained?, #constructor, #decorate?, #default?, #method_missing, #respond_to_missing?, #try, #valid?

Methods included from Options

#meta, #with

Constructor Details

#initialize(type, options) ⇒ Enum

Returns a new instance of Enum.

Parameters:

Options Hash (options):



18
19
20
21
22
23
# File 'lib/dry/types/enum.rb', line 18

def initialize(type, options)
  super
  @values = options.fetch(:values).freeze
  @values.each(&:freeze)
  @mapping = values.each_with_object({}) { |v, h| h[values.index(v)] = v }.freeze
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Dry::Types::Decorator

Instance Attribute Details

#mappingHash (readonly)

Returns:



13
14
15
# File 'lib/dry/types/enum.rb', line 13

def mapping
  @mapping
end

#valuesArray (readonly)

Returns:



10
11
12
# File 'lib/dry/types/enum.rb', line 10

def values
  @values
end

Instance Method Details

#call(input) ⇒ Object Also known as: []

Parameters:

  • input (Object)

Returns:

  • (Object)


27
28
29
30
31
32
33
34
35
36
# File 'lib/dry/types/enum.rb', line 27

def call(input)
  value =
    if values.include?(input)
      input
    elsif mapping.key?(input)
      mapping[input]
    end

  type[value || input]
end