Last active
March 8, 2018 19:12
-
-
Save abinavseelan/cbc1bd31060de7b7ef13c6b5ed795aa4 to your computer and use it in GitHub Desktop.
(9) 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 = { | |
... | |
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