Module: LucidMaterial::App::NativeComponentConstructor

Defined in:
lib/isomorfeus_react_material/lucid_material/app/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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/isomorfeus_react_material/lucid_material/app/native_component_constructor.rb', line 7

def self.extended(base)
  component_name = base.to_s + 'Wrapper'
  theme_component_name = base.to_s + 'ThemeWrapper'
  # language=JS
  %x{
    base.jss_theme = Opal.global.Mui.createMuiTheme();
    base.themed_react_component = function(props) {
      let opag = Opal.global;
      let classes = null;
      let theme = opag.MuiStyles.useTheme();
      if (base.jss_styles) {
        if (!base.use_styles || (Opal.Isomorfeus.development === true)) {
          let styles;
          if (typeof base.jss_styles === 'function') { styles = base.jss_styles(theme); }
          else { styles = base.jss_styles; }
          base.use_styles = opag.MuiStyles.makeStyles(styles);
        }
        classes = base.use_styles();
      }
      let themed_classes_props = Object.assign({}, props, { classes: classes, theme: theme });
      return opag.React.createElement(base.lucid_react_component, themed_classes_props);
    }
    base.themed_react_component.displayName = #{theme_component_name};
    base.react_component = class extends Opal.global.React.Component {
      constructor(props) {
        super(props);
        if (Opal.Isomorfeus.$top_component() == nil) { Opal.Isomorfeus['$top_component='](this); }
      }
      static get displayName() {
        return "IsomorfeusTopLevelComponent";
      }
      static set displayName(new_name) {
        // dont do anything here except returning the set value
        return new_name;
      }
      render() {
        let themed_component = Opal.global.React.createElement(base.themed_react_component, this.props);
        return Opal.global.React.createElement(Opal.global.MuiStyles.ThemeProvider, { theme: base.jss_theme }, themed_component);
      }
    }
  }
end