Sha256: 1eefa935475d341112934a2c00eb8c67ca57c8ea3d0b609caf5088f59506fc40
Contents?: true
Size: 1.69 KB
Versions: 15
Compression:
Stored size: 1.69 KB
Contents
# frozen_string_literal: true module Capybara class Selector module Filters class Base def initialize(name, matcher, block, **options) @name = name @matcher = matcher @block = block @options = options @options[:valid_values] = [true, false] if options[:boolean] end def default? @options.key?(:default) end def default @options[:default] end def skip?(value) @options.key?(:skip_if) && value == @options[:skip_if] end def matcher? !@matcher.nil? end def boolean? !!@options[:boolean] end def handles_option?(option_name) if matcher? option_name =~ @matcher else @name == option_name end end private def apply(subject, name, value, skip_value, ctx) return skip_value if skip?(value) raise ArgumentError, "Invalid value #{value.inspect} passed to #{self.class.name.split('::').last} #{name}#{" : #{@name}" if @name.is_a?(Regexp)}" unless valid_value?(value) if @block.arity == 2 filter_context(ctx).instance_exec(subject, value, &@block) else filter_context(ctx).instance_exec(subject, name, value, &@block) end end def filter_context(context) context || @block.binding.receiver end def valid_value?(value) return true unless @options.key?(:valid_values) Array(@options[:valid_values]).any? { |valid| valid === value } # rubocop:disable Style/CaseEquality end end end end end
Version data entries
15 entries across 15 versions & 2 rubygems