Use recompose setStatic and connect it to redux (nextjs)

565 Views Asked by At

I am using following composition and was expecting a to be passed as a prop. It is undefined though.

How to fix it please?

import { setStatic, compose } from 'recompose'
import { connect } from 'react-redux'

export const getInitialProps = function() {
  console.log(this.props.a);
}

const mapDispatchToProps = (dispatch) => ({
  a: url => dispatch({type: 'a'})
})

export default compose(
  connect(null, mapDispatchToProps),
  setStatic('getInitialProps', getInitialProps),
)
1

There are 1 best solutions below

0
On

Here is outcome of the investigation: getInitialProps is called on server side which means that it is way before mounting to redux happens. Prop I was trying to inject was available to me in componentDidMount lifecycle