Skip to content

Instantly share code, notes, and snippets.

@abinavseelan
Last active March 8, 2018 19:12
Show Gist options
  • Save abinavseelan/cbc1bd31060de7b7ef13c6b5ed795aa4 to your computer and use it in GitHub Desktop.
Save abinavseelan/cbc1bd31060de7b7ef13c6b5ed795aa4 to your computer and use it in GitHub Desktop.
(9) Github-style user suggestions using react-input-trigger
...
class App extends Component {
constructor() {
this.state = {
...
text: null,
}
...
this.handleInput = this.handleInput.bind(this);
}
...
handleInput(metaInformation) {
this.setState({
text: metaInformation.text,
});
}
render() {
return (
<div
style={{
position: 'relative'
}}
>
<InputTrigger
trigger={{
keyCode: 50,
shiftKey: true,
}}
onStart={(metaData) => { this.toggleSuggestor(metaData); }}
onCancel={(metaData) => { this.toggleSuggestor(metaData); }}
onType={(metaData) => { this.handleInput(metaData); }}
>
...
</InputTrigger>
<div
id="dropdown"
style={{
...
}}
>
{
this.state.users
.filter(user => user.indexOf(this.state.text) !== -1)
.map(user => (
<div
style={{
padding: '10px 20px'
}}
>
{ user }
</div>
))
}
</div>
</div>
);
}
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment