Last active
March 8, 2018 19:12
-
-
Save abinavseelan/56a9752e29e83bc41aae0082644ba044 to your computer and use it in GitHub Desktop.
(10) Github-style user suggestions using react-input-trigger
This file contains 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
... | |
class App extends Component { | |
constructor() { | |
this.state = { | |
... | |
currentSelection: 0, | |
} | |
... | |
this.handleKeyDown = this.handleKeyDown.bind(this); | |
} | |
... | |
handleKeyDown(event) { | |
const { which } = event; | |
const { currentSelection, users } = this.state; | |
if (which === 40 ) { // 40 is the character code of the down arrow | |
event.preventDefault(); | |
this.setState({ | |
currentSelection: (currentSelection + 1) % users.length, | |
}); | |
} | |
} | |
render() { | |
return ( | |
<div | |
style={{ | |
position: 'relative' | |
}} | |
onKeyDown={this.handleKeyDown} | |
> | |
... | |
<div | |
id="dropdown" | |
style={{ | |
... | |
}} | |
> | |
{ | |
this.state.users | |
.filter(user => user.indexOf(this.state.text) !== -1) | |
.map((user, index) => ( | |
<div | |
style={{ | |
padding: '10px 20px', | |
background: index === this.state.currentSelection ? '#eee' : '' | |
}} | |
> | |
{ user } | |
</div> | |
)) | |
} | |
</div> | |
</div> | |
); | |
} | |
} | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment