Sha256: 24f6abf2f4d0f445aad21fc86219e29d060bf94623b47fbd98596ff59e02cbc4

Contents?: true

Size: 1.83 KB

Versions: 4

Compression:

Stored size: 1.83 KB

Contents

# frozen_string_literal: true

require 'dry/schema/primitive_inferrer'
require 'dry/schema/macros/value'

module Dry
  module Schema
    module Macros
      # Macro used to prepend `:filled?` predicate
      #
      # @api private
      class Filled < Value
        # @!attribute [r] primitive_inferrer
        #   PrimitiveInferrer used to get a list of primitive classes from configured type
        #   @return [PrimitiveInferrer]
        #   @api private
        option :primitive_inferrer, default: proc { PrimitiveInferrer.new }

        # @api private
        def call(*predicates, **opts, &block)
          ensure_valid_predicates(predicates)

          if opts[:type_spec] && !filter_empty_string?
            value(predicates[0], :filled?, *predicates[1..predicates.size - 1], **opts, &block)
          else
            value(:filled?, *predicates, **opts, &block)
          end
        end

        # @api private
        # rubocop:disable Style/GuardClause
        def ensure_valid_predicates(predicates)
          if predicates.include?(:empty?)
            raise ::Dry::Schema::InvalidSchemaError, 'Using filled with empty? predicate is invalid'
          end

          if predicates.include?(:filled?)
            raise ::Dry::Schema::InvalidSchemaError, 'Using filled with filled? is redundant'
          end
        end
        # rubocop:enable Style/GuardClause

        # @api private
        def filter_empty_string?
          !expected_primitives.include?(NilClass) && processor_config.filter_empty_string
        end

        # @api private
        def processor_config
          schema_dsl.processor_type.config
        end

        # @api private
        def expected_primitives
          primitive_inferrer[schema_type]
        end

        # @api private
        def schema_type
          schema_dsl.types[name]
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dry-schema-1.3.2 lib/dry/schema/macros/filled.rb
dry-schema-1.3.1 lib/dry/schema/macros/filled.rb
dry-schema-1.3.0 lib/dry/schema/macros/filled.rb
dry-schema-1.2.0 lib/dry/schema/macros/filled.rb