Sha256: 13230deaf489db547d78755e7de3bbef24672d073331a366cecf02472c5c0ead

Contents?: true

Size: 1.28 KB

Versions: 8

Compression:

Stored size: 1.28 KB

Contents

module Reform::Form::ORM
  def model_for_property(name)
    return model unless is_a?(Reform::Form::Composition) # i am too lazy for proper inheritance. there should be a ActiveRecord::Composition that handles this.

    model_name = options_for(name)[:on]
    model[model_name]
  end

  module UniquenessValidator
    # when calling validates it should create the Vali instance already and set @klass there! # TODO: fix this in AM.
    def validate(form)
      property = attributes.first

      # here is the thing: why does AM::UniquenessValidator require a filled-out record to work properly? also, why do we need to set
      # the class? it would be way easier to pass #validate a hash of attributes and get back an errors hash.
      # the class for the finder could either be infered from the record or set in the validator instance itself in the call to ::validates.
      record = form.model_for_property(property)
      record.send("#{property}=", form.send(property))

      @klass = record.class # this is usually done in the super-sucky #setup method.
      super(record).tap do |res|
        if record.errors.present?
          error = self.class.name.include?("Mongoid") ? record.errors.first.last : :taken
          form.errors.add(property, error)
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
reform-rails-0.2.6 lib/reform/form/orm.rb
reform-rails-0.2.5 lib/reform/form/orm.rb
reform-rails-0.2.4 lib/reform/form/orm.rb
reform-rails-0.2.3 lib/reform/form/orm.rb
reform-rails-0.2.2 lib/reform/form/orm.rb
reform-rails-0.2.1 lib/reform/form/orm.rb
reform-rails-0.2.0 lib/reform/form/orm.rb
reform-rails-0.2.0.rc3 lib/reform/form/orm.rb