Add conditionals to ModelWrapper testing for layout props
This commit is contained in:
@@ -18,15 +18,24 @@ export default class ModelWrapper extends Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
onToggle = (name,isShown) => {
|
onToggle = (name,isShown) => {
|
||||||
|
// If this prop is present, we'll have deepLinking for it
|
||||||
|
if(this.props.layoutActions) {
|
||||||
this.props.layoutActions.show(["models", name],isShown)
|
this.props.layoutActions.show(["models", name],isShown)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
render(){
|
render(){
|
||||||
let { getComponent, getConfigs } = this.props
|
let { getComponent, getConfigs } = this.props
|
||||||
const Model = getComponent("Model")
|
const Model = getComponent("Model")
|
||||||
const expanded = this.props.layoutSelectors.isShown(["models",this.props.name])
|
|
||||||
|
let expanded
|
||||||
|
if(this.props.layoutSelectors) {
|
||||||
|
// If this is prop is present, we'll have deepLinking for it
|
||||||
|
expanded = this.props.layoutSelectors.isShown(["models",this.props.name])
|
||||||
|
}
|
||||||
|
|
||||||
return <div className="model-box">
|
return <div className="model-box">
|
||||||
<Model { ...this.props } getConfigs={ getConfigs } expanded={expanded} depth={ 1 } onToggle={ this.onToggle} expandDepth={ this.props.expandDepth || 0 }/>
|
<Model { ...this.props } getConfigs={ getConfigs } expanded={expanded} depth={ 1 } onToggle={ this.onToggle } expandDepth={ this.props.expandDepth || 0 }/>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user