Last active
March 8, 2018 19:07
-
-
Save abinavseelan/e8babc08f5a1711d9e9113b7130a43e2 to your computer and use it in GitHub Desktop.
(7) 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 { | |
... | |
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