Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | import { BottomTabScreenProps } from '@react-navigation/bottom-tabs';
import { CompositeScreenProps, NavigatorScreenParams } from '@react-navigation/native';
import { NativeStackScreenProps } from '@react-navigation/native-stack';
import { SCREENS } from '@repo/constants/screens';
import { RequestCategory } from '@/types/request';
export type AppStackParamList = {
[SCREENS.LOGIN]: { isLoggedOut?: boolean } | undefined;
[SCREENS.BOTTOM_TAB]: NavigatorScreenParams<BottomTabParamList> | undefined;
[SCREENS.PROFILE]: undefined;
[SCREENS.NEW_REQUEST]: undefined;
[SCREENS.COMING_SOON]: undefined;
[SCREENS.REALLOCATION]: undefined;
[SCREENS.REQUEST_DETAIL]: {
id: string;
fromDeepLink?: boolean;
refreshTimeStamp?: number;
category?: RequestCategory;
};
[SCREENS.PENDING_REQUESTS]: undefined;
[SCREENS.MEAL_RESERVATION]: undefined;
[SCREENS.TIME_OFF]: undefined;
[SCREENS.BOOK_ROOM]: undefined;
[SCREENS.HOME_V2]: { allowHomeAccess?: boolean; scrollIndex?: number } | undefined;
[SCREENS.MAINTENANCE]: undefined;
[SCREENS.CREATE_REQUEST_SUCCESS]: undefined;
};
export type BottomTabParamList = {
[SCREENS.HOME]: undefined;
[SCREENS.MY_REQUEST]: undefined;
[SCREENS.PROFILE]: undefined;
};
export type AppStackV2ParamList = {
[SCREENS.HOME_V2]: { allowHomeAccess?: boolean; scrollIndex?: number } | undefined;
[SCREENS.PROFILE]: undefined;
[SCREENS.PENDING_REQUESTS]: undefined;
[SCREENS.NEW_REQUEST]: undefined;
[SCREENS.COMING_SOON]: undefined;
[SCREENS.REQUEST_DETAIL]: {
id: string;
fromDeepLink?: boolean;
refreshTimeStamp?: number;
category?: RequestCategory;
};
[SCREENS.REALLOCATION]: undefined;
[SCREENS.MEAL_RESERVATION]: undefined;
[SCREENS.TIME_OFF]: undefined;
[SCREENS.BOOK_ROOM]: undefined;
[SCREENS.MAINTENANCE]: undefined;
[SCREENS.CREATE_REQUEST_SUCCESS]: undefined;
};
// AppStack
export type AppStackScreenProps<Screen extends keyof AppStackParamList> = NativeStackScreenProps<
AppStackParamList,
Screen
>;
export type RootTabScreenProps<Screen extends keyof BottomTabParamList> = CompositeScreenProps<
BottomTabScreenProps<BottomTabParamList, Screen>,
NativeStackScreenProps<AppStackParamList>
>;
|