使用 HOC(高阶组件)和 React-Redux 连接

Using a HOC (higher order component) with React-Redux connect

我正在尝试更熟练地使用高阶组件,因此我正在重构应用程序。我有四个不同的组件,它们都重用相同的 fetchData 请求,以及 error/loading 条件。我的计划是将这些可重用数据放入 HOC 中。我尝试了来自 Whosebug、Reddit、Github 等的许多不同示例,其中 none 适用于我的具体情况。

这是我的 HOC:

const WithDataRendering = WrappedComponent => props => {
class WithDataRenderingComponent extends Component {
    componentDidMount() {
    this.props.fetchData(url)
    }
    render() {
    if (this.props.hasErrored) {
        return (
        <p>
            Sorry! There was an error loading the items:{" "}
            {this.props.hasErrored.message}
        </p>
        )
    }

    if (this.props.isLoading) {
        return (
        <div>
            <Skeleton count={10} />
        </div>
        )
    }

    return <WrappedComponent {...this.props} />
    }
}
const mapStateToProps = state => {
    return {
    data: state.data,
    hasErrored: state.dataHasErrored,
    isLoading: state.dataIsLoading
    }
}

const mapDispatchToProps = dispatch => {
    return {
    fetchData: url => dispatch(fetchData(url))
    }
}
return connect(mapStateToProps, mapDispatchToProps)(
    WithDataRenderingComponent
)
}

export default WithDataRendering

这是我试图用 HOC 包装的组件:

export class AllData extends Component<Props> {
    render() {
        return (
        ...
        )
    }
}

const mapStateToProps = state => {
    return {
        data: state.data,
        hasErrored: state.dataHasErrored,
        isLoading: state.dataIsLoading
    }
}

const mapDispatchToProps = dispatch => {
    return {
        fetchData: url => dispatch(fetchData(url))
    }
}

export default compose(
    connect(mapStateToProps, mapDispatchToProps),
    WithDataRendering(AllData)
)

我在控制台中收到三个错误:

Warning: Component(...): A valid React element (or null) must be returned. You may have returned undefined, an array or some other invalid object.

invariant.js:42 Uncaught Error: Component(...): A valid React element (or null) must be returned. You may have returned undefined, an array or some other invalid object.

ReactDOMComponentTree.js:111 Uncaught TypeError: Cannot read property '__reactInternalInstancesdkzrlvvz' of null

我尝试过的其他一些技术在 and this gist 中。我试过使用 compose 和不使用它,没关系。我真的很茫然。知道为什么这个 HOC 没有正确呈现吗?

此外,如果 render props 更合适,我不反对使用它作为解决方案。我需要对这两种方法进行更多练习。

我能够按照 Oblosys 的建议删除 props => 参数来解决这个问题。我还将 AllData 中的 export 语句重新配置为:

export default connect(mapStateToProps, mapDispatchToProps)(WithDataRendering(AllData))

因为我真的不需要在那里使用 compose