Last active
March 8, 2018 19:05
-
-
Save abinavseelan/703ac122e469f1e795d34d75ec596bdc to your computer and use it in GitHub Desktop.
(5) 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, | |
} | |
} | |
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