All files / apps/timeOff/src/screens/TimeOffV2 index.tsx

87.2% Statements 75/86
76.92% Branches 30/39
96.42% Functions 27/28
86.25% Lines 69/80

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                                                                            1x   1x                             16x 16x     16x   16x   16x 16x 16x   16x 16x   16x 16x 16x   16x 16x   16x 16x     16x 2x         2x         2x       2x                   16x 1x 1x 1x     16x 1x       1x     16x 1x       1x     16x 1x       1x 1x       16x         16x         16x   16x 16x     16x       16x                                                                               1x 4x 4x   4x                         1x 4x 4x   4x                         1x 4x 4x   4x                         1x 4x                     1x 4x                                   1x 4x             1x 4x 4x     4x 4x             4x                 16x                                                  
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 ChooseApproversAndObservers from '../ChooseApproversAndObservers';
import ChooseDate from '../ChooseDate';
import ChooseReason from '../ChooseReason';
import Preview from '../Preview';
 
import {
  TimeOffV2ContextProvider,
  useTimeOffV2ActionsSelector,
  useTimeOffV2StateSelector,
} from './context';
import {
  createTimeOffV2RuntimeValue,
  TimeOffV2RuntimeProvider,
  useTimeOffV2Runtime,
} from './runtime';
import {
  TimeOffStep,
  TimeOffV2RemoteProps,
  TimeOffV2StackParamList,
} from './types';
 
const Stack = createNativeStackNavigator<TimeOffV2StackParamList>();
 
const ScreenWrapper = ({
  children,
  title,
  subTitle,
  step,
  isDisabledNext,
  nextTo,
}: {
  children: React.ReactNode;
  title: string;
  subTitle: string;
  step: TimeOffStep;
  isDisabledNext?: boolean;
  nextTo?: TimeOffStep;
}) => {
  const styles = useStyles();
  const { theme } = useTheme();
  const {
    actions: { onClose, setFabOffset },
  } = useTimeOffV2Runtime();
  const navigation =
    useNavigation<NativeStackNavigationProp<TimeOffV2StackParamList>>();
 
  const isSearchOpen = useTimeOffV2StateSelector(state => state.isSearchOpen);
  const isDatePickerOpen = useTimeOffV2StateSelector(
    state => state.isDatePickerOpen,
  );
  const isReasonInputOpen = useTimeOffV2StateSelector(
    state => state.isReasonInputOpen,
  );
  const isSubmitting = useTimeOffV2StateSelector(state => state.isSubmitting);
  const closeSearch = useTimeOffV2ActionsSelector(
    actions => actions.closeSearch,
  );
  const closeDatePicker = useTimeOffV2ActionsSelector(
    actions => actions.closeDatePicker,
  );
  const closeReasonInput = useTimeOffV2ActionsSelector(
    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 === TimeOffStep.PREVIEW ||
    (step === TimeOffStep.APPROVERS && isSearchOpen) ||
    (step === TimeOffStep.DATE && isDatePickerOpen) ||
    (step === TimeOffStep.REASON && isReasonInputOpen);
  const isShowBackButton =
    (step !== TimeOffStep.APPROVERS || 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.LAZY_MASCOT}
          isShowBackButton={isShowBackButton}
          isLoading={isSubmitting}
          onBackStep={handleBack}
          onClose={handleClose}
          subTitle={subTitle}
          imageWidth={84}
          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 ChooseApproversAndObserversScreen = () => {
  const form = useTimeOffV2StateSelector(state => state.form);
  const isDisabledNext = form.approvers.length === 0;
 
  return (
    <ScreenWrapper
      title="TIME OFF"
      subTitle="Choose the approvers and observers"
      step={TimeOffStep.APPROVERS}
      isDisabledNext={isDisabledNext}
      nextTo={TimeOffStep.DATE}
    >
      <ChooseApproversAndObservers />
    </ScreenWrapper>
  );
};
 
const ChooseDateScreen = () => {
  const form = useTimeOffV2StateSelector(state => state.form);
  const isDisabledNext = !form.start || !form.end;
 
  return (
    <ScreenWrapper
      title="TIME OFF"
      subTitle="Choose the date"
      step={TimeOffStep.DATE}
      isDisabledNext={isDisabledNext}
      nextTo={TimeOffStep.REASON}
    >
      <ChooseDate />
    </ScreenWrapper>
  );
};
 
const ChooseReasonScreen = () => {
  const form = useTimeOffV2StateSelector(state => state.form);
  const isDisabledNext = !form.note;
 
  return (
    <ScreenWrapper
      title="TIME OFF"
      subTitle="Choose a reason"
      step={TimeOffStep.REASON}
      isDisabledNext={isDisabledNext}
      nextTo={TimeOffStep.PREVIEW}
    >
      <ChooseReason />
    </ScreenWrapper>
  );
};
 
const PreviewScreen = () => {
  return (
    <ScreenWrapper
      title="TIME OFF"
      subTitle="Preview detail"
      step={TimeOffStep.PREVIEW}
    >
      <Preview />
    </ScreenWrapper>
  );
};
 
const TimeOffV2FlowContent = () => {
  return (
    <Stack.Navigator
      screenOptions={{
        headerShown: false,
        animation: 'slide_from_right',
      }}
    >
      <Stack.Screen
        name={TimeOffStep.APPROVERS}
        component={ChooseApproversAndObserversScreen}
      />
      <Stack.Screen name={TimeOffStep.DATE} component={ChooseDateScreen} />
      <Stack.Screen name={TimeOffStep.REASON} component={ChooseReasonScreen} />
      <Stack.Screen name={TimeOffStep.PREVIEW} component={PreviewScreen} />
    </Stack.Navigator>
  );
};
 
const TimeOffV2Flow = () => {
  return (
    <TimeOffV2ContextProvider>
      <TimeOffV2FlowContent />
    </TimeOffV2ContextProvider>
  );
};
 
const TimeOffV2 = (props: TimeOffV2RemoteProps) => {
  const runtimeValue = useMemo(
    () => createTimeOffV2RuntimeValue(props),
    [props],
  );
  const apiQueryClients = useMemo(
    () => ({
      mainHttp: runtimeValue.meta.api.mainHttp,
      spaceHttp: runtimeValue.meta.api.spaceHttp,
    }),
    [runtimeValue],
  );
 
  return (
    <TimeOffV2RuntimeProvider value={runtimeValue}>
      <ApiQueryClientsProvider value={apiQueryClients}>
        <TimeOffV2Flow />
      </ApiQueryClientsProvider>
    </TimeOffV2RuntimeProvider>
  );
};
 
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 TimeOffV2;