Files
inji-wallet/screens/Request/RequestScreen.tsx
jaswanthkumartw 0e667bd46d Injimob-3651: revert all the branding changes (#2151)
* Revert "[INJIMOB-3622] Fix alignment in history screen  (#2140)"

This reverts commit a0b08914e5.

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

* Revert "Injimob [3622] [3627] - BANNER ISSUE AND BRANDING CHANGES ISSUES  (#2130)"

This reverts commit 522104811c.

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

* Revert "[INJIMOB-3633][INJIMOB-3636] fix icon bg color across app (#2134)"

This reverts commit d8d718693d.

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

* Revert "[INJIMOB-3633] fix search bar clear icon not apperaing (#2133)"

This reverts commit 6a202b11af.

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

* [INJIMOB-3651]: revert all the branding changes

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

* [INJIMOB-3651]: update all the snapshot

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

---------

Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com>
2025-11-28 18:59:15 +05:30

181 lines
5.2 KiB
TypeScript

import React, {useEffect, useState} from 'react';
import {TFunction, useTranslation} from 'react-i18next';
import QRCode from 'react-native-qrcode-svg';
import {Centered, Button, Column, Text} from '../../components/ui';
import {Theme} from '../../components/ui/styleUtils';
import {useRequestScreen} from './RequestScreenController';
import BluetoothStateManager from 'react-native-bluetooth-state-manager';
import {View} from 'react-native';
import {ErrorMessageOverlay} from '../../components/MessageOverlay';
import {NavigationProp, useNavigation} from '@react-navigation/native';
import {MainBottomTabParamList} from '../../routes/main';
import {BOTTOM_TAB_ROUTES} from '../../routes/routesConstants';
import {ProgressingModal} from '../../components/ProgressingModal';
import {isIOS} from '../../shared/constants';
import testIDProps from '../../shared/commonUtil';
type RequestStackParamList = {
RequestScreen: undefined;
ReceiveVcScreen: undefined;
};
type RequestLayoutNavigation = NavigationProp<
RequestStackParamList & MainBottomTabParamList
>;
export const RequestScreen: React.FC = () => {
const {t} = useTranslation('RequestScreen');
const controller = useRequestScreen();
const props: RequestScreenProps = {t, controller};
const [isBluetoothOn, setIsBluetoothOn] = useState(false);
const navigation = useNavigation<RequestLayoutNavigation>();
useEffect(() => {
(async () => {
await BluetoothStateManager.onStateChange(state => {
if (state === 'PoweredOff') {
setIsBluetoothOn(false);
} else {
setIsBluetoothOn(true);
}
}, true);
})();
}, [isBluetoothOn]);
return (
<Column
fill
padding="24"
align="space-between"
backgroundColor={Theme.Colors.lightGreyBackgroundColor}>
{loadQRCode()}
{controller.isMinimumStorageLimitReached && (
<ErrorMessageOverlay
isVisible={controller.isMinimumStorageLimitReached}
error="errors.storageLimitReached"
onDismiss={() => {
navigation.navigate(BOTTOM_TAB_ROUTES.home);
}}
translationPath="RequestScreen"
/>
)}
</Column>
);
function loadQRCode() {
if (controller.isNearByDevicesPermissionDenied) {
return <NearByPrompt {...props} />;
}
if (
(controller.isBluetoothDenied || !isBluetoothOn) &&
controller.isReadyForBluetoothStateCheck
) {
return <BluetoothPrompt {...props} />;
}
if (
!controller.isCheckingBluetoothService &&
!controller.isBluetoothDenied
) {
return (
<React.Fragment>
<Column align="flex-end" fill>
{controller.isWaitingForConnection && <SharingQR {...props} />}
<StatusMessage {...props} />
</Column>
<ProgressingModal
title={controller.statusTitle}
isVisible={
controller.isWaitingForVc || controller.isWaitingForVcTimeout
}
isHintVisible={false}
isBleErrorVisible={false}
progress={true}
onCancel={controller.CANCEL}
/>
</React.Fragment>
);
}
}
};
const BluetoothPrompt: React.FC<RequestScreenProps> = ({t}) => {
return (
<Centered fill>
<Text
testID="bluetoothIsTurnedOffMessage"
color={Theme.Colors.errorMessage}
align="center"
margin="0 10">
{t(isIOS() ? 'bluetoothStateIos' : 'bluetoothStateAndroid')}
</Text>
</Centered>
);
};
const NearByPrompt: React.FC<RequestScreenProps> = ({t, controller}) => {
return (
<Column fill align="space-between">
<Centered fill>
<Text
testID="allowNearbyDevicesPermissionMessage"
color={Theme.Colors.errorMessage}
align="center">
{t('errors.nearbyDevicesPermissionDenied.message')}
</Text>
</Centered>
<Button
testID="allowNearbyDevicesPermissionButton"
title={t('errors.nearbyDevicesPermissionDenied.button')}
onPress={controller.GOTO_SETTINGS}
/>
</Column>
);
};
const SharingQR: React.FC<RequestScreenProps> = ({t, controller}) => {
return (
<React.Fragment>
<Text testID="showQrCode" align="center">
{t('showQrCode')}
</Text>
<Centered fill>
{controller.openId4VpUri !== '' ? (
<View {...testIDProps('qrCode')}>
<QRCode
size={200}
value={controller.openId4VpUri}
backgroundColor={Theme.Colors.QRCodeBackgroundColor}
/>
</View>
) : null}
</Centered>
</React.Fragment>
);
};
const StatusMessage: React.FC<RequestScreenProps> = ({t, controller}) => {
return (
controller.statusMessage !== '' && (
<Column testID="recievedCardStatus" elevation={1} padding="16 24">
<Text testID="receiveCardStatusMessage">
{controller.statusMessage}
</Text>
{controller.statusHint !== '' && (
<Text
testID="receiveCardStatusHint"
size="small"
color={Theme.Colors.textLabel}>
{controller.statusHint}
</Text>
)}
</Column>
)
);
};
interface RequestScreenProps {
t: TFunction;
controller: ReturnType<typeof useRequestScreen>;
}