Sha256: e547a631b1bcae6fc6e309a6a4e0b3315d1dc526bd38e684e69e5165d8aef147
Contents?: true
Size: 1.93 KB
Versions: 9
Compression:
Stored size: 1.93 KB
Contents
module Preact module FunctionComponent module NativeComponentConstructor def self.extended(base) component_name = base.to_s %x{ base.instance_init = function(initial) { let ruby_state = { instance: #{base.new(`{}`)} }; ruby_state.instance.__ruby_instance = ruby_state.instance; return ruby_state; } base.instance_reducer = function(state, action) { return state; } base.preact_component = function(props) { const oper = Opal.Preact; oper.render_buffer.push([]); const [__ruby_state, __ruby_dispatch] = Opal.global.PreactHooks.useReducer(base.instance_reducer, null, base.instance_init); const __ruby_instance = __ruby_state.instance; __ruby_instance.props = props; oper.register_active_component(__ruby_instance); let block_result = #{`__ruby_instance`.instance_exec(&`base.render_block`)}; if (block_result && block_result !== nil) { oper.render_block_result(block_result); } oper.unregister_active_component(__ruby_instance); let result = oper.render_buffer.pop(); return (result.length === 1) ? result[0] : result; } base.preact_component.displayName = #{component_name}; } base_module = base.to_s.deconstantize if base_module != '' base_module.constantize.define_singleton_method(base.to_s.demodulize) do |*args, &block| `Opal.Preact.internal_prepare_args_and_render(#{base}.preact_component, args, block)` end else Object.define_method(base.to_s) do |*args, &block| `Opal.Preact.internal_prepare_args_and_render(#{base}.preact_component, args, block)` end end def render(&block) `base.render_block = #{block}` end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems