Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 1.4 KB

11-dom-event-listeners.md

File metadata and controls

44 lines (34 loc) · 1.4 KB
id title layout permalink prev next
dom-event-listeners
DOM Event Listeners in a Component
tips
dom-event-listeners.html
props-in-getInitialState-as-anti-pattern.html
initial-ajax.html

Note:

This entry shows how to attach DOM events not provided by React (check here for more info). This is good for integrations with other libraries such as jQuery.

Try to resize the window:

var Box = React.createClass({
  getInitialState: function() {
    return {windowWidth: window.innerWidth};
  },

  handleResize: function(e) {
    this.setState({windowWidth: window.innerWidth});
  },

  componentDidMount: function() {
    window.addEventListener('resize', this.handleResize);
  },

  componentWillUnmount: function() {
    window.removeEventListener('resize', this.handleResize);
  },

  render: function() {
    return <div>Current window width: {this.state.windowWidth}</div>;
  }
});

React.render(<Box />, mountNode);

componentDidMount is called after the component is mounted and has a DOM representation. This is often a place where you would attach generic DOM events.

Notice that the event callback is bound to the react component and not the original element. React automatically binds methods to the current component instance for you through a process of autobinding.