Rocket.Chat.ReactNative/app/containers/message/Components/RightIcons/Encrypted.tsx

25 lines
697 B
TypeScript

import React, { useContext } from 'react';
import Touchable from '../../Touchable';
import { CustomIcon } from '../../../CustomIcon';
import { BUTTON_HIT_SLOP } from '../../utils';
import MessageContext from '../../Context';
import styles from '../../styles';
import { E2E_MESSAGE_TYPE } from '../../../../lib/constants';
const Encrypted = React.memo(({ type }: { type: string }) => {
const { onEncryptedPress } = useContext(MessageContext);
if (type !== E2E_MESSAGE_TYPE) {
return null;
}
return (
<Touchable onPress={onEncryptedPress} style={styles.rightIcons} hitSlop={BUTTON_HIT_SLOP}>
<CustomIcon name='encrypted' size={16} />
</Touchable>
);
});
export default Encrypted;