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 | 1x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 6x 6x 6x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 1x 1x 5x 5x 1x 4x 1x 3x 5x | import React, { memo, useCallback, useEffect, useMemo } from 'react';
import { ActivityIndicator, ScrollView, Text, View } from 'react-native';
import { useQueryClient } from '@tanstack/react-query';
import { Button } from '@repo/ui/components/Button';
import { makeStyles } from '@repo/ui/themes/makeStyles';
import { textStyles } from '@repo/ui/themes/typography';
import { USER_QUERY_KEYS } from '@repo/hooks';
import { RequestFor } from '@repo/hooks/useUserQueries';
import { useBlockBackNavigation } from '@repo/utils/useBlockBackNavigation';
import { useTimeOffExtraUsers } from '@/hooks/useTimeOffEmployees';
import {
useTimeOffActionsSelector,
useTimeOffStateSelector,
} from '../TimeOff/context';
import { useTimeOffRuntime } from '../TimeOff/runtime';
import {
useCreateTimeOffRequest,
usePreviewPeople,
usePreviewSummary,
} from './hooks';
const Preview = () => {
const queryClient = useQueryClient();
const styles = useStyles();
const {
actions: { onSubmitSuccess, onSubmitError, onSubmittingChange },
} = useTimeOffRuntime();
const form = useTimeOffStateSelector(state => state.form);
const isOnBehalf = useTimeOffStateSelector(state => state.isOnBehalf);
const setSubmitting = useTimeOffActionsSelector(
actions => actions.setSubmitting,
);
const summaryParams = useMemo(
() => ({
startDate: form.start,
endDate: form.end,
reason: form.note,
}),
[form.start, form.end, form.note],
);
const { safeReason, daysOff } = usePreviewSummary(summaryParams);
const peopleParams = useMemo(
() => ({
approvers: form.approvers,
observers: form.observers,
}),
[form.approvers, form.observers],
);
const { approversPreview, observersPreview } = usePreviewPeople(peopleParams);
const extraUsersParams = useMemo(
() => ({ disabled: !isOnBehalf }),
[isOnBehalf],
);
const {
data: extraUserOptions = [],
isLoading: isLoadingExtraUsers,
isError: isErrorExtraUsers,
} = useTimeOffExtraUsers(extraUsersParams);
const onBehalfUser = useMemo(() => {
const user = extraUserOptions.find(item => item.email === form.requester);
return { name: user?.name || '' };
}, [extraUserOptions, form.requester]);
const approversNames = useMemo(
() => approversPreview.map(a => a.name),
[approversPreview],
);
const observersNames = useMemo(
() => observersPreview.map(o => o.name),
[observersPreview],
);
const formattedDate = useMemo(() => {
Iif (!form.start) return '';
const weekday = form.start.toLocaleDateString('en-US', { weekday: 'long' });
const month = form.start.toLocaleDateString('en-US', { month: 'long' });
const day = form.start.getDate();
const session = form.start.getHours() < 12 ? 'morning' : 'afternoon';
const year = form.start.getFullYear();
const currentYear = new Date().getFullYear();
const yearStr = year !== currentYear ? `, ${year}` : '';
Eif (daysOff === 1) {
return `${weekday}, ${month} ${day}${yearStr}`;
}
return `${weekday} ${session}, ${month} ${day}${yearStr}`;
}, [form.start, daysOff]);
const renderNames = useCallback(
(names: string[]) => {
Iif (names.length === 0) return null;
Eif (names.length === 1) {
return <Text style={styles.highlightText}>{names[0]}</Text>;
}
if (names.length === 2) {
return (
<>
<Text style={styles.highlightText}>{names[0]}</Text>
{' and '}
<Text style={styles.highlightText}>{names[1]}</Text>
</>
);
}
return (
<>
{names.slice(0, -1).map((name, index) => (
<React.Fragment key={`name-${index}`}>
{index > 0 && ', '}
<Text style={styles.highlightText}>{name}</Text>
</React.Fragment>
))}
{', and '}
<Text style={styles.highlightText}>{names[names.length - 1]}</Text>
</>
);
},
[styles.highlightText],
);
const daysLabel = useMemo(() => {
const rounded = daysOff % 1 === 0 ? daysOff.toString() : daysOff.toFixed(1);
return `${rounded} days`;
}, [daysOff]);
const isMultiDay = daysOff > 1;
const handleCreateRequestSuccess = useCallback(() => {
queryClient.invalidateQueries({
queryKey: [
USER_QUERY_KEYS.MY_REQUESTS,
isOnBehalf ? RequestFor.ON_BEHALF : RequestFor.ME,
'time-off',
'all',
],
});
onSubmitSuccess();
}, [queryClient, isOnBehalf, onSubmitSuccess]);
const { mutate: createRequest, isPending: isSubmitting } =
useCreateTimeOffRequest(handleCreateRequestSuccess, onSubmitError);
useEffect(() => {
setSubmitting(isSubmitting);
onSubmittingChange?.(isSubmitting);
return () => {
setSubmitting(false);
onSubmittingChange?.(false);
};
}, [isSubmitting, setSubmitting, onSubmittingChange]);
const handleSubmit = useCallback(() => {
Iif (!form.start || !form.end) {
return;
}
createRequest({
category: 'time-off',
to: form.approvers,
cc: form.observers,
...(form.requester && isOnBehalf && { requester: form.requester }),
data: {
start: form.start.toISOString(),
end: form.end.toISOString(),
note: form.note,
},
});
}, [
createRequest,
form.approvers,
form.end,
form.note,
form.observers,
form.requester,
form.start,
isOnBehalf,
]);
useBlockBackNavigation(isSubmitting, {
skipGestureHandling: true,
});
if (isLoadingExtraUsers) {
return (
<View
style={styles.loaderContainer}
testID="preview-loader"
accessibilityRole="progressbar"
accessibilityLabel="Loading preview"
>
<ActivityIndicator />
</View>
);
}
if (isErrorExtraUsers) {
return (
<View style={styles.loaderContainer}>
<Text accessibilityRole="alert">Something went wrong</Text>
</View>
);
}
return (
<>
<ScrollView
style={styles.container}
contentContainerStyle={styles.content}
>
{isMultiDay ? (
<Text style={styles.bodyText}>
{'I’d like to request time off'}
{isOnBehalf && !!onBehalfUser.name && ' for '}
{isOnBehalf && !!onBehalfUser.name && (
<Text style={styles.highlightText}>{onBehalfUser.name}</Text>
)}
{' starting '}
<Text style={styles.highlightText}>{formattedDate}</Text>
{', for '}
<Text style={styles.highlightText}>{daysLabel}</Text>
{', due to '}
<Text style={styles.highlightText}>{safeReason}</Text>
{'.'}
</Text>
) : (
<Text style={styles.bodyText}>
{'I’d like to request time off'}
{isOnBehalf && !!onBehalfUser.name && ' for '}
{isOnBehalf && !!onBehalfUser.name && (
<Text style={styles.highlightText}>{onBehalfUser.name}</Text>
)}
{' on '}
<Text style={styles.highlightText}>{formattedDate}</Text>
{', due to '}
<Text style={styles.highlightText}>{safeReason}</Text>
{'.'}
</Text>
)}
<Text style={styles.bodyText}>
{'This request will be approved by '}
{renderNames(approversNames)}
{observersNames.length > 0 && ', with notifications sent to '}
{observersNames.length > 0 && renderNames(observersNames)}
{'.'}
</Text>
<Text style={styles.bodyText}>{'Thanks in advance!'}</Text>
</ScrollView>
<Button
style={styles.submitBtn}
isLoading={isSubmitting}
onPress={handleSubmit}
testID="submit-btn"
accessibilityLabel="Submit time off request"
>
Submit
</Button>
</>
);
};
export default memo(Preview);
const useStyles = makeStyles(theme => ({
container: {
flex: 1,
paddingTop: theme.metrics.spacing[6],
},
content: {
paddingHorizontal: theme.metrics.spacing[4],
gap: theme.metrics.spacing[6.5],
paddingBottom: theme.metrics.spacing[6],
},
bodyText: {
...textStyles.content.light,
fontSize: theme.metrics.textSize[16],
lineHeight: theme.metrics.spacing[6],
},
highlightText: {
...textStyles.content.semiBold,
},
submitBtn: {
backgroundColor: theme.colors.slate97,
alignSelf: 'center',
width: '90%',
height: 50,
borderRadius: 50,
marginBottom: theme.metrics.spacing[3],
},
loaderContainer: {
flex: 1,
alignItems: 'center',
marginTop: 32,
},
}));
|