Class: CoreExt::Callbacks::Callback
Overview
:nodoc:#
Instance Attribute Summary collapse
-
#chain_config ⇒ Object
readonly
Returns the value of attribute chain_config.
-
#kind ⇒ Object
Returns the value of attribute kind.
-
#name ⇒ Object
Returns the value of attribute name.
Class Method Summary collapse
Instance Method Summary collapse
-
#apply(callback_sequence) ⇒ Object
Wraps code with filter.
- #duplicates?(other) ⇒ Boolean
- #filter ⇒ Object
-
#initialize(name, filter, kind, options, chain_config) ⇒ Callback
constructor
A new instance of Callback.
- #matches?(_kind, _filter) ⇒ Boolean
- #merge_conditional_options(chain, if_option:, unless_option:) ⇒ Object
- #raw_filter ⇒ Object
Constructor Details
#initialize(name, filter, kind, options, chain_config) ⇒ Callback
Returns a new instance of Callback.
304 305 306 307 308 309 310 311 312 |
# File 'lib/core_ext/callbacks.rb', line 304 def initialize(name, filter, kind, , chain_config) @chain_config = chain_config @name = name @kind = kind @filter = filter @key = compute_identifier filter @if = Array([:if]) @unless = Array([:unless]) end |
Instance Attribute Details
#chain_config ⇒ Object (readonly)
Returns the value of attribute chain_config.
302 303 304 |
# File 'lib/core_ext/callbacks.rb', line 302 def chain_config @chain_config end |
#kind ⇒ Object
Returns the value of attribute kind.
301 302 303 |
# File 'lib/core_ext/callbacks.rb', line 301 def kind @kind end |
#name ⇒ Object
Returns the value of attribute name.
301 302 303 |
# File 'lib/core_ext/callbacks.rb', line 301 def name @name end |
Class Method Details
.build(chain, filter, kind, options) ⇒ Object
297 298 299 |
# File 'lib/core_ext/callbacks.rb', line 297 def self.build(chain, filter, kind, ) new chain.name, filter, kind, , chain.config end |
Instance Method Details
#apply(callback_sequence) ⇒ Object
Wraps code with filter
343 344 345 346 347 348 349 350 351 352 353 354 355 |
# File 'lib/core_ext/callbacks.rb', line 343 def apply(callback_sequence) user_conditions = conditions_lambdas user_callback = make_lambda @filter case kind when :before Filters::Before.build(callback_sequence, user_callback, user_conditions, chain_config, @filter) when :after Filters::After.build(callback_sequence, user_callback, user_conditions, chain_config) when :around Filters::Around.build(callback_sequence, user_callback, user_conditions, chain_config) end end |
#duplicates?(other) ⇒ Boolean
333 334 335 336 337 338 339 340 |
# File 'lib/core_ext/callbacks.rb', line 333 def duplicates?(other) case @filter when Symbol, String matches?(other.kind, other.filter) else false end end |
#filter ⇒ Object
314 |
# File 'lib/core_ext/callbacks.rb', line 314 def filter; @key; end |
#matches?(_kind, _filter) ⇒ Boolean
329 330 331 |
# File 'lib/core_ext/callbacks.rb', line 329 def matches?(_kind, _filter) @kind == _kind && filter == _filter end |
#merge_conditional_options(chain, if_option:, unless_option:) ⇒ Object
317 318 319 320 321 322 323 324 325 326 327 |
# File 'lib/core_ext/callbacks.rb', line 317 def (chain, if_option:, unless_option:) = { :if => @if.dup, :unless => @unless.dup } [:if].concat Array(unless_option) [:unless].concat Array(if_option) self.class.build chain, @filter, @kind, end |
#raw_filter ⇒ Object
315 |
# File 'lib/core_ext/callbacks.rb', line 315 def raw_filter; @filter; end |