React lifecycle hooks notes

#react #javascript

Component Life Cycle Hooks

React provides a series of life cycle hooks we can tap into each phase of the life cycle, each of the life cycle hooks are called in specific order and at a specific time.

component创建

组件的创建主要步骤包括:

  1. component初始化
  2. component.defaultProps获取component的props
  3. this.state = ...(ES6的class constructor函数)
  4. componentWillMount()函数
  5. render()函数
  6. 子组件的初始化以及生命周期函数
  7. componentDidMount()函数

注意传递props时的null值,比如:

//right
<Box name={null}> //pass null to props is tricky

//wrong
<Box name={undefined}>

class Box extends React.Componets {
  constructor(props) {
    super(props);
    this.state = { open: false };
  }
}

注意在constructor函数中需要给state赋值,不然this.state就是undefined了.

当props和state都设置好后,就会进入第一个生命周期函数componentWillMount,记住在该函数中Dom还未mount,因此访问 this.refs是不允许的,在该函数中我们可以为调整state或者为第一次render做一些前期工作,比如注册一些全局的事件(window.resize)。

It's important to remember that many Native UI elements do not exist at this point in the life cycle. That means we need to stick to very high-level/global events such as window or document.

在render函数中,我们根据props和state对组件进行渲染,因此,render应该是一个pure function,componentUI = render(props, state),在render就不应该调用setState函数了,同时也不应该在render中操作DOM.

有子组件存在时,渲染子组件,类似DFS?

在componentDidMount函数中,我们可以访问Native UI了,所以在该函数中根据UI进行一些操作时可以的,比如

componentDidMount() {
  this.chart = highcharts.Highcharts({
    elem: this.refs.chart,
    ...
  });

  this.table = DataTable.Table({
    ...
  });

  $(.css_class).xxx();
}

component更新

组件的更新主要步骤包括:

  1. componentWillReceiveProps()函数
  2. shouldComponentUpdate()函数
  3. render()函数
  4. 子组件的生命周期函数
  5. componentWillUpdate()函数

componentWillReceiveProps(nextProps)函数会在props传递给component时调用,可以对比props。

The core issue with props and componentWillReceiveProps() is how JavaScript provides mutable data structures. Let's say we have a prop called data and data is an Array.

// psuedo code
this.setState({ data: [1, 2, 3] });

<MyComponent data={ this.state.data } />

js中Object时引用的,因此在React中要格外注意。

The next method in the Update life cycle, is shouldComponentUpdate(). This method allows your Component to exit the Update life cycle if there is no reason to apply a new render. Out of box, the shouldComponentUpdate() is a no-op that returns true. This means every time we start an Update in a Component, we will re-render. If you recall, React does not deeply compare props by default. When props or state is updated React assumes we need to re-render the content. But, if the props or state have not changed, should we really be re-rendering?

Once we have determined that we do need to re-render in our Update phase, the componentWillUpdate() will be called. The method is passed in two arguments: nextProps and nextState. The method componentWillUpdate() is similar to componentWillMount(), and many of the same considerations and tasks are the same. The difference being that componentWillUpdate() is called every time a re-render is required and we get access to the next props and state.

Just like componentWillMount(), this method is called before render(). Because we have not rendered yet, our Component's access to the Native UI (DOM, etc.) will reflect the old rendered UI. Unlike, componentWillMount() we can technically access refs but it is not recommended because the refs will also be out of date.+

The componentWillUpdate() is a chance for us to handle configuration changes, update our state and in general prepare for the next render. If we want to access the old props or state, we can call this.props or this.state. We can then compare them to the new values and make changes/calculations as required.

Continuing the trend of corresponding methods, the componentDidUpdate() is the Update version of componentDidMount(). Once again, we can access the Native UI stack, interact with our refs and if required start another re-render/update.

When componentDidUpdate() is called, two arguments are passed: prevProps and prevState. This is the inverse of componentWillUpdate(). The passed values are what the values were and accessing this.props and this.state are the current values

The most common uses of componentDidUpdate() is managing 3rd party UI elements and interacting with the Native UI. When using 3rd Party libraries, like our Chart example, we need to update the UI library with new data.

componentDidUpdate(prevProps, prevState) {
  // only update chart of the data has changed
  if (prevProps.data !== this.props.data) {
    this.chart = c3.load({
      data: this.props.data
    });
  }
}

//Another render pass?
componentDidUpdate(prevProps, prevState) {
  // One possible fix...
  let height = ReactDOM.findDOMNode(this).offsetHeight;
  if (this.state.height !== height ) {
    this.setState({ internalHeight: height });
  }
}

component挂载

组件的卸载和清楚步骤包括:

  1. componentWillUnmount()
  2. 子组件生命周期函数
  3. component GC

Just like the rest of our life cycle phases, the Death/Unmount phase has a method hook for us. This method allows us to do some cleanup before we are removed from the UI stack. Typically we want to reverse any setup we did in either componentWillMount() or componentDidMount().

For example, we would want to unregister any global/system/library events, destroy 3rd party UI library elements, etc. If we don't take the time to remove events we can create memory leaks in our system or leave bad references laying around.

redux

redux reducer, 根据action和state得出新的state, (prevState, action) => newState, 和我们熟悉的Array.prototype.reduce(reducer, prevValue)类似

let initiaState = { count: 0 }

//counter example
let actions = [
    {type: 'INC'},
    {type: 'DEC'},
]

//take actions and state as paramaters, output new state.
function counterReducer(state = initiaState, action) {
    switch(action.type) {
        case 'INC':
            return Object.assign({}, state, {
                count: state.count++
            })
        case 'DEC':
            return Object.assign({}, state, {
                count: state.count--
            })
        default:
            return initiaState
    }
}
console.log(actions.reduce(counterReducer, initiaState))