All files / apps/reallocation/src/screens/ReallocationV2 index.tsx

87.91% Statements 80/91
76.92% Branches 30/39
96.66% Functions 29/30
87.2% Lines 75/86

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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365                                                                                1x   1x                             20x 20x     20x   20x   20x 20x   20x 20x   20x 20x   20x 20x     20x 20x   20x 20x   20x 20x     20x 2x         2x         2x         2x                   20x 1x 1x 1x     20x 1x       1x     20x 1x       1x     20x 1x       1x 1x       20x         20x         20x   20x 20x     20x       20x                                                                               1x 4x 4x   4x                         1x 4x 4x   4x                         1x 4x 4x   4x                         1x 4x 4x   4x                         1x 4x             1x 4x                                                   1x 4x             1x 4x 4x     4x 4x             4x                 20x                                                  
import React, { useCallback, useEffect, useMemo } from 'react';
import { Pressable, StyleSheet, View } from 'react-native';
 
import { useNavigation } from '@react-navigation/native';
import {
  createNativeStackNavigator,
  NativeStackNavigationProp,
} from '@react-navigation/native-stack';
 
import { ASSETS } from '@repo/ui/assets';
import { HeaderRequestV2 } from '@repo/ui/components/HeaderRequestV2';
import { ArrowRightCircleIcon } from '@repo/ui/icons/ArrowRightCircle';
import { makeStyles } from '@repo/ui/themes/makeStyles';
import { useTheme } from '@repo/ui/themes/ThemeContext';
 
import { ApiQueryClientsProvider } from '@repo/hooks/apiClients';
 
import ChooseDate from '../ChooseDate';
import ChooseObserver from '../ChooseObserver';
import ChooseReason from '../ChooseReason';
import ChooseRoom from '../ChooseRoom';
import MealReservation from '../MealReservation';
import Preview from '../Preview';
 
import {
  ReallocationV2ContextProvider,
  useReallocationV2ActionsSelector,
  useReallocationV2StateSelector,
} from './context';
import {
  createReallocationV2RuntimeValue,
  ReallocationV2RuntimeProvider,
  useReallocationV2Runtime,
} from './runtime';
import {
  ReallocationStep,
  ReallocationV2RemoteProps,
  ReallocationV2StackParamList,
} from './types';
 
const Stack = createNativeStackNavigator<ReallocationV2StackParamList>();
 
const ScreenWrapper = ({
  children,
  title,
  description,
  step,
  isDisabledNext,
  nextTo,
}: {
  children: React.ReactNode;
  title: string;
  description?: string;
  step: ReallocationStep;
  isDisabledNext?: boolean;
  nextTo?: ReallocationStep;
}) => {
  const styles = useStyles();
  const { theme } = useTheme();
  const {
    actions: { onClose, setFabOffset },
  } = useReallocationV2Runtime();
  const navigation =
    useNavigation<NativeStackNavigationProp<ReallocationV2StackParamList>>();
 
  const isSearchOpen = useReallocationV2StateSelector(
    state => state.isSearchOpen,
  );
  const isDatePickerOpen = useReallocationV2StateSelector(
    state => state.isDatePickerOpen,
  );
  const isReasonInputOpen = useReallocationV2StateSelector(
    state => state.isReasonInputOpen,
  );
  const isSubmitting = useReallocationV2StateSelector(
    state => state.isSubmitting,
  );
 
  const closeSearch = useReallocationV2ActionsSelector(
    actions => actions.closeSearch,
  );
  const closeDatePicker = useReallocationV2ActionsSelector(
    actions => actions.closeDatePicker,
  );
  const closeReasonInput = useReallocationV2ActionsSelector(
    actions => actions.closeReasonInput,
  );
 
  const dismissTransientUi = useCallback(() => {
    Iif (isDatePickerOpen) {
      closeDatePicker();
      return true;
    }
 
    Iif (isReasonInputOpen) {
      closeReasonInput();
      return true;
    }
 
    Iif (isSearchOpen) {
      closeSearch();
      return true;
    }
 
    return false;
  }, [
    closeDatePicker,
    closeReasonInput,
    closeSearch,
    isDatePickerOpen,
    isReasonInputOpen,
    isSearchOpen,
  ]);
 
  const closeAllTransientUi = useCallback(() => {
    closeSearch();
    closeDatePicker();
    closeReasonInput();
  }, [closeDatePicker, closeReasonInput, closeSearch]);
 
  const handleBack = useCallback(() => {
    Iif (dismissTransientUi()) {
      return;
    }
 
    navigation.goBack();
  }, [dismissTransientUi, navigation]);
 
  const handleClose = useCallback(() => {
    Iif (dismissTransientUi()) {
      return;
    }
 
    onClose();
  }, [dismissTransientUi, onClose]);
 
  const handleNext = useCallback(() => {
    Iif (!nextTo) {
      return;
    }
 
    navigation.navigate(nextTo);
    closeAllTransientUi();
  }, [closeAllTransientUi, navigation, nextTo]);
 
  const isHideNextButton =
    step === ReallocationStep.PREVIEW ||
    (step === ReallocationStep.OBSERVER && isSearchOpen) ||
    (step === ReallocationStep.DATE && isDatePickerOpen) ||
    (step === ReallocationStep.REASON && isReasonInputOpen);
  const isShowBackButton =
    (step !== ReallocationStep.OBSERVER || isSearchOpen) &&
    !isDatePickerOpen &&
    !isSearchOpen &&
    !isReasonInputOpen;
 
  const isShowNextButton = !isHideNextButton && !!nextTo;
 
  useEffect(() => {
    Iif (isSearchOpen || isDatePickerOpen || isReasonInputOpen) {
      setFabOffset?.(-200); // Push FAB completely off-screen to hide it
    } else {
      setFabOffset?.(52); // Accommodate the Next button height
    }
  }, [isSearchOpen, isDatePickerOpen, isReasonInputOpen, setFabOffset]);
 
  return (
    <View style={styles.container}>
      {isSearchOpen && (
        <Pressable
          style={StyleSheet.absoluteFill}
          onPress={() => closeSearch()}
        />
      )}
      <View style={styles.header}>
        <HeaderRequestV2
          title={title}
          image={ASSETS.IMAGES.PATIN_MASCOT}
          isShowBackButton={isShowBackButton}
          isLoading={isSubmitting}
          onBackStep={handleBack}
          onClose={handleClose}
          description={description}
          imageWidth={90}
          imageHeight={100}
        />
      </View>
 
      {children}
 
      {isShowNextButton && (
        <Pressable
          disabled={isDisabledNext}
          style={[styles.nextIcon]}
          testID="next-btn"
          onPress={handleNext}
        >
          <ArrowRightCircleIcon
            color={isDisabledNext ? theme.colors.slate60 : theme.colors.slate97}
          />
        </Pressable>
      )}
    </View>
  );
};
 
