Sha256: d76e66804c383ae18bdaf0d41fa0ee9d9cbed3bfd3267b3ab24ceedd226f14a3

Contents?: true

Size: 903 Bytes

Versions: 5

Compression:

Stored size: 903 Bytes

Contents

# frozen_string_literal: true

class Tramway::Event::ParticipantExtendedFormCreator < Tramway::Core::FormCreator
  def self.create_form_class(uuid, event, **simple_properties)
    class_name = "ParticipantExtendedForm#{uuid.gsub('-', '')}"
    properties = event.participant_form_fields.inputs_list.reduce({}) do |hash, field|
      hash.merge! field.title.to_sym => {
        object: field,
        validates: build_validations(field)
      }
    end
    if simple_properties.keys.any?
      ::Tramway::Core::ExtendableForm.new(class_name, simple_properties: simple_properties, **properties)
    else
      ::Tramway::Core::ExtendableForm.new(class_name, **properties)
    end
  end

  def self.build_validations(field)
    case field.field_type
    when 'checkbox'
      field.validations.except('presence').deep_merge! inclusion: { in: [ 'true' ] }
    else
      field.validations
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
tramway-event-1.11.5 app/forms/tramway/event/participant_extended_form_creator.rb
tramway-event-1.11.4.1 app/forms/tramway/event/participant_extended_form_creator.rb
tramway-event-1.11.4 app/forms/tramway/event/participant_extended_form_creator.rb
tramway-event-1.11.2.1 app/forms/tramway/event/participant_extended_form_creator.rb
tramway-event-1.11.2 app/forms/tramway/event/participant_extended_form_creator.rb