import React, { Component, } from "react" import PropTypes from "prop-types" //import layoutActions from "actions/layout" export default class ModelWrapper extends Component { static propTypes = { schema: PropTypes.object.isRequired, name: PropTypes.string, getComponent: PropTypes.func.isRequired, getConfigs: PropTypes.func.isRequired, specSelectors: PropTypes.object.isRequired, expandDepth: PropTypes.number, layoutActions: PropTypes.object, layoutSelectors: PropTypes.object.isRequired } 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) } } render(){ let { getComponent, getConfigs } = this.props const Model = getComponent("Model") 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