Files
inji-wallet/components/MessageOverlay.tsx
Vijay Kumar S 13f6730502 [INJIMOB-967]: selection of credential types (#1367)
* [INJIMOB-967]: selection of credential types

Signed-off-by: Vijay <94220135+vijay151096@users.noreply.github.com>

* [INJIMOB-967]: selection of credential types

Signed-off-by: Vijay <94220135+vijay151096@users.noreply.github.com>

* [INJIMOB-967]: selection of credential types

Signed-off-by: Vijay <94220135+vijay151096@users.noreply.github.com>

* [INJIMOB-967]: selection of credential types

Signed-off-by: Vijay <94220135+vijay151096@users.noreply.github.com>

* [INJIMOB-967] change literal and typeof param

Signed-off-by: Vijay <94220135+vijay151096@users.noreply.github.com>

* [INJIMOB-967] change literal in all languages

Signed-off-by: Vijay <94220135+vijay151096@users.noreply.github.com>

---------

Signed-off-by: Vijay <94220135+vijay151096@users.noreply.github.com>
2024-04-08 19:17:05 +05:30

135 lines
3.7 KiB
TypeScript

import React, {ReactElement} from 'react';
import {useTranslation} from 'react-i18next';
import {Dimensions, StyleSheet} from 'react-native';
import {LinearProgress, Overlay} 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');
const style = StyleSheet.create({
customHeight: {
minHeight: props.minHeight ? props.minHeight : props.progress ? 100 : 170,
},
});
return (
<Overlay
isVisible={props.isVisible}
overlayStyle={Theme.MessageOverlayStyles.overlay}
onShow={props.onShow}
onBackdropPress={props.onBackdropPress}>
<Column
testID={props.testID}
width={Dimensions.get('screen').width * 0.8}
style={[Theme.MessageOverlayStyles.popupOverLay, style.customHeight]}>
<Column padding="21" crossAlign="center">
{props.title && (
<Text
testID={props.testID && props.testID + 'Title'}
style={{paddingTop: 3}}
align="center"
weight="bold"
margin="0 0 10 0"
color={Theme.Colors.Details}>
{props.title}
</Text>
)}
{props.message && (
<Text
testID={props.testID && props.testID + 'Message'}
align="center"
weight="semibold"
size="small"
margin="10 0 12 0"
color={Theme.Colors.Details}>
{props.message}
</Text>
)}
{props.progress && <Progress progress={props.progress} />}
{props.hint && (
<Text
testID={props.testID && props.testID + 'Hint'}
size="smaller"
color={Theme.Colors.textLabel}
margin={[4, 0, 0, 0]}>
{props.hint}
</Text>
)}
{props.children}
</Column>
{!props.children && props.onButtonPress ? (
<Button
testID="cancel"
type="gradient"
title={props.buttonText ? t(props.buttonText) : t('cancel')}
onPress={props.onButtonPress}
styles={Theme.MessageOverlayStyles.button}
/>
) : null}
</Column>
</Overlay>
);
};
export const ErrorMessageOverlay: React.FC<ErrorMessageOverlayProps> = ({
testID,
isVisible,
error,
onDismiss,
translationPath,
}) => {
const {t} = useTranslation(translationPath);
return (
<MessageOverlay
isVisible={isVisible}
title={t(error + '.title')}
message={t(error + '.message')}
onBackdropPress={onDismiss}
testID={testID}
/>
);
};
export interface ErrorMessageOverlayProps {
isVisible: boolean;
error?: string;
onDismiss?: () => void;
translationPath: string;
testID?: string;
}
const Progress: React.FC<MessageOverlayProps> = props => {
return typeof props.progress === 'boolean' ? (
props.progress && (
<LinearProgress variant="indeterminate" color={Theme.Colors.Loading} />
)
) : (
<LinearProgress variant="determinate" value={props.progress} />
);
};
export interface MessageOverlayProps {
testID?: string;
isVisible: boolean;
title?: string;
buttonText?: string;
message?: string;
progress?: boolean | number;
requester?: boolean;
hint?: string;
onButtonPress?: () => void;
onStayInProgress?: () => void;
onRetry?: () => void;
onBackdropPress?: () => void;
onShow?: () => void;
minHeight?: number | string | undefined;
children?: ReactElement<any, any>;
}
export interface VCSharingErrorStatusProps {
title: string;
message: string;
}