Created
April 14, 2016 06:51
-
-
Save machnicki/9e90f47603c2d8ba4369c9067cd8b988 to your computer and use it in GitHub Desktop.
Event handlers in React - 4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react' | |
import { MyInput } from 'myInputs' | |
class MyComponent extends Component { | |
handleKeyPress(item, e) { | |
e.preventDefault() | |
if (e.nativeEvent.keyCode === 13) { | |
console.log(`This is enter on item, which is called ${item}!`) | |
} | |
} | |
renderItem(item) { | |
return ( | |
<MyInput | |
onKeyPress={ this.handleKeyPress.bind(this, item) } | |
/> | |
) | |
} | |
render() { | |
const items = ['Item1', 'Item2', 'Item3'] | |
return ( | |
<div> | |
{ items.map(this.renderItem) } | |
</div> | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment