Last active
March 8, 2018 19:06
-
-
Save abinavseelan/8f926a5ef45b183381c4ebb2bdde492e to your computer and use it in GitHub Desktop.
(6) 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.toggleSuggestor = this.toggleSuggestor.bind(this); | |
} | |
toggleSuggestor(metaInformation) { | |
const { hookType, cursor } = metaInformation; | |
if (hookType === 'start') { | |
this.setState({ | |
showSuggestor: true, | |
left: cursor.left, | |
top: cursor.top + cursor.height, // we need to add the cursor height so that the dropdown doesn't overlap with the `@`. | |
}); | |
} | |
} | |
render() { | |
return ( | |
... | |
<InputTrigger | |
trigger={{ | |
keyCode: 50, | |
shiftKey: true, | |
}} | |
onStart={(metaData) => { this.toggleSuggestor(metaData); }} | |
> | |
... | |
</InputTrigger> | |
... | |
); | |
} | |
} | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment