在React容器组件中使用重构分支

问题描述 投票:0回答:1

我有一个模态的容器组件。它导入LabelDetailForm,它使用React门户将模态的内容添加到页面。

import {compose, branch} from 'recompose'
import {actionCreators as uiActionCreators} from '../../redux/reducers/ui/uiActions'
import {connect} from 'react-redux'
import LabelDetailForm from '../../forms/labelDetail/labelDetailForm'

export function mapStateToProps (state, props) {
    return {
        showModal: state.ui.showLabelDetailModal
    }
}

export const mapDispatchToProps = (dispatch, ownProps) => {
    return {
        closeModal: () => {
            dispatch(uiActionCreators.toggleLabelDetailModal())
        }
    }
}

export default compose(
    connect(mapStateToProps, mapDispatchToProps)
)(LabelDetailForm)

LabelDetailForm可以通过在其render方法中检查props.showModal的值来阻止modal的内容出现在DOM中。但是,根据Chrome的React Developer Tools扩展,LabelDetailForm组件始终存在。为了节省内存,我希望容器组件只在showModal为true时导出LabelDetailForm。

我试着使用branch():

export default compose(
    connect(mapStateToProps, mapDispatchToProps),
    branch(
        ({ showModal }) => showModal,
        LabelDetailForm,
        null
    )
)

但是,即使showModal为true,LabelDetailForm也不会出现,我在控制台中收到以下警告:

Warning: Functions are not valid as a React child.
javascript reactjs recompose
1个回答
0
投票

branch()的第二个和第三个参数是高阶分量,而不是分量或null。您可以使用renderComponent()renderNothing()来创建HOC:

branch(
  ({ showModal }) => showModal,
  renderComponent(LabelDetailForm),
  renderNothing
)
© www.soinside.com 2019 - 2024. All rights reserved.