Skip to content

Instantly share code, notes, and snippets.

@machnicki
Created April 14, 2016 06:51
Show Gist options
  • Save machnicki/9e90f47603c2d8ba4369c9067cd8b988 to your computer and use it in GitHub Desktop.
Save machnicki/9e90f47603c2d8ba4369c9067cd8b988 to your computer and use it in GitHub Desktop.
Event handlers in React - 4
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