I want to use ES6 (ES2015) as much as possible for my small project. Now I want to use arrow functions with React.
// What I want
let Text = React.createClass({
    componentDidMount: () => {
        setInterval(this.updateCurrentTime, 1000);
    }
}
// What I have
let Paragraph = React.createClass({
    render: () => (<div className="MySuperTable"><Text name="Dodo" startDate={(new Date()).toString()} /></div>)
});
let Text = React.createClass({
    getInitialState: function () {
        return {
            currentTime: (new Date()).toString()
        }
    },
    componentDidMount: function () {
        setInterval(this.updateCurrentTime, 1000);
    },
    updateCurrentTime: function () {
        this.setState({
            currentTime: (new Date()).toString()
        });
    },
    render: function () {
        return (
            <div>
                <span>Hello my name is {this.props.name}</span>
                <span>And I was born on {this.props.startDate}</span>
                <span>And I now it's {this.state.currentTime}</span>
            </div>
        );
    }
});
ReactDOM.render(
    <Paragraph/>,
    document.getElementById('container')
);
- What do I have to do to get this working?
- As I understand thiswill be the object passed intocreateClassitself, is this correct?
- How do I bind it to the Textinstance?
Thanks in advance.
 
     
     
    