Sha256: 6ec40c49e578bcc697d63051fefd6776c4f98858ccc105556005e6506090bbdf
Contents?: true
Size: 1.36 KB
Versions: 4
Compression:
Stored size: 1.36 KB
Contents
# frozen_string_literal: true require_relative '../attribute_instruction' require_relative './enumerable/strategy' require_relative './active_record/strategy' class ActiveSet module Filtering class Operation def initialize(set, instructions_hash) @set = set @instructions_hash = instructions_hash end def execute attribute_instructions = flatten_keys_of(@instructions_hash) .map { |k, v| AttributeInstruction.new(k, v) } activerecord_filtered_set = attribute_instructions.reduce(@set) do |set, attribute_instruction| maybe_set_or_false = ActiveRecord::Strategy.new(set, attribute_instruction).execute next set unless maybe_set_or_false attribute_instruction.processed = true maybe_set_or_false end return activerecord_filtered_set if attribute_instructions.all?(&:processed?) attribute_instructions.reject(&:processed?).reduce(activerecord_filtered_set) do |set, attribute_instruction| maybe_set_or_false = Enumerable::Strategy.new(set, attribute_instruction).execute next set unless maybe_set_or_false attribute_instruction.processed = true maybe_set_or_false end end def operation_instructions @instructions_hash.symbolize_keys end end end end
Version data entries
4 entries across 4 versions & 1 rubygems