web-dev-qa-db-ja.com

getDerivedStateFromPropsは呼び出されません

React 16.3.1およびnext.jsを使用します。
そして、拡張クラスPureComponent内にgetDerivedStateFromPropsを配置しました。

コードは次のとおりです。

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 () {
    ...
  }
}

そして、これがプロップを変更する親です:

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)

私の問題は、小道具が変わってもgetDerivedStateFromPropsが呼び出されないことです。少なくとも、console.logを実行する必要がありますが、実行しません。

ここの誰かが私を助けることができますか?

13
Rizki Sunaryo

このフックのサポートがわかりました バージョン-next.JSの6.0.0-canary.2でパッチが適用されました 。したがって、古いバージョンを使用していると思います。

7

両方のreactandreact-domあなたのpackage.json

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