componentDidUpdate(prevProps) {
componentDidUpdate(
this,
this.state[SEARCH_BOX],
eventMap,
updaterMap,
prevProps
)
if (this.props.children !== prevProps.children) {
this.handleRenderChildToContainerElement()
}
if (this.props.controlPosition !== prevProps.controlPosition) {
this.handleMountAtControlPosition()
}
}
componentWillUnmount() {
componentWillUnmount(this)
this.handleUnmountAtControlPosition()
if (this.containerElement) {
ReactDOM.unmountComponentAtNode(this.containerElement)
this.containerElement = null
}
}
Переспрошу еще у вас... если мне надо чтобы обновлялся главный компонент при изменении селекта в сайдбаре можно просто так написать и ничего больше?