diff --git a/app/containers/MessageBox/EmojiSearchbar.tsx b/app/containers/MessageBox/EmojiSearchbar.tsx
index 7fe4d0662..433da45c8 100644
--- a/app/containers/MessageBox/EmojiSearchbar.tsx
+++ b/app/containers/MessageBox/EmojiSearchbar.tsx
@@ -10,6 +10,7 @@ import { IEmoji } from '../../definitions';
import shortnameToUnicode from '../../lib/methods/helpers/shortnameToUnicode';
import CustomEmoji from '../EmojiPicker/CustomEmoji';
import database from '../../lib/database';
+import styles from './styles';
interface IEmojiSearchbarProps {
openEmoji: () => void;
@@ -21,14 +22,13 @@ interface IEmojiSearchbarProps {
const renderEmoji = (emoji: IEmoji, size: number, baseUrl: string) => {
if (emoji.name) {
- return ;
+ return ;
}
- return {shortnameToUnicode(`:${emoji}:`)};
+ return {shortnameToUnicode(`:${emoji}:`)};
};
const EmojiSearchbar = React.forwardRef(
({ openEmoji, onChangeText, emojis, onEmojiSelected, baseUrl }, ref) => {
- console.log('Emojis', emojis);
const { colors, theme } = useTheme();
const [searchText, setSearchText] = useState('');
const [frequentlyUsed, setFrequentlyUsed] = useState([]);
@@ -60,7 +60,7 @@ const EmojiSearchbar = React.forwardRef(
const renderItem = (emoji: IEmoji) => {
const emojiSize = 30;
return (
-
+
(
);
};
return (
-
-
- renderItem(item)} />
-
-
-
+
+ renderItem(item)}
+ showsHorizontalScrollIndicator={false}
+ keyExtractor={item => item.name || item.content}
+ contentContainerStyle={styles.emojiListContainer}
+ keyboardShouldPersistTaps='always'
+ />
+
+
@@ -100,8 +96,8 @@ const EmojiSearchbar = React.forwardRef(
returnKeyType='search'
underlineColorAndroid='transparent'
onChangeText={handleTextChange}
- style={{ backgroundColor: colors.passcodeButtonActive, padding: 10, borderRadius: 5 }}
- containerStyle={{ height: '100%', justifyContent: 'center', marginBottom: 0, marginRight: 15 }}
+ style={[styles.emojiSearchbar, { backgroundColor: colors.passcodeButtonActive }]}
+ containerStyle={styles.textInputContainer}
value={searchText}
theme={theme}
onClearInput={() => handleTextChange('')}
diff --git a/app/containers/MessageBox/index.tsx b/app/containers/MessageBox/index.tsx
index 84d5008a0..6e54b195e 100644
--- a/app/containers/MessageBox/index.tsx
+++ b/app/containers/MessageBox/index.tsx
@@ -624,9 +624,10 @@ class MessageBox extends Component {
this.setShowSend(true);
break;
case EventTypes.SEARCH_PRESSED:
- this.setState({ showEmojiKeyboard: false, showEmojiSearchbar: true }, () => {
+ this.setState({ showEmojiKeyboard: false, showEmojiSearchbar: true });
+ setTimeout(() => {
this.emojiSearchbarRef.current.focus();
- });
+ }, 400);
break;
default:
// Do nothing
diff --git a/app/containers/MessageBox/styles.ts b/app/containers/MessageBox/styles.ts
index 387ffdce0..3ea66b6cb 100644
--- a/app/containers/MessageBox/styles.ts
+++ b/app/containers/MessageBox/styles.ts
@@ -157,5 +157,21 @@ export default StyleSheet.create({
fontSize: 12,
marginLeft: 4,
...sharedStyles.textRegular
- }
+ },
+ searchedEmoji: {
+ backgroundColor: 'transparent',
+ color: '#ffffff'
+ },
+ emojiContainer: { justifyContent: 'center', marginHorizontal: 2 },
+ emojiListContainer: { height: 50, paddingHorizontal: 5, marginVertical: 5 },
+ emojiSearchbarContainer: {
+ flexDirection: 'row',
+ height: 50,
+ marginBottom: 10,
+ justifyContent: 'center',
+ alignItems: 'center'
+ },
+ openEmojiKeyboard: { marginHorizontal: 10, justifyContent: 'center' },
+ emojiSearchbar: { padding: 10, borderRadius: 5 },
+ textInputContainer: { justifyContent: 'center', marginBottom: 0, marginRight: 15 }
});