Skip to content

Instantly share code, notes, and snippets.

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