Skip to content

Commit

Permalink
add root & confirmation screens
Browse files Browse the repository at this point in the history
feat: add root & confirmation screens
  • Loading branch information
BartoszGrajdek authored Feb 27, 2024
2 parents 845427d + 0c26543 commit 33ed684
Show file tree
Hide file tree
Showing 9 changed files with 149 additions and 13 deletions.
3 changes: 3 additions & 0 deletions src/CONST.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3023,6 +3023,9 @@ const CONST = {
NEW_ROOM: 'room',
RECEIPT_TAB_ID: 'ReceiptTab',
IOU_REQUEST_TYPE: 'iouRequestType',
SHARE_TAB_ID: 'ShareTab',
SHARE: 'share',
SCAN: 'scan',
},
TAB_REQUEST: {
MANUAL: 'manual',
Expand Down
6 changes: 5 additions & 1 deletion src/ROUTES.ts
Original file line number Diff line number Diff line change
Expand Up @@ -504,9 +504,13 @@ const ROUTES = {
getRoute: (contentType: string) => `referral/${contentType}` as const,
},
PROCESS_MONEY_REQUEST_HOLD: 'hold-request-educational',
SHARE: 'share',
SHARE_ROOT: 'share/root',
SHARE_MESSAGE: 'share/message',
SHARE_SCAN_CONFIRM: 'share/scan-confirm',
SHARE_SCAN_CONFIRM: {
route: 'share/scan-confirm/:iouType/:transactionID/:reportID',
getRoute: (iouType: ValueOf<typeof CONST.IOU.TYPE>, transactionID: string, reportID: string) => `share/scan-confirm/${iouType}/${transactionID}/${reportID}` as const,
},
} as const;

