All files / apps/timeOff/src/screens/ChooseDate/hooks useChooseDate.ts

98.26% Statements 113/115
72.61% Branches 61/84
100% Functions 20/20
98.23% Lines 111/113

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 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409                                                                      1x 15x         15x 15x 10x     5x     1x   36x 36x 36x 36x   36x 36x 36x               36x   36x 15x 2x     13x             36x 36x     36x 36x 5x     31x       31x 16x     15x 2x       2x         15x                                 36x       36x 36x 36x         36x 34x             36x 36x 22x     14x 12x 12x     2x       2x 2x           2x                 36x 15x 2x 2x     13x           1x     12x 12x     36x 36x       36x 21x     15x     36x   5x 5x 1x     4x                 36x 3x 3x 2x       2x 2x           2x     2x     2x     2x 2x           3x                         36x   1x 1x 1x 1x     1x     1x 1x         1x 1x                           36x   4x 1x     3x           3x       3x 3x 3x         3x         3x     3x                           36x   2x   2x           2x   2x 2x     2x 2x     36x 24x       36x   36x                               36x                                                  
import { useCallback, useEffect, useMemo, useRef } from 'react';
 
import { useNavigation } from '@react-navigation/native';
import { NativeStackNavigationProp } from '@react-navigation/native-stack';
 
import {
  DATE_PICKER_TIME_SLOT,
  type DatePickerConfirmMeta,
  type DateRangeValue,
} from '@repo/ui/components/DatePicker';
import type { QuickSelectValue } from '@repo/ui/components/QuickSelect';
import { findMatchingQuickSelectValue } from '@repo/ui/components/QuickSelect/utils';
 
import {
  buildSummaryDateText,
  buildSummaryValueText,
} from '@/utils/timeOffSummary';
 
import {
  useTimeOffActionsSelector,
  useTimeOffStateSelector,
} from '../../TimeOff/context';
import { TimeOffStackParamList, TimeOffStep } from '../../TimeOff/types';
import { isDisabledTimeOffDate, normalizeDateValue } from '../utils';
 
import {
  getDraftSlotState,
  getTimeSlotOrDefault,
  isSameQuickSelectValue,
  toDatePickerRange,
  toDateSelectionValue,
} from './helpers';
import { useChooseDateSelectionState } from './useChooseDateSelectionState';
import { useQuickSelectOptions } from './useQuickSelectOptions';
 
const isTodaySingleDaySelection = (value: QuickSelectValue) => {
  Iif (!value.startDate || !value.endDate) {
    return false;
  }
 
  const isSingleDay =
    value.startDate.toDateString() === value.endDate.toDateString();
  if (!isSingleDay) {
    return false;
  }
 
  return value.startDate.toDateString() === new Date().toDateString();
};
 
