Module: LucidMaterial::Component::NativeComponentConstructor

Defined in:
lib/lucid_material/component/native_component_constructor.rb

Class Method Summary collapse

Class Method Details

.extended(base) ⇒ Object

for should_component_update we apply ruby semantics for comparing props to do so, we convert the props to ruby hashes and then compare this makes sure, that for example rubys Nil object gets handled properly



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/lucid_material/component/native_component_constructor.rb', line 7

def self.extended(base)
  component_name = base.to_s + 'Wrapper'
  # language=JS
  %x{
    base.react_component = function(props) {
      let classes = null;
      let store;
      if (base.store_updates) { store = Opal.global.React.useContext(Opal.global.LucidApplicationContext); }
      let theme = Opal.global.MuiStyles.useTheme();
      if (base.jss_styles) {
        if (!base.use_styles || (Opal.Isomorfeus.development && Opal.Isomorfeus.development !== nil)) {
          let styles;
          if (typeof base.jss_styles === 'function') { styles = base.jss_styles(theme); }
          else { styles = base.jss_styles; }
          base.use_styles = Opal.global.MuiStyles.makeStyles(styles);
        }
        classes = base.use_styles();
      }
      let new_props = Object.assign({}, props)
      new_props.classes = classes;
      new_props.theme = theme;
      new_props.store = store;
      return Opal.global.React.createElement(base.lucid_react_component, new_props);
    }
    base.react_component.displayName = #{component_name};
  }
end