Last active
March 8, 2018 19:09
-
-
Save abinavseelan/85e4e9a781f657ada4ef612d71d8ceff to your computer and use it in GitHub Desktop.
(8) 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 = { | |
top: null, | |
left: null, | |
showSuggestor: false, | |
users: [ | |
'Charmander', | |
'Squirtle', | |
'Bulbasaur', | |
'Pikachu' | |
] | |
} | |
this.toggleSuggestor = this.toggleSuggestor.bind(this); | |
} | |
... | |
render() { | |
return ( | |
<div | |
style={{ | |
position: 'relative' | |
}} | |
> | |
... | |
<div | |
id="dropdown" | |
style={{ | |
... | |
}} | |
> | |
{ | |
this.state.users.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