export const useChooseDate = () => {
  const navigation =
    useNavigation<NativeStackNavigationProp<TimeOffStackParamList>>();
  const form = useTimeOffStateSelector(state => state.form);
  const isDatePickerOpen = useTimeOffStateSelector(
    state => state.isDatePickerOpen,
  );
  const changeDate = useTimeOffActionsSelector(actions => actions.changeDate);
  const setDatePickerOpen = useTimeOffActionsSelector(
    actions => actions.setDatePickerOpen,
  );
 
  const {
    holidays,
    makeUpWorkdays,
    quickSelectOptions,
    defaultSuggestedValue,
  } = useQuickSelectOptions();
 
  const committedSelection = useMemo<QuickSelectValue | null>(() => {
    if (!form.start || !form.end) {
      return null;
    }
 
    return {
      startDate: form.start,
      endDate: form.end,
      timeSlot: getTimeSlotOrDefault(form.start, form.end),
    };
  }, [form.end, form.start]);
 
  const firstVisibleQuickSelectValue = useMemo(
    () => quickSelectOptions[0]?.value || defaultSuggestedValue,
    [defaultSuggestedValue, quickSelectOptions],
  );
  const initialSelection = useMemo(() => {
    if (!committedSelection) {
      return firstVisibleQuickSelectValue;
    }
 
    const matchedCommittedSelection = findMatchingQuickSelectValue(
      committedSelection,
      quickSelectOptions,
    );
    if (matchedCommittedSelection) {
      return matchedCommittedSelection;
    }
 
    if (isTodaySingleDaySelection(committedSelection)) {
      const matchedToday = findMatchingQuickSelectValue(
        committedSelection,
        quickSelectOptions,
      );
      Iif (matchedToday) {
        return matchedToday;
      }
    }
 
    return committedSelection;
  }, [committedSelection, firstVisibleQuickSelectValue, quickSelectOptions]);
 
  const {
    selectedValue,
    datePickerValue,
    datePickerTimeSlot,
    datePickerRangeStartTimeSlot,
    datePickerRangeEndTimeSlot,
    datePickerActiveRangeSelection,
    setSelectedValue,
    setDatePickerValue,
    setDatePickerTimeSlot,
    setDatePickerRangeStartTimeSlot,
    setDatePickerRangeEndTimeSlot,
    setDatePickerActiveRangeSelection,
    syncSelectionState,
  } = useChooseDateSelectionState({
    initialSelectedValue: initialSelection,
  });
 
  const initializedDefaultRef = useRef(false);
  const lastCommittedSelectionRef = useRef<QuickSelectValue | null>(null);
  const latestDatePickerDraftRef = useRef({
    value: datePickerValue,
    timeSlot: datePickerTimeSlot,
  });
 
  useEffect(() => {
    latestDatePickerDraftRef.current = {
      value: datePickerValue,
      timeSlot: datePickerTimeSlot,
    };
  }, [datePickerTimeSlot, datePickerValue]);
 
  // One-time default commit when the form is empty.
  useEffect(() => {
    if (initializedDefaultRef.current) {
      return;
    }
 
    if (committedSelection) {
      initializedDefaultRef.current = true;
      return;
    }
 
    Eif (
      firstVisibleQuickSelectValue.startDate &&
      firstVisibleQuickSelectValue.endDate
    ) {
      syncSelectionState(firstVisibleQuickSelectValue);
      changeDate(
        firstVisibleQuickSelectValue.startDate,
        firstVisibleQuickSelectValue.endDate,
      );
    }
 
    initializedDefaultRef.current = true;
  }, [
    changeDate,
    committedSelection,
    firstVisibleQuickSelectValue,
    syncSelectionState,
  ]);
 
  // Keep local selection aligned with committed form value.
  useEffect(() => {
    if (!committedSelection) {
      lastCommittedSelectionRef.current = null;
      return;
    }
 
    if (
      isSameQuickSelectValue(
        lastCommittedSelectionRef.current,
        committedSelection,
      )
    ) {
      return;
    }
 
    syncSelectionState(committedSelection);
    lastCommittedSelectionRef.current = committedSelection;
  }, [committedSelection, syncSelectionState]);
 
  const quickSelectValue = useMemo(() => {
    const matched = findMatchingQuickSelectValue(
      selectedValue,
      quickSelectOptions,
    );
    if (matched) {
      return matched;
    }
 
    return null;
  }, [quickSelectOptions, selectedValue]);
 
  const disabledDates = useCallback(
    (date: unknown) => {
      const normalizedDate = normalizeDateValue(date);
      if (!normalizedDate) {
        return false;
      }
 
      return isDisabledTimeOffDate({
        date: normalizedDate,
        holidays,
        makeUpWorkdays,
      });
    },
    [holidays, makeUpWorkdays],
  );
 
  const toggleDatePicker = useCallback(() => {
    const next = !isDatePickerOpen;
    if (next) {
      const normalizedSelectedValue = disabledDates(selectedValue.startDate)
        ? toDateSelectionValue(null, null, DATE_PICKER_TIME_SLOT.ALL_DAY)
        : selectedValue;
 
      setDatePickerValue(toDatePickerRange(normalizedSelectedValue));
      const draftSlotState = getDraftSlotState(
        normalizedSelectedValue.startDate,
        normalizedSelectedValue.endDate,
        normalizedSelectedValue.timeSlot,
      );
 
      setDatePickerTimeSlot(
        draftSlotState.timeSlot || DATE_PICKER_TIME_SLOT.ALL_DAY,
      );
      setDatePickerRangeStartTimeSlot(
        draftSlotState.rangeStartTimeSlot || DATE_PICKER_TIME_SLOT.ALL_DAY,
      );
      setDatePickerRangeEndTimeSlot(
        draftSlotState.rangeEndTimeSlot || DATE_PICKER_TIME_SLOT.ALL_DAY,
      );
      setDatePickerActiveRangeSelection(draftSlotState.activeRangeSelection);
      latestDatePickerDraftRef.current = {
        value: toDatePickerRange(normalizedSelectedValue),
        timeSlot: draftSlotState.timeSlot || DATE_PICKER_TIME_SLOT.ALL_DAY,
      };
    }
 
    setDatePickerOpen(next);
  }, [
    disabledDates,
    isDatePickerOpen,
    selectedValue,
    setDatePickerActiveRangeSelection,
    setDatePickerOpen,
    setDatePickerRangeEndTimeSlot,
    setDatePickerRangeStartTimeSlot,
    setDatePickerTimeSlot,
    setDatePickerValue,
  ]);
 
  const handleChangeQuickSelect = useCallback(
    (value: QuickSelectValue) => {
      setSelectedValue(value);
      setDatePickerValue(toDatePickerRange(value));
      setDatePickerTimeSlot(value.timeSlot || DATE_PICKER_TIME_SLOT.ALL_DAY);
      setDatePickerRangeStartTimeSlot(
        value.timeSlot || DATE_PICKER_TIME_SLOT.ALL_DAY,
      );
      setDatePickerRangeEndTimeSlot(
        value.timeSlot || DATE_PICKER_TIME_SLOT.ALL_DAY,
      );
      setDatePickerActiveRangeSelection('start');
      latestDatePickerDraftRef.current = {
        value: toDatePickerRange(value),
        timeSlot: value.timeSlot || DATE_PICKER_TIME_SLOT.ALL_DAY,
      };
 
      Eif (value.startDate && value.endDate) {
        changeDate(value.startDate, value.endDate);
      }
    },
    [
      changeDate,
      setDatePickerActiveRangeSelection,
      setDatePickerRangeEndTimeSlot,
      setDatePickerRangeStartTimeSlot,
      setDatePickerTimeSlot,
      setDatePickerValue,
      setSelectedValue,
    ],
  );
 
  const handleSelectDate = useCallback(
    (value: DateRangeValue | Date | null, meta?: DatePickerConfirmMeta) => {
      if (!value || typeof value !== 'object' || !('startDate' in value)) {
        return;
      }
 
      const draftSlotState = getDraftSlotState(
        value.startDate,
        value.endDate,
        meta?.timeSlot || DATE_PICKER_TIME_SLOT.ALL_DAY,
      );
      const nextActiveTimeSlot =
        meta?.timeSlot ||
        draftSlotState.timeSlot ||
        DATE_PICKER_TIME_SLOT.ALL_DAY;
 
      setDatePickerValue(value);
      setDatePickerTimeSlot(nextActiveTimeSlot);
      setDatePickerRangeStartTimeSlot(
        meta?.rangeStartTimeSlot ||
          draftSlotState.rangeStartTimeSlot ||
          DATE_PICKER_TIME_SLOT.ALL_DAY,
      );
      setDatePickerRangeEndTimeSlot(
        meta?.rangeEndTimeSlot ||
          draftSlotState.rangeEndTimeSlot ||
          DATE_PICKER_TIME_SLOT.ALL_DAY,
      );
      setDatePickerActiveRangeSelection(
        meta?.activeRangeSelection || draftSlotState.activeRangeSelection,
      );
      latestDatePickerDraftRef.current = {
        value,
        timeSlot: nextActiveTimeSlot,
      };
    },
    [
      setDatePickerActiveRangeSelection,
      setDatePickerRangeEndTimeSlot,
      setDatePickerRangeStartTimeSlot,
      setDatePickerTimeSlot,
      setDatePickerValue,
    ],
  );
 
  const handleConfirm = useCallback(() => {
    const { value: latestDatePickerValue, timeSlot: latestDatePickerTimeSlot } =
      latestDatePickerDraftRef.current;
 
    const nextSelectedValue = {
      startDate: latestDatePickerValue.startDate,
      endDate: latestDatePickerValue.endDate,
      timeSlot: latestDatePickerTimeSlot,
    };
 
    setSelectedValue(nextSelectedValue);
 
    Eif (nextSelectedValue.startDate && nextSelectedValue.endDate) {
      changeDate(nextSelectedValue.startDate, nextSelectedValue.endDate);
    }
 
    navigation.navigate(TimeOffStep.REASON);
    setDatePickerOpen(false);
  }, [changeDate, navigation, setDatePickerOpen, setSelectedValue]);
 
  const summaryDateText = useMemo(
    () => buildSummaryDateText(selectedValue.startDate),
    [selectedValue.startDate],
  );
 
  const summaryValueText = useMemo(
    () =>
      buildSummaryValueText({
        startDate: selectedValue.startDate,
        endDate: selectedValue.endDate,
        timeSlot: selectedValue.timeSlot || undefined,
        holidays,
        makeUpWorkdays,
      }),
    [
      holidays,
      makeUpWorkdays,
      selectedValue.endDate,
      selectedValue.startDate,
      selectedValue.timeSlot,
    ],
  );
 
  return {
    state: {
      isOpenDatePicker: isDatePickerOpen,
      selectedValue,
      quickSelectValue,
      quickSelectOptions,
      datePickerValue,
      datePickerTimeSlot,
      datePickerRangeStartTimeSlot,
      datePickerRangeEndTimeSlot,
      datePickerActiveRangeSelection,
      summaryDateText,
      summaryValueText,
    },
    calendar: {
      disabledDates,
    },
    actions: {
      toggleDatePicker,
      handleChangeQuickSelect,
      handleSelectDate,
      handleConfirm,
    },
  };
};