File: uniqueness.rb

package info (click to toggle)
ruby-client-side-validations 23.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 272 kB
  • sloc: ruby: 788; javascript: 671; makefile: 2
file content (42 lines) | stat: -rw-r--r-- 1,333 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# frozen_string_literal: true

module ClientSideValidations
  module ActiveRecord
    module Uniqueness
      def client_side_hash(model, attribute, _force = nil)
        hash = {}
        hash[:message]        = model.errors.generate_message(attribute, message_type, options.except(:scope))
        hash[:case_sensitive] = true if options[:case_sensitive]
        hash[:id]             = model.id unless model.new_record?
        hash[:allow_blank]    = true if options[:allow_nil] || options[:allow_blank]

        apply_class_option! hash, model
        apply_scope_option! hash, model

        hash
      end

      private

      def apply_class_option!(hash, model)
        if options.key?(:client_validations) && options[:client_validations].key?(:class)
          hash[:class] = options[:client_validations][:class].underscore
        elsif model.class.name.demodulize != model.class.name
          hash[:class] = model.class.name.underscore
        end
      end

      def apply_scope_option!(hash, model)
        return unless options.key?(:scope) && options[:scope].present?

        hash[:scope] = Array.wrap(options[:scope]).inject({}) do |scope_hash, scope_item|
          scope_hash.merge!(scope_item => model.send(scope_item))
        end
      end

      def message_type
        :taken
      end
    end
  end
end