verdnatura-chat/app/containers/EmojiPicker/CustomEmoji.tsx

30 lines
764 B
TypeScript

import React from 'react';
import FastImage from '@rocket.chat/react-native-fast-image';
interface ICustomEmoji {
baseUrl: string,
emoji: {
content: any;
name: string;
extension: any;
},
style: any
}
const CustomEmoji = React.memo(({ baseUrl, emoji, style }: ICustomEmoji) => (
<FastImage
style={style}
source={{
uri: `${ baseUrl }/emoji-custom/${ encodeURIComponent(emoji.content || emoji.name) }.${ emoji.extension }`,
priority: FastImage.priority.high
}}
resizeMode={FastImage.resizeMode.contain}
/>
), (prevProps, nextProps) => {
const prevEmoji = prevProps.emoji.content || prevProps.emoji.name;
const nextEmoji = nextProps.emoji.content || nextProps.emoji.name;
return prevEmoji === nextEmoji;
});
export default CustomEmoji;