Skip to content

Instantly share code, notes, and snippets.

@abinavseelan
Last active March 8, 2018 19:07
Show Gist options
  • Save abinavseelan/e8babc08f5a1711d9e9113b7130a43e2 to your computer and use it in GitHub Desktop.
Save abinavseelan/e8babc08f5a1711d9e9113b7130a43e2 to your computer and use it in GitHub Desktop.
(7) Github-style user suggestions using react-input-trigger
...
class App extends Component {
...
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 `@`.
});
}
if (hookType === 'cancel') {
// reset the state
this.setState({
showSuggestor: false,
left: null,
top: null
});
}
}
render() {
return (
...
<InputTrigger
trigger={{
keyCode: 50,
shiftKey: true,
}}
onStart={(metaData) => { this.toggleSuggestor(metaData); }}
onCancel={(metaData) => { this.toggleSuggestor(metaData); }}
>
...
</InputTrigger>
...
);
}
}
render(<App/>, document.getElementById('app'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment