Module: LucidComponent::NativeComponentConstructor
- Defined in:
- lib/isomorfeus_react/lucid_component/native_component_constructor.rb
Class Method Summary collapse
-
.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.
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
6 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/isomorfeus_react/lucid_component/native_component_constructor.rb', line 6 def self.extended(base) component_name = base.to_s + 'Wrapper' # language=JS %x{ base.react_component = Opal.global.React.memo(function(props) { let opag = Opal.global; let classes; let store; if (base.store_updates) { store = opag.React.useContext(opag.LucidApplicationContext); } let theme = opag.ReactJSS.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.ReactJSS.createUseStyles(styles); } classes = base.use_styles(); } let new_props = Object.assign({}, props) new_props.classes = classes; new_props.theme = theme; new_props.store = store; return opag.React.createElement(base.lucid_react_component, new_props); }, Opal.React.props_are_equal); base.react_component.displayName = #{component_name}; } end |