2020-03-30 20:19:01 +00:00
|
|
|
import React, { useState } from 'react';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { Text, View } from 'react-native';
|
|
|
|
import { BorderlessButton, ScrollView } from 'react-native-gesture-handler';
|
2020-03-30 20:19:01 +00:00
|
|
|
import Modal from 'react-native-modal';
|
|
|
|
|
2022-02-17 15:27:01 +00:00
|
|
|
import Markdown, { MarkdownPreview } from '../../containers/markdown';
|
2020-05-08 12:57:04 +00:00
|
|
|
import { CustomIcon } from '../../lib/Icons';
|
2020-03-30 20:19:01 +00:00
|
|
|
import { themes } from '../../constants/colors';
|
|
|
|
import styles from './styles';
|
2022-03-02 14:18:01 +00:00
|
|
|
import { useTheme } from '../../theme';
|
|
|
|
|
|
|
|
interface IBannerProps {
|
|
|
|
text?: string;
|
|
|
|
title?: string;
|
|
|
|
bannerClosed?: boolean;
|
|
|
|
closeBanner: () => void;
|
|
|
|
}
|
2020-03-30 20:19:01 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
const Banner = React.memo(
|
2022-03-02 14:18:01 +00:00
|
|
|
({ text, title, bannerClosed, closeBanner }: IBannerProps) => {
|
2021-09-13 20:41:05 +00:00
|
|
|
const [showModal, openModal] = useState(false);
|
2022-03-02 14:18:01 +00:00
|
|
|
const { theme } = useTheme();
|
2021-09-13 20:41:05 +00:00
|
|
|
|
|
|
|
const toggleModal = () => openModal(prevState => !prevState);
|
|
|
|
|
|
|
|
if (text && !bannerClosed) {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<BorderlessButton
|
|
|
|
style={[styles.bannerContainer, { backgroundColor: themes[theme].bannerBackground }]}
|
|
|
|
testID='room-view-banner'
|
|
|
|
onPress={toggleModal}>
|
2022-02-17 15:27:01 +00:00
|
|
|
<MarkdownPreview msg={text} style={[styles.bannerText]} />
|
2021-09-13 20:41:05 +00:00
|
|
|
<BorderlessButton onPress={closeBanner}>
|
|
|
|
<CustomIcon color={themes[theme].auxiliaryText} name='close' size={20} />
|
|
|
|
</BorderlessButton>
|
2020-05-08 12:57:04 +00:00
|
|
|
</BorderlessButton>
|
2021-09-13 20:41:05 +00:00
|
|
|
<Modal
|
|
|
|
onBackdropPress={toggleModal}
|
|
|
|
onBackButtonPress={toggleModal}
|
|
|
|
useNativeDriver
|
|
|
|
isVisible={showModal}
|
|
|
|
animationIn='fadeIn'
|
|
|
|
animationOut='fadeOut'>
|
|
|
|
<View style={[styles.modalView, { backgroundColor: themes[theme].bannerBackground }]}>
|
|
|
|
<Text style={[styles.bannerModalTitle, { color: themes[theme].auxiliaryText }]}>{title}</Text>
|
|
|
|
<ScrollView style={styles.modalScrollView}>
|
|
|
|
<Markdown msg={text} theme={theme} />
|
|
|
|
</ScrollView>
|
|
|
|
</View>
|
|
|
|
</Modal>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
},
|
2022-03-02 14:18:01 +00:00
|
|
|
(prevProps, nextProps) => prevProps.text === nextProps.text && prevProps.bannerClosed === nextProps.bannerClosed
|
2021-09-13 20:41:05 +00:00
|
|
|
);
|
2020-03-30 20:19:01 +00:00
|
|
|
|
|
|
|
export default Banner;
|