Skip to content

Instantly share code, notes, and snippets.

@machnicki
Created April 14, 2016 06:47
Show Gist options
  • Save machnicki/92c69f5c35b31872e54a447badf9623c to your computer and use it in GitHub Desktop.
Save machnicki/92c69f5c35b31872e54a447badf9623c to your computer and use it in GitHub Desktop.
Event handlers in React - 5
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(undefined, 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