Skip to content
Advertisement

Use props in HoC parameters

I’m trying to use props values in my HoC but i’m struggling quiet hard

Here is my code :

JavaScript

and here is the connectEndpoint function :

JavaScript

I’m trying to use my props value when i call “connectEndpoint” but i don’t know what syntax should i use to have access to “props”. I tried to use “withProps” but with no success on this case

Thanks in advance!

Advertisement

Answer

Since you are using connect within your connectEndPoint HOC , you can implement the requests property of your connectEndPoint HOC as a function and pass on the state and props from connect to it.

JavaScript

and use it like

JavaScript

The reason you were not receiving props in your implementation was because connectEndPoint is a function that is being called and only the return value from it is being used to render the component which receives the props

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement