Sha256: a712fe3622d01a83d79a87949fc93c679d15255ea85a7189cb50cceee7c94e07
Contents?: true
Size: 1.44 KB
Versions: 2
Compression:
Stored size: 1.44 KB
Contents
# frozen_string_literal: true require 'dry/logic/operations/unary' require 'dry/logic/evaluator' require 'dry/logic/result' module Dry module Logic module Operations class Key < Unary attr_reader :evaluator attr_reader :path def self.new(rules, options) if options[:evaluator] super else name = options.fetch(:name) eval = options.fetch(:evaluator, evaluator(name)) super(rules, options.merge(evaluator: eval, path: name)) end end def self.evaluator(name) Evaluator::Key.new(name) end def initialize(*rules, **options) super @evaluator = options[:evaluator] @path = options[:path] end def type :key end def call(hash) input = evaluator[hash] result = rule.(input) if result.success? Result::SUCCESS else Result.new(false, path) { [type, [path, result.to_ast]] } end end def [](hash) rule[evaluator[hash]] end def ast(input = Undefined) if input.equal?(Undefined) || !input.is_a?(Hash) [type, [path, rule.ast]] else [type, [path, rule.ast(evaluator[input])]] end end def to_s "#{type}[#{path}](#{rule})" end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dry-logic-1.0.3 | lib/dry/logic/operations/key.rb |
dry-logic-1.0.2 | lib/dry/logic/operations/key.rb |