Class: React::ContextWrapper
- Includes:
- Native::Wrapper
- Defined in:
- lib/react/context_wrapper.rb
Instance Method Summary collapse
- #Consumer(*args, &block) ⇒ Object
-
#initialize(native) ⇒ ContextWrapper
constructor
A new instance of ContextWrapper.
- #is_wrapped_context ⇒ Object
- #Provider(*args, &block) ⇒ Object
Constructor Details
#initialize(native) ⇒ ContextWrapper
Returns a new instance of ContextWrapper.
5 6 7 |
# File 'lib/react/context_wrapper.rb', line 5 def initialize(native) @native = native end |
Instance Method Details
#Consumer(*args, &block) ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/react/context_wrapper.rb', line 13 def Consumer(*args, &block) # why not use internal_prepare_args and render? %x{ let operabu = Opal.React.render_buffer; let props = null; if (args.length > 0) { props = Opal.React.to_native_react_props(args[0]); } let react_element = Opal.global.React.createElement(this.native.Consumer, props, function(value) { let children = null; if (block !== nil) { operabu.push([]); // console.log("consumer pushed", operabu, operabu.toString()); let block_result = block.$call(); if (block_result && block_result !== nil) { Opal.React.render_block_result(block_result); } // console.log("consumer popping", operabu, operabu.toString()); children = operabu.pop(); if (children.length === 1) { children = children[0]; } else if (children.length === 0) { children = null; } } return children; }); operabu[operabu.length - 1].push(react_element); } end |
#is_wrapped_context ⇒ Object
9 10 11 |
# File 'lib/react/context_wrapper.rb', line 9 def is_wrapped_context true end |
#Provider(*args, &block) ⇒ Object
39 40 41 42 43 44 45 46 |
# File 'lib/react/context_wrapper.rb', line 39 def Provider(*args, &block) # why not use internal_prepare_args and render? %x{ var props = null; if (args.length > 0) { props = Opal.React.to_native_react_props(args[0]); } Opal.React.internal_render(this.native.Provider, props, null, block); } end |