const ChooseObserverScreen = () => {
  const form = useReallocationV2StateSelector(state => state.form);
  const isDisabledNext = form.observers.length === 0;
 
  return (
    <ScreenWrapper
      title="REALLOCATION"
      description="I would like to inform"
      step={ReallocationStep.OBSERVER}
      isDisabledNext={isDisabledNext}
      nextTo={ReallocationStep.ROOM}
    >
      <ChooseObserver />
    </ScreenWrapper>
  );
};
 
const ChooseRoomScreen = () => {
  const form = useReallocationV2StateSelector(state => state.form);
  const isDisabledNext = !form.room;
 
  return (
    <ScreenWrapper
      title="REALLOCATION"
      description="I would like to move to"
      step={ReallocationStep.ROOM}
      isDisabledNext={isDisabledNext}
      nextTo={ReallocationStep.DATE}
    >
      <ChooseRoom />
    </ScreenWrapper>
  );
};
 
const ChooseDateScreen = () => {
  const form = useReallocationV2StateSelector(state => state.form);
  const isDisabledNext = !form.date || !form.shift;
 
  return (
    <ScreenWrapper
      title="REALLOCATION"
      description="I would like my desk to be ready by"
      step={ReallocationStep.DATE}
      isDisabledNext={isDisabledNext}
      nextTo={ReallocationStep.REASON}
    >
      <ChooseDate />
    </ScreenWrapper>
  );
};
 
const ChooseReasonScreen = () => {
  const form = useReallocationV2StateSelector(state => state.form);
  const isDisabledNext = !form.reason;
 
  return (
    <ScreenWrapper
      title="REALLOCATION"
      description="I'm moving for"
      step={ReallocationStep.REASON}
      isDisabledNext={isDisabledNext}
      nextTo={ReallocationStep.PREVIEW}
    >
      <ChooseReason />
    </ScreenWrapper>
  );
};
 
const PreviewScreen = () => {
  return (
    <ScreenWrapper title="REALLOCATION" step={ReallocationStep.PREVIEW}>
      <Preview />
    </ScreenWrapper>
  );
};
 
const ReallocationV2FlowContent = () => {
  return (
    <Stack.Navigator
      screenOptions={{
        headerShown: false,
        animation: 'slide_from_right',
      }}
    >
      <Stack.Screen
        name={ReallocationStep.OBSERVER}
        component={ChooseObserverScreen}
      />
      <Stack.Screen name={ReallocationStep.ROOM} component={ChooseRoomScreen} />
      <Stack.Screen name={ReallocationStep.DATE} component={ChooseDateScreen} />
      <Stack.Screen
        name={ReallocationStep.REASON}
        component={ChooseReasonScreen}
      />
      <Stack.Screen name={ReallocationStep.PREVIEW} component={PreviewScreen} />
      <Stack.Screen
        name={ReallocationStep.MEAL_REGISTRATION}
        component={MealReservation}
      />
    </Stack.Navigator>
  );
};
 
const ReallocationV2Flow = () => {
  return (
    <ReallocationV2ContextProvider>
      <ReallocationV2FlowContent />
    </ReallocationV2ContextProvider>
  );
};
 
const ReallocationV2 = (props: ReallocationV2RemoteProps) => {
  const runtimeValue = useMemo(
    () => createReallocationV2RuntimeValue(props),
    [props],
  );
  const apiQueryClients = useMemo(
    () => ({
      mainHttp: runtimeValue.meta.api.mainHttp,
      spaceHttp: runtimeValue.meta.api.spaceHttp,
    }),
    [runtimeValue],
  );
 
  return (
    <ReallocationV2RuntimeProvider value={runtimeValue}>
      <ApiQueryClientsProvider value={apiQueryClients}>
        <ReallocationV2Flow />
      </ApiQueryClientsProvider>
    </ReallocationV2RuntimeProvider>
  );
};
 
const useStyles = makeStyles(theme => ({
  container: {
    flex: 1,
    backgroundColor: theme.colors.background.pageMuted,
  },
  header: {
    paddingHorizontal: theme.metrics.spacing[4],
    paddingTop: theme.metrics.spacing[4],
    backgroundColor: theme.colors.background.pageMuted,
  },
  nextIcon: {
    borderRadius: theme.metrics.borderRadius.pill,
    position: 'absolute',
    alignItems: 'center',
    justifyContent: 'center',
    width: theme.metrics.spacing[13],
    height: theme.metrics.spacing[13],
    overflow: 'hidden',
    backgroundColor: theme.colors.background.pageMuted,
    bottom: theme.metrics.spacing[4],
    right: theme.metrics.spacing[4],
  },
}));
 
export default ReallocationV2;