Sha256: 51ec66850bb8b7d239b1164331dae3dbd3aea9e911fb55820ad14885921da5ae

Contents?: true

Size: 1.89 KB

Versions: 4

Compression:

Stored size: 1.89 KB

Contents

# frozen_string_literal: true

module AttrJson
  module Type
    # You can wrap any ActiveModel::Type in one of these, and it's magically
    # a type representing an Array of those things, always returning
    # an array of those things on cast, serialize, and deserialize.
    #
    # Meant for use with AttrJson::Record and AttrJson::Model, may or
    # may not do something useful or without exceptions in other contexts.
    #
    #     AttrJson::Type::Array.new(base_type)
    class Array < ::ActiveModel::Type::Value
      attr_reader :base_type
      def initialize(base_type)
        @base_type = base_type
      end

      def type
        @type ||= "array_of_#{base_type.type}".to_sym
      end

      def cast(value)
        convert_to_array(value).collect { |v| base_type.cast(v) }
      end

      def serialize(value)
        convert_to_array(value).collect { |v| base_type.serialize(v) }
      end

      def deserialize(value)
        convert_to_array(value).collect { |v| base_type.deserialize(v) }
      end

      def changed_in_place?(raw_old_value, new_value)
        serialize(new_value) != raw_old_value
      end

      # This is used only by our own keypath-chaining query stuff.
      def value_for_contains_query(key_path_arr, value)
        [
          if key_path_arr.present?
            base_type.value_for_contains_query(key_path_arr, value)
          else
            base_type.serialize(base_type.cast value)
          end
        ]
      end

      # Soft-deprecated. You probably want to use
      #
      #    AttrJson::AttributeDefinition#array_of_primitive_type?
      #
      # instead where possible.
      def base_type_primitive?
        ! AttrJson::AttributeDefinition.single_model_type?(base_type)
      end

      protected
      def convert_to_array(value)
        if value.kind_of?(Hash)
          [value]
        else
          Array(value)
        end
      end

    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
attr_json-2.5.0 lib/attr_json/type/array.rb
attr_json-2.4.0 lib/attr_json/type/array.rb
attr_json-2.3.1 lib/attr_json/type/array.rb
attr_json-2.3.0 lib/attr_json/type/array.rb