vn-verdnaturachat/app/containers/message/MessageError.js

29 lines
895 B
JavaScript
Raw Normal View History

import React from 'react';
import Touchable from 'react-native-platform-touchable';
import PropTypes from 'prop-types';
import { CustomIcon } from '../../lib/Icons';
import styles from './styles';
import { BUTTON_HIT_SLOP } from './utils';
2019-12-04 16:39:53 +00:00
import { themes } from '../../constants/colors';
2019-12-04 16:39:53 +00:00
const MessageError = React.memo(({ hasError, onErrorPress, theme }) => {
if (!hasError) {
return null;
}
return (
<Touchable onPress={onErrorPress} style={styles.errorButton} hitSlop={BUTTON_HIT_SLOP}>
2019-12-04 16:39:53 +00:00
<CustomIcon name='warning' color={themes[theme].dangerColor} size={18} />
</Touchable>
);
2019-12-04 16:39:53 +00:00
}, (prevProps, nextProps) => prevProps.hasError === nextProps.hasError && prevProps.theme === nextProps.theme);
MessageError.propTypes = {
hasError: PropTypes.bool,
2019-12-04 16:39:53 +00:00
onErrorPress: PropTypes.func,
theme: PropTypes.string
};
MessageError.displayName = 'MessageError';
export default MessageError;