Sha256: 18cf988d8705dbec5f00d7d7e8e70922b8a2e2e997e3893e40ffa57facc59de8

Contents?: true

Size: 929 Bytes

Versions: 5

Compression:

Stored size: 929 Bytes

Contents

module React
  class NativeConstantWrapper
    include ::Native::Wrapper

    def initialize(native, const_name)
      @native = native
      @const_name = const_name
    end

    def method_missing(name, *args, &block)
      %x{
        if (name[0] === 'u' && name[1] === 's' && name[2] === 'e') {
          if (name.indexOf('_') > 0) { name = Opal.React.lower_camelize(name); }
          return #@native[name].call(this, args);
        }
        var component = null;
        var component_type = typeof #@native[name];
        if (component_type === "function" || component_type === "object") {
          component = #@native[name];
        }
        if (component) {
          return Opal.React.internal_prepare_args_and_render(component, args, block);
        } else {
          #{Isomorfeus.raise_error(error_class: NameError, message: "No such native Component #@const_name.#{name}")};
        }
      }
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
isomorfeus-react-16.13.11 lib/react/native_constant_wrapper.rb
isomorfeus-react-16.13.10 lib/react/native_constant_wrapper.rb
isomorfeus-react-16.13.9 lib/react/native_constant_wrapper.rb
isomorfeus-react-16.13.8 lib/react/native_constant_wrapper.rb
isomorfeus-react-16.13.7 lib/react/native_constant_wrapper.rb