web-dev-qa-db-fra.com

getDerivedStateFromProps n'est pas appelé

J'utilise React 16.3.1 et next.js.
Et j'ai mis getDerivedStateFromProps à l'intérieur de la classe étendant PureComponent.

Voici le code:

Header.js

import { PureComponent } from 'react'
...

export default class Header extends PureComponent {
  constructor (props) {
    super(props)

    this.colorAnimationProps = {
      animationDuration: '0.4s',
      animationFillMode: 'forwards'
    }

    this.colorAnimationStyle = {
      toColor: {
        animationName: 'toColor',
        ...this.colorAnimationProps
      },
      toTransparent: {
        animationName: 'toTransparent',
        ...this.colorAnimationProps
      }
    }

    this.state = {
      colorAnimation: {},
      headerModal: null
    }
  }

  componentDidMount () {
    if (this.props.isColor) {
      this.setState({colorAnimation: this.colorAnimationStyle.toColor})
    }
  }

  static getDerivedStateFromProps (nextProps, prevState) {
    console.log('should go here')
    if (nextProps.isColor) {
      return {colorAnimation: this.colorAnimationStyle.toColor}
    }
    return {colorAnimation: this.colorAnimationStyle.toTransparent}
  }

  render () {
    ...
  }
}

Et voici le parent qui modifie l'hélice:

index.js

import { PureComponent } from 'react'

...
import Header from '../components/Header'
import Layout from '../components/Layout'
import { withReduxSaga } from '../redux/store'

class Index extends PureComponent {
  constructor (props) {
    super(props)

    this.state = {
      isHeaderColor: false
    }
  }

  componentDidMount () {
    if (window.pageYOffset > 50) {
      this.setState({isHeaderColor: true})
    }

    window.addEventListener('scroll', (e) => {
      if (window.pageYOffset > 50) {
        this.setState({isHeaderColor: true})
      } else {
        this.setState({isHeaderColor: false})
      }
    })
  }

  render () {
    return (
      <Layout url={this.props.url}>
        <Header isColor={this.state.isHeaderColor} />
        ...
      </Layout>
    )
  }
}

export default withReduxSaga(Index)

Mon problème est: getDerivedStateFromProps n'est pas appelé lorsque le prop change. Au moins, il devrait faire console.log, mais ce n'est pas le cas.

Quelqu'un ici peut-il m'aider?

13
Rizki Sunaryo

Je vois que le support pour ce crochet a été corrigé dans la version - 6.0.0-canary.2 de next.JS . Je suppose donc que vous utilisez une ancienne version.

7
Tomasz Mularczyk

assurez-vous d'avoir les bonnes versions des deux reactetreact-dom dans votre package.json:

"react": "^16.3.1",
"react-dom": "^16.3.1"
32
Miguel Salas