Sha256: f7448e91295a5996061b19d41919590e1cb5e7584146ecd9690d9aa84df4eec8
Contents?: true
Size: 1.8 KB
Versions: 2
Compression:
Stored size: 1.8 KB
Contents
# frozen_string_literal: true module ActiveFields module Field class DecimalArray < ActiveFields.config.field_base_class acts_as_active_field( array: true, validator: { class_name: "ActiveFields::Validators::DecimalArrayValidator", options: -> { { min: min, max: max, min_size: min_size, max_size: max_size } }, }, caster: { class_name: "ActiveFields::Casters::DecimalArrayCaster", options: -> { { precision: precision } }, }, ) store_accessor :options, :min, :max, :precision validates :max, comparison: { greater_than_or_equal_to: :min }, allow_nil: true, if: :min validates :precision, comparison: { greater_than_or_equal_to: 0 }, allow_nil: true # If precision is set after attributes that depend on it, deserialization will work correctly, # but an incorrect internal value may be saved in the DB. # This callback reassigns the internal values of the attributes to ensure accuracy. before_save :reapply_precision %i[precision].each do |column| define_method(column) do Casters::IntegerCaster.new.deserialize(super()) end define_method(:"#{column}=") do |other| super(Casters::IntegerCaster.new.serialize(other)) end end %i[min max].each do |column| define_method(column) do Casters::DecimalCaster.new(precision: precision).deserialize(super()) end define_method(:"#{column}=") do |other| super(Casters::DecimalCaster.new(precision: precision).serialize(other)) end end private def set_defaults; end def reapply_precision self.min = min self.max = max self.default_value = default_value end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
active_fields-1.1.0 | app/models/active_fields/field/decimal_array.rb |
active_fields-1.0.0 | app/models/active_fields/field/decimal_array.rb |