Module: CustomFields::Types::Date::Target::ClassMethods

Defined in:
lib/custom_fields/types/date.rb

Instance Method Summary collapse

Instance Method Details

#apply_date_custom_field(klass, rule) ⇒ Object

Adds a date field

Parameters:

  • klass (Class)

    The class to modify

  • rule (Hash)

    It contains the name of the field and if it is required or not



17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/custom_fields/types/date.rb', line 17

def apply_date_custom_field(klass, rule)
  name = rule['name']

  klass.field name, type: ::Date, localize: rule['localized'] || false

  # other methods
  klass.send(:define_method, :"formatted_#{name}") { _get_formatted_date(name) }
  klass.send(:define_method, :"formatted_#{name}=") { |value| _set_formatted_date(name, value) }

  return unless rule['required']

  klass.validates_presence_of name, :"formatted_#{name}"
end

#date_attribute_get(instance, name) ⇒ Hash

Build a hash storing the formatted value for a date custom field of an instance.

Parameters:

  • instance (Object)

    An instance of the class enhanced by the custom_fields

  • name (String)

    The name of the date custom field

Returns:

  • (Hash)

    field name => formatted date



39
40
41
42
43
44
45
# File 'lib/custom_fields/types/date.rb', line 39

def date_attribute_get(instance, name)
  if value = instance.send(:"formatted_#{name}")
    { name => value, "formatted_#{name}" => value }
  else
    {}
  end
end

#date_attribute_set(instance, name, attributes) ⇒ Object

Set the value for the instance and the date field specified by the 2 params.

Parameters:

  • instance (Object)

    An instance of the class enhanced by the custom_fields

  • name (String)

    The name of the date custom field

  • attributes (Hash)

    The attributes used to fetch the values



54
55
56
57
58
59
60
# File 'lib/custom_fields/types/date.rb', line 54

def date_attribute_set(instance, name, attributes)
  return unless attributes.key?(name) || attributes.key?("formatted_#{name}")

  value = attributes[name] || attributes["formatted_#{name}"]

  instance.send(:"formatted_#{name}=", value)
end