Home Reference Source

app/components/EmojiKeyboard.js

  1. /* Import Components */
  2. import React, {
  3. PropTypes,
  4. View,
  5. TouchableHighlight,
  6. StyleSheet,
  7. Dimensions,
  8. LayoutAnimation,
  9. } from 'react-native';
  10. import Button from 'react-native-button';
  11. import EmojiInput from './EmojiInput.js';
  12. import EmojiKeys from './EmojiKeys.js';
  13. import emojiData from '../assets/emojifile_array.js';
  14. import Emoji from './Emoji.js';
  15.  
  16. const { height } = Dimensions.get('window');
  17. const containerStyle = {
  18. flex: 1,
  19. justifyContent: 'flex-start',
  20. backgroundColor: '#c4c4c4',
  21. padding: 5,
  22. position: 'absolute',
  23. top: height - 55,
  24. };
  25.  
  26. const styles = StyleSheet.create({
  27. buttonBar: {
  28. flex: 1,
  29. flexDirection: 'row',
  30. justifyContent: 'flex-end',
  31. },
  32. button: {
  33. backgroundColor: '#FFFFFF',
  34. width: 100,
  35. marginLeft: 20,
  36. borderColor: 'black',
  37. borderWidth: 1,
  38. borderRadius: 5,
  39. },
  40. });
  41.  
  42. /**
  43. * This is the top-level component for rendering the custom emoji-only keyboard.
  44. * @param {function} onSend - the callback function for when the user presses send. It receives the array of tuples as it's argument when invoked.
  45. */
  46. class EmojiKeyboard extends React.Component {
  47. constructor(props) {
  48. super(props);
  49. this.state = {
  50. inputView: [],
  51. input: [],
  52. hidden: true,
  53. containerStyle,
  54. };
  55. }
  56.  
  57. updateInput(input) {
  58. this.setState({
  59. input: this.state.input.concat([input]),
  60. });
  61. this.setState({
  62. inputView: this.inputView(),
  63. });
  64. }
  65.  
  66. inputView() {
  67. return this.state.input.map(([sheet_x, sheet_y], index) => <Emoji key={index} x={sheet_x} y={sheet_y} />);
  68. }
  69.  
  70. removeInput() {
  71. if (this.state.input.length) {
  72. this.setState({ input: this.state.input.slice(0, this.state.input.length - 1) });
  73. this.setState({
  74. inputView: this.inputView(),
  75. });
  76. }
  77. }
  78. toggleKeyboard() {
  79. this.setState({ hidden: !this.state.hidden });
  80. LayoutAnimation.configureNext({
  81. duration: 10,
  82. update: {
  83. type: LayoutAnimation.Types.linear,
  84. },
  85. });
  86. if (this.state.hidden) {
  87. this.setState({
  88. containerStyle: {
  89. ...containerStyle,
  90. top: height - 55,
  91. },
  92. });
  93. } else {
  94. this.setState({
  95. containerStyle: {
  96. ...containerStyle,
  97. top: height - 355,
  98. },
  99. });
  100. }
  101. }
  102. render() {
  103. return (<View style={StyleSheet.create({ container: this.state.containerStyle }).container}>
  104. <TouchableHighlight onPress={() => this.toggleKeyboard()}>
  105. <View>
  106. <EmojiInput emojiElements={this.state.inputView} />
  107. </View>
  108. </TouchableHighlight>
  109. <View>
  110. <EmojiKeys
  111. emojiData={emojiData}
  112. updateInput={(input) => this.updateInput(input)}
  113. />
  114. </View>
  115. <View style={styles.buttonBar}>
  116. <Button style={styles.button} onPress={() => this.removeInput()}>Backspace</Button>
  117. <Button className="sendButton" style={styles.button} onPress={() => this.props.onSend(this.state.input)}>Send</Button>
  118. </View>
  119. </View>);
  120. }
  121. }
  122.  
  123. EmojiKeyboard.propTypes = {
  124. onSend: PropTypes.func.isRequired,
  125. };
  126.  
  127. export default EmojiKeyboard;