/**
Expand Down
4 changes: 4 additions & 0 deletions src/components/TabSelector/TabSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ function getIconAndTitle(route: string, translate: LocaleContextProps['translate
return {icon: Expensicons.Hashtag, title: translate('tabSelector.room')};
case CONST.TAB_REQUEST.DISTANCE:
return {icon: Expensicons.Car, title: translate('common.distance')};
case CONST.TAB.SCAN:
return {icon: Expensicons.Receipt, title: translate('tabSelector.scan')};
case CONST.TAB.SHARE:
return {icon: Expensicons.UploadAlt, title: translate('common.share')};
default:
throw new Error(`Route ${route} has no icon nor title set.`);
}
Expand Down
3 changes: 3 additions & 0 deletions src/languages/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2278,6 +2278,9 @@ export default {
secondDescription: "Don't worry, Expensify Classic has everything you need.",
buttonText: 'Take me to Expensify Classic',
},
share: {
title: 'Share to Expensify',
},
violations: {
allTagLevelsRequired: 'All tags required',
autoReportedRejectedExpense: ({rejectReason, rejectedBy}: ViolationsAutoReportedRejectedExpenseParams) => `${rejectedBy} rejected this expense with the comment "${rejectReason}"`,
Expand Down
3 changes: 3 additions & 0 deletions src/languages/es.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2767,6 +2767,9 @@ export default {
secondDescription: 'No te preocupes, Expensify Classic tiene todo lo que necesitas.',
buttonText: 'Llévame a Expensify Classic',
},
share: {
title: 'Share to Expensify',
},
violations: {
allTagLevelsRequired: 'Todas las etiquetas son obligatorias',
autoReportedRejectedExpense: ({rejectedBy, rejectReason}: ViolationsAutoReportedRejectedExpenseParams) => `${rejectedBy} rechazó la solicitud y comentó "${rejectReason}"`,
Expand Down
2 changes: 1 addition & 1 deletion src/libs/Navigation/AppNavigator/ModalStackNavigators.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ const ProcessMoneyRequestHoldStackNavigator = createModalStackNavigator({
const ShareModalStackNavigator = createModalStackNavigator({
[SCREENS.SHARE.ROOT]: () => require('../../../pages/share/ShareRootPage').default as React.ComponentType,
[SCREENS.SHARE.MESSAGE]: () => require('../../../pages/share/ShareComposeMessagePage').default as React.ComponentType,
[SCREENS.SHARE.SCAN_CONFIRM]: () => require('../../../pages/iou/steps/MoneyRequestConfirmPage').default as React.ComponentType,
[SCREENS.SHARE.SCAN_CONFIRM]: () => require('../../../pages/iou/request/step/IOURequestStepConfirmation').default as React.ComponentType,
});

export {
Expand Down
1 change: 1 addition & 0 deletions src/libs/Navigation/dismissModal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ function dismissModal(navigationRef: NavigationContainerRef<RootStackParamList>)
case NAVIGATORS.FULL_SCREEN_NAVIGATOR:
case NAVIGATORS.LEFT_MODAL_NAVIGATOR:
case NAVIGATORS.RIGHT_MODAL_NAVIGATOR:
case NAVIGATORS.SHARE_MODAL_NAVIGATOR:
case SCREENS.NOT_FOUND:
case SCREENS.REPORT_ATTACHMENTS:
navigationRef.dispatch({...StackActions.pop(), target: state.key});
Expand Down
20 changes: 16 additions & 4 deletions src/libs/Navigation/linkingConfig/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -525,12 +525,24 @@ const config: LinkingOptions<RootStackParamList>['config'] = {
},

[NAVIGATORS.SHARE_MODAL_NAVIGATOR]: {
path: ROUTES.SHARE_ROOT,
initialRouteName: SCREENS.SHARE.ROOT,
screens: {
[SCREENS.SHARE.ROOT]: ROUTES.SHARE_ROOT,
[SCREENS.SHARE.MESSAGE]: ROUTES.SHARE_MESSAGE,
[SCREENS.SHARE.SCAN_CONFIRM]: ROUTES.SHARE_SCAN_CONFIRM,
[SCREENS.SHARE.ROOT]: {
path: ROUTES.SHARE_ROOT,
exact: true,
screens: {
share: {
path: 'share/root/share',
exact: true,
},
scan: {
path: 'share/root/scan',
exact: true,
},
},
},
[SCREENS.SHARE.MESSAGE]: {path: ROUTES.SHARE_MESSAGE},
[SCREENS.SHARE.SCAN_CONFIRM]: {path: ROUTES.SHARE_SCAN_CONFIRM.route},
},
},
},
Expand Down
120 changes: 113 additions & 7 deletions src/pages/share/ShareRootPage.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,40 @@
import React, {useEffect, useRef} from 'react';
import React, {useCallback, useEffect, useRef} from 'react';
import type {AppStateStatus} from 'react-native';
import {AppState, View} from 'react-native';
import Text from '@components/Text';
import type {OnyxEntry} from 'react-native-onyx';
import {withOnyx} from 'react-native-onyx';
import HeaderWithBackButton from '@components/HeaderWithBackButton';
import ScreenWrapper from '@components/ScreenWrapper';
import TabSelector from '@components/TabSelector/TabSelector';
import useLocalize from '@hooks/useLocalize';
import useThemeStyles from '@hooks/useThemeStyles';
import * as IOU from '@libs/actions/IOU';
import * as DeviceCapabilities from '@libs/DeviceCapabilities';
import * as ReportUtils from '@libs/ReportUtils';
import Navigation from '@navigation/Navigation';
import OnyxTabNavigator, {TopTab} from '@navigation/OnyxTabNavigator';
import MoneyRequestParticipantsSelector from '@pages/iou/steps/MoneyRequstParticipantsPage/MoneyRequestParticipantsSelector';
import CONST from '@src/CONST';
import ShareExtensionHandlerModule from '@src/modules/ShareExtensionHandlerModule';
import ONYXKEYS from '@src/ONYXKEYS';
import ROUTES from '@src/ROUTES';
import type {Report} from '@src/types/onyx';

// type ShareRootPageProps = {};
type ShareRootPageOnyxProps = {
selectedTab: OnyxEntry<string>;

export default function ShareRootPage() {
iou: OnyxEntry<Report>;
};

type ShareRootPageProps = ShareRootPageOnyxProps;

function ShareRootPage({selectedTab, iou}: ShareRootPageProps) {
const transactionID = CONST.IOU.OPTIMISTIC_TRANSACTION_ID;
const styles = useThemeStyles();
const {translate} = useLocalize();
const fileIsScannable = false;
const optimisticReportID = ReportUtils.generateReportID();
const selectedReportID = useRef(optimisticReportID);
const appState = useRef(AppState.currentState);

const handleAppStateChange = (nextAppState: AppStateStatus) => {
Expand All @@ -30,9 +58,87 @@ export default function ShareRootPage() {
};
}, []);

const navigateBack = () => {
Navigation.dismissModal();
};

const goToNextStep = useCallback(() => {
// const nextStepIOUType = numberOfParticipants.current === 1 ? CONST.IOU.TYPE.REQUEST : CONST.IOU.TYPE.SPLIT;
const nextStepIOUType = CONST.IOU.TYPE.REQUEST;
IOU.startMoneyRequest_temporaryForRefactor(optimisticReportID, false, CONST.IOU.REQUEST_TYPE.SCAN);
IOU.setMoneyRequestTag(transactionID, '');
IOU.resetMoneyRequestCategory_temporaryForRefactor(transactionID);
Navigation.navigate(ROUTES.SHARE_SCAN_CONFIRM.getRoute(nextStepIOUType, transactionID, selectedReportID.current || optimisticReportID));
}, [transactionID, optimisticReportID]);

return (
<View style={{flex: 1, alignItems: 'center', justifyContent: 'center'}}>
<Text>share root</Text>
</View>
<ScreenWrapper
includeSafeAreaPaddingBottom={false}
shouldEnableKeyboardAvoidingView={false}
shouldEnableMinHeight={DeviceCapabilities.canUseTouchScreen()}
testID={ShareRootPage.displayName}
>
<View style={[styles.flex1]}>
<HeaderWithBackButton
title={translate('share.title')}
onBackButtonPress={navigateBack}
/>
<OnyxTabNavigator
id={CONST.TAB.SHARE_TAB_ID}
// @ts-expect-error I think that OnyxTabNavigator is going to be refactored in terms of types
selectedTab={fileIsScannable && selectedTab ? selectedTab : CONST.TAB.SHARE}
hideTabBar={!fileIsScannable}
// @ts-expect-error I think that OnyxTabNavigator is going to be refactored in terms of types
tabBar={({state, navigation, position}) => (
<TabSelector
state={state}
navigation={navigation}
position={position}
/>
)}
>
<TopTab.Screen name={CONST.TAB.SHARE}>
{() => (
<MoneyRequestParticipantsSelector
participants={iou?.participants ?? []}
onAddParticipants={IOU.setMoneyRequestParticipants}
onFinish={goToNextStep}
navigateToRequest={goToNextStep}
navigateToSplit={goToNextStep}
iouType={CONST.IOU.TYPE.REQUEST}
iouRequestType={CONST.IOU.REQUEST_TYPE.SCAN}
isScanRequest
/>
)}
</TopTab.Screen>
<TopTab.Screen name={CONST.TAB.SCAN}>
{() => (
<MoneyRequestParticipantsSelector
participants={iou?.participants ?? []}
onAddParticipants={IOU.setMoneyRequestParticipants}
onFinish={goToNextStep}
navigateToRequest={goToNextStep}
navigateToSplit={goToNextStep}
iouType={CONST.IOU.TYPE.REQUEST}
iouRequestType={CONST.IOU.REQUEST_TYPE.SCAN}
isScanRequest
/>
)}
</TopTab.Screen>
</OnyxTabNavigator>
</View>
</ScreenWrapper>
);
}

ShareRootPage.displayName = 'ShareRootPage';

export default withOnyx<ShareRootPageProps, ShareRootPageOnyxProps>({
selectedTab: {
key: `${ONYXKEYS.COLLECTION.SELECTED_TAB}${CONST.TAB.RECEIPT_TAB_ID}`,
},
// @ts-expect-error To fix
iou: {
key: ONYXKEYS.IOU,
},
})(ShareRootPage);

0 comments on commit 33ed684

Please sign in to comment.