35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import React from 'react';
|
|
import { Text, View } from 'react-native';
|
|
|
|
import Touchable from './Touchable';
|
|
import { BUTTON_HIT_SLOP } from './utils';
|
|
import styles from './styles';
|
|
import I18n from '../../i18n';
|
|
import { CustomIcon } from '../CustomIcon';
|
|
import { themes } from '../../lib/constants';
|
|
import { IMessageCallButton } from './interfaces';
|
|
import { useTheme } from '../../theme';
|
|
|
|
const CallButton = React.memo(({ callJitsi }: IMessageCallButton) => {
|
|
const { theme } = useTheme();
|
|
return (
|
|
<View style={styles.buttonContainer}>
|
|
<Touchable
|
|
onPress={callJitsi}
|
|
background={Touchable.Ripple(themes[theme].bannerBackground)}
|
|
style={[styles.button, { backgroundColor: themes[theme].tintColor }]}
|
|
hitSlop={BUTTON_HIT_SLOP}
|
|
>
|
|
<>
|
|
<CustomIcon name='camera' size={16} style={styles.buttonIcon} color={themes[theme].buttonText} />
|
|
<Text style={[styles.buttonText, { color: themes[theme].buttonText }]}>{I18n.t('Click_to_join')}</Text>
|
|
</>
|
|
</Touchable>
|
|
</View>
|
|
);
|
|
});
|
|
|
|
CallButton.displayName = 'CallButton';
|
|
|
|
export default CallButton;
|