Skip to content

Instantly share code, notes, and snippets.

@abinavseelan
Last active March 8, 2018 19:12
Show Gist options
  • Save abinavseelan/56a9752e29e83bc41aae0082644ba044 to your computer and use it in GitHub Desktop.
Save abinavseelan/56a9752e29e83bc41aae0082644ba044 to your computer and use it in GitHub Desktop.
(10) Github-style user suggestions using react-input-trigger
...
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