Skip to content

Instantly share code, notes, and snippets.

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