Files
inji-wallet/components/MessageOverlay.tsx
2022-10-18 17:05:32 +05:30

68 lines
2.0 KiB
TypeScript

import React from 'react';
import { useTranslation } from 'react-i18next';
import { Dimensions } from 'react-native';
import { Overlay, LinearProgress } from 'react-native-elements';
import { Button, Column, Text } from './ui';
import { Theme } from './ui/styleUtils';
export const MessageOverlay: React.FC<MessageOverlayProps> = (props) => {
const { t } = useTranslation('common');
return (
<Overlay
isVisible={props.isVisible}
overlayStyle={Theme.MessageOverlayStyles.overlay}
onShow={props.onShow}
onBackdropPress={props.onBackdropPress}>
<Column width={Dimensions.get('screen').width * 0.8}>
<Column padding="24">
{props.title && (
<Text weight="semibold" margin="0 0 12 0">
{props.title}
</Text>
)}
{props.message && <Text margin="0 0 12 0">{props.message}</Text>}
{props.progress && <Progress progress={props.progress} />}
{props.hint && (
<Text
size="smaller"
color={Theme.Colors.textLabel}
margin={[4, 0, 0, 0]}>
{props.hint}
</Text>
)}
{props.children}
</Column>
{!props.children && props.onCancel ? (
<Button
title={t('cancel')}
onPress={props.onCancel}
styles={Theme.MessageOverlayStyles.button}
/>
) : null}
</Column>
</Overlay>
);
};
const Progress: React.FC<Pick<MessageOverlayProps, 'progress'>> = (props) => {
return typeof props.progress === 'boolean' ? (
props.progress && (
<LinearProgress variant="indeterminate" color={Theme.Colors.Loading} />
)
) : (
<LinearProgress variant="determinate" value={props.progress} />
);
};
export interface MessageOverlayProps {
isVisible: boolean;
title?: string;
message?: string;
progress?: boolean | number;
hint?: string;
onCancel?: () => void;
onBackdropPress?: () => void;
onShow?: () => void;
}