Skip to content

Instantly share code, notes, and snippets.

@abinavseelan
Last active March 8, 2018 19:05
Show Gist options
  • Save abinavseelan/703ac122e469f1e795d34d75ec596bdc to your computer and use it in GitHub Desktop.
Save abinavseelan/703ac122e469f1e795d34d75ec596bdc to your computer and use it in GitHub Desktop.
(5) Github-style user suggestions using react-input-trigger
...
class App extends Component {
constructor() {
this.state = {
top: null,
left: null,
showSuggestor: false,
}
}
render() {
return (
<div
style={{
position: 'relative'
}}
>
<InputTrigger
trigger={{
keyCode: 50,
shiftKey: true,
}}
onStart={(metaData) => { console.log(metaData); }}
>
...
</InputTrigger>
<div
id="dropdown"
style={{
position: "absolute",
width: "200px",
borderRadius: "6px",
background: "white",
boxShadow: "rgba(0, 0, 0, 0.4) 0px 1px 4px",
display: this.state.showSuggestor ? "block" : "none",
top: this.state.top,
left: this.state.left,
}}
>
</div>
</div>
);
}
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment