Files
inji-wallet/screens/IntroSliders/secureShareIntro.tsx
jaswanthkumartw edefef6c5d Injimob-3651: update the new branding changes (#2154)
* [INJIMOB-3622]: add the new branding changes

Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com>

* [INJIMOB-3651]: update the new branding changes

Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com>

* [INJIMOB-3651]: update the new snapshots

Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com>

* [INJIMOB-3651]: update the changes mentioned deskcheck

Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com>

---------

Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com>
Signed-off-by: jaswanthkumartw <jaswanthkumar.p@thoughtworks.com>
2025-12-01 15:03:41 +05:30

195 lines
5.7 KiB
TypeScript

import React from 'react';
import {Column, Row, Button, Text} from '../../components/ui';
import {Theme} from '../../components/ui/styleUtils';
import {SvgImage} from '../../components/ui/svg';
import {Divider} from 'react-native-elements';
import {View, Image} from 'react-native';
import {useTranslation} from 'react-i18next';
import {useNavigation} from '@react-navigation/native';
import LinearGradient from 'react-native-linear-gradient';
export const StaticSendVcScreen: React.FC = () => {
const staticCards = [
{
id: 1,
name: 'Abigail',
status: 'valid',
pin: false,
face: require('../../assets/Profile1.png'),
selected: true,
},
{
id: 2,
name: 'Patricia',
status: 'valid',
pin: false,
face: require('../../assets/Profile2.jpg'),
selected: true,
},
{
id: 3,
name: 'Timara',
status: 'valid',
pin: false,
face: require('../../assets/Profile3.jpg'),
selected: false,
},
{
id: 4,
name: 'Abishek',
status: 'valid',
pin: false,
face: require('../../assets/Profile4.png'),
selected: false,
},
];
const {t} = useTranslation();
const navigation = useNavigation();
const handleShare = () => {};
const handleShareWithSelfie = () => {};
const handleReject = () => {};
return (
<Column
testID="sendVcScreen"
fill
backgroundColor={Theme.Colors.lightGreyBackgroundColor}
style={Theme.IntroSliderStyles.secureShareIntroOuterColumn}>
<View
testID="introScreenNotch"
style={Theme.IntroSliderStyles.introScreenNotch}></View>
<Row
align="space-between"
style={{
marginTop: 16,
paddingLeft: 16,
borderBottomWidth: 1,
borderBottomColor: Theme.Colors.lightGreyBackgroundColor,
}}>
<Text testID="introTitle" weight="bold" size="medium">
{t('SendVcScreen:introTitle')}
</Text>
</Row>
<Row style={{paddingHorizontal: 16}}>
<Text
testID="issuerName"
color={Theme.Colors.secondaryText}
size="extraSmall"
weight="bold">
Relying Party
</Text>
</Row>
<Divider width={1}></Divider>
<Column
style={{
padding: 10,
margin: 16,
borderRadius: 8,
justifyContent: 'center',
backgroundColor: '#FFF2D6',
}}>
<Text testID="requestMessage" color="#8B6105" size="small">
{'<Relying Party>'} {t('SendVcScreen:requestMessage')}
{'<Self-Authentication>'}.
</Text>
</Column>
<Text
testID="pleaseSelectAnId"
margin="0 0 8 16"
weight="bold"
size="small"
color={Theme.Colors.textValue}
style={{position: 'relative'}}>
{t('SendVcScreen:pleaseSelectAnId')}
</Text>
<Row align="space-between" style={{paddingHorizontal: 16}}>
<Text testID="cardsSelected" margin={'3 0 10 0'}>
2 {t('SendVPScreen:cardsSelected')}
</Text>
<Text testID="uncheckText" color={Theme.Colors.unCheckText}>
{t('SendVPScreen:unCheck')}
</Text>
</Row>
<Column scroll>
{staticCards.map(card => (
<LinearGradient
key={card.id}
colors={Theme.Colors.GradientColorsLight}
start={Theme.LinearGradientDirection.start}
end={Theme.LinearGradientDirection.end}>
<Row
testID={`cardRow-${card.id}`}
style={{
alignItems: 'center',
padding: 16,
borderBottomWidth: 1,
borderBottomColor: Theme.Colors.lightGreyBackgroundColor,
backgroundColor: card.selected
? Theme.Colors.GradientColorsLight[0]
: Theme.Colors.whiteBackgroundColor,
}}>
<Column style={{marginLeft: 5, flex: 1}}>
<Row crossAlign="center">
<View style={{paddingRight: 10}}>
{card.selected
? SvgImage.CheckedIcon()
: SvgImage.UnCheckedIcon()}
</View>
<Image
testID={`cardFace-${card.id}`}
style={{height: 40, width: 40, marginRight: 10}}
source={card.face}
/>
<Column>
<Text testID={`cardName-${card.id}`} weight="bold">
{card.name}
</Text>
<Text
testID={`cardStatus-${card.id}`}
size="extraSmall"
style={{
color: Theme.Colors.blackIcon,
}}>
{t('VcDetails:' + card.status)}
</Text>
</Column>
</Row>
</Column>
{SvgImage.walletActivatedIcon()}
</Row>
</LinearGradient>
))}
</Column>
<Column
style={{
padding: 16,
backgroundColor: Theme.Colors.whiteBackgroundColor,
}}>
<Button
testID="shareButton"
type="gradient"
title="Share"
styles={{marginVertical: 8}}
onPress={handleShare}
/>
<Button
testID="shareWithSelfieButton"
type="gradient"
title="Share with Selfie"
styles={{marginVertical: 8}}
onPress={handleShareWithSelfie}
/>
<Button
testID="rejectButton"
type="clear"
title="Reject"
onPress={handleReject}
/>
</Column>
</Column>
);
};