File size: 11,600 Bytes
c09f67c | 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 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 | import type { RouterOutputs } from "@api/trpc/routers/_app";
import { tz } from "@date-fns/tz";
import { UTCDate, utc } from "@date-fns/utc";
import {
addDays,
addMinutes,
addSeconds,
differenceInSeconds,
eachDayOfInterval,
format,
isValid,
parse,
parseISO,
setHours,
setMinutes,
} from "date-fns";
import { parseDateAsUTC } from "./date";
export const NEW_EVENT_ID = "new-event";
// API Response type from the router
type ApiTrackerRecord =
RouterOutputs["trackerEntries"]["byDate"]["data"][number];
// Internal tracker record type with consistent Date handling
export interface TrackerRecord {
id: string;
date: string | null;
description: string | null;
duration: number | null;
start: Date;
stop: Date;
user: {
id: string;
fullName: string | null;
avatarUrl: string | null;
} | null;
trackerProject: {
id: string;
name: string;
currency: string | null;
rate: number | null;
customer: {
id: string;
name: string;
} | null;
} | null;
}
/**
* Creates a safe Date using UTCDate for better UTC handling
*/
export const createSafeDate = (
dateInput: string | Date | null | undefined,
fallback?: Date,
): Date => {
if (!dateInput) return fallback || new UTCDate();
if (typeof dateInput === "string") {
// Try parseISO first (handles ISO 8601 formats)
const date = parseISO(dateInput);
if (isValid(date)) {
return date;
}
// Try UTCDate constructor as final fallback
try {
const utcDate = utc(dateInput);
if (isValid(utcDate)) {
return new Date(utcDate.getTime());
}
} catch (error) {
console.warn("Date parsing failed:", error);
}
return fallback || new UTCDate();
}
return isValid(dateInput) ? dateInput : fallback || new UTCDate();
};
/**
* Format time from date with optional timezone support
*/
export const formatTimeFromDate = (
date: Date | string | null,
timezone?: string,
): string => {
const safeDate = createSafeDate(date);
if (timezone && timezone !== "UTC") {
try {
const createTZDate = tz(timezone);
const tzDate = createTZDate(safeDate);
return format(tzDate, "HH:mm");
} catch (error) {
console.warn("Timezone formatting failed:", error);
}
}
return format(safeDate, "HH:mm");
};
/**
* Parse time with midnight crossing support using timezone-aware parsing
*/
export const parseTimeWithMidnightCrossing = (
startTime: string,
stopTime: string,
baseDate: Date,
timezone?: string,
): { start: Date; stop: Date; duration: number } => {
if (timezone && timezone !== "UTC") {
try {
const createTZDate = tz(timezone);
// Create timezone-aware base date
const tzBaseDate = createTZDate(baseDate);
// Parse times in the timezone context
const startDate = parse(startTime, "HH:mm", tzBaseDate);
let stopDate = parse(stopTime, "HH:mm", tzBaseDate);
// If stop time is before start time, assume it's on the next day
if (stopDate < startDate) {
stopDate = addDays(stopDate, 1);
}
const duration = differenceInSeconds(stopDate, startDate);
return {
start: new Date(startDate.getTime()),
stop: new Date(stopDate.getTime()),
duration,
};
} catch (error) {
console.warn("Timezone time parsing failed:", error);
}
}
// Fallback to UTC parsing
const startDate = parse(startTime, "HH:mm", baseDate);
let stopDate = parse(stopTime, "HH:mm", baseDate);
// If stop time is before start time, assume it's on the next day
if (stopDate < startDate) {
stopDate = addDays(stopDate, 1);
}
const duration = differenceInSeconds(stopDate, startDate);
return { start: startDate, stop: stopDate, duration };
};
/**
* Get slot from date with timezone support (already updated)
*/
export const getSlotFromDate = (
date: Date | string | null,
timezone?: string,
): number => {
const safeDate = createSafeDate(date);
if (timezone && timezone !== "UTC") {
try {
// Use tz() function to create timezone-aware date
const createTZDate = tz(timezone);
const tzDate = createTZDate(safeDate);
return tzDate.getHours() * 4 + Math.floor(tzDate.getMinutes() / 15);
} catch (error) {
console.warn("TZDate slot calculation failed:", error);
// Fallback to browser timezone
}
}
// Fallback to browser timezone (for backward compatibility)
return safeDate.getHours() * 4 + Math.floor(safeDate.getMinutes() / 15);
};
/**
* Calculate duration between dates with timezone support
*/
export const calculateDuration = (
start: Date | string | null,
stop: Date | string | null,
): number => {
const startDate = createSafeDate(start);
const stopDate = createSafeDate(stop);
// If stop is before start, assume stop is on the next day
if (stopDate < startDate) {
const nextDayStop = addDays(stopDate, 1);
return differenceInSeconds(nextDayStop, startDate);
}
return differenceInSeconds(stopDate, startDate);
};
/**
* Format hour with timezone support
*/
export const formatHour = (
hour: number,
timeFormat?: number | null,
_timezone?: string,
) => {
// Create a simple date with the hour - no timezone conversion needed for labels
const date = new Date(2024, 0, 1, hour, 0, 0, 0); // Use arbitrary date, just set the hour
return format(date, timeFormat === 12 ? "hh:mm a" : "HH:mm");
};
/**
* Create new event with timezone-aware time creation
*/
export const createNewEvent = (
slot: number,
selectedProjectId: string | null,
selectedDate?: string | null,
timezone?: string,
): TrackerRecord => {
// Parse as UTC calendar date to avoid timezone shift
const baseDate = selectedDate ? parseDateAsUTC(selectedDate) : new UTCDate();
// Use the original date string directly if available
const dateStr = selectedDate || format(baseDate, "yyyy-MM-dd");
if (timezone && timezone !== "UTC") {
try {
const createTZDate = tz(timezone);
const tzBaseDate = createTZDate(baseDate);
const startDate = setMinutes(
setHours(tzBaseDate, Math.floor(slot / 4)),
(slot % 4) * 15,
);
const endDate = addMinutes(startDate, 15);
// When selectedDate is null, compute date from tzBaseDate (user's local date)
// to avoid UTC date mismatch (e.g., 11 PM local vs 4 AM UTC next day)
const tzDateStr = selectedDate || format(tzBaseDate, "yyyy-MM-dd");
return {
id: NEW_EVENT_ID,
date: tzDateStr,
description: null,
duration: 15 * 60, // 15 minutes in seconds
start: new Date(startDate.getTime()),
stop: new Date(endDate.getTime()),
user: null,
trackerProject: selectedProjectId
? {
id: selectedProjectId,
name: "",
currency: null,
rate: null,
customer: null,
}
: null,
};
} catch (error) {
console.warn("Timezone event creation failed:", error);
}
}
// Fallback to UTC creation
const startDate = setMinutes(
setHours(baseDate, Math.floor(slot / 4)),
(slot % 4) * 15,
);
const endDate = addMinutes(startDate, 15);
return {
id: NEW_EVENT_ID,
date: dateStr,
description: null,
duration: 15 * 60, // 15 minutes in seconds
start: startDate,
stop: endDate,
user: null,
trackerProject: selectedProjectId
? {
id: selectedProjectId,
name: "",
currency: null,
rate: null,
customer: null,
}
: null,
};
};
// Tracker record transformation
export const transformApiRecord = (
apiRecord: ApiTrackerRecord,
selectedDate: string | null,
): TrackerRecord => {
const start = apiRecord.start
? parseISO(apiRecord.start)
: parseISO(`${apiRecord.date || selectedDate}T09:00:00`);
const stop = apiRecord.stop
? parseISO(apiRecord.stop)
: addSeconds(start, apiRecord.duration || 0);
return {
id: apiRecord.id,
date: apiRecord.date,
description: apiRecord.description,
duration: apiRecord.duration,
start: isValid(start) ? start : new Date(),
stop: isValid(stop)
? stop
: addMinutes(isValid(start) ? start : new Date(), 15),
user: apiRecord.user,
trackerProject: apiRecord.trackerProject
? {
id: apiRecord.trackerProject.id,
name: apiRecord.trackerProject.name || "",
currency: apiRecord.trackerProject.currency,
rate: apiRecord.trackerProject.rate,
customer: apiRecord.trackerProject.customer,
}
: null,
};
};
export const updateEventTime = (
event: TrackerRecord,
start: Date,
stop: Date,
): TrackerRecord => {
return {
...event,
start: isValid(start) ? start : event.start,
stop: isValid(stop) ? stop : event.stop,
duration: calculateDuration(start, stop),
};
};
// Date range utilities
export function sortDates(dates: string[]) {
return dates.sort((a, b) => parseISO(a).getTime() - parseISO(b).getTime());
}
export function getTrackerDates(
range: string[] | null,
selectedDate: string | null,
): Date[] {
if (range) {
// Parse as UTC calendar dates to avoid timezone shift
return sortDates(range).map((dateString) => parseDateAsUTC(dateString));
}
if (selectedDate) {
// Parse as UTC calendar date to avoid timezone shift
return [parseDateAsUTC(selectedDate)];
}
return [new Date()];
}
export const getDates = (
selectedDate: string | null,
sortedRange: string[] | null,
): string[] => {
if (selectedDate) return [selectedDate];
if (sortedRange && sortedRange.length === 2) {
const [start, end] = sortedRange;
if (start && end) {
return eachDayOfInterval({
start: parseISO(start),
end: parseISO(end),
}).map((date) => format(date, "yyyy-MM-dd"));
}
}
return [];
};
// Validation utilities
export const isValidTimeSlot = (slot: number): boolean => {
return slot >= 0 && slot < 96; // 24 hours * 4 slots per hour
};
export const isValidDateString = (dateStr: string): boolean => {
return isValid(parseISO(dateStr));
};
// Form data conversion utilities
export const convertToFormData = (record: TrackerRecord) => {
return {
id: record.id === NEW_EVENT_ID ? undefined : record.id,
start: formatTimeFromDate(record.start),
stop: formatTimeFromDate(record.stop),
projectId: record.trackerProject?.id || "",
description: record.description || "",
duration: calculateDuration(record.start, record.stop),
};
};
export const convertFromFormData = (
formData: {
id?: string;
start: string;
stop: string;
projectId: string;
assignedId?: string;
description?: string;
duration: number;
},
baseDate: Date,
dates: string[],
timezone?: string, // Add timezone parameter
): {
id?: string;
start: string;
stop: string;
dates: string[];
assignedId: string | null;
projectId: string;
description: string | null;
duration: number;
} => {
const {
start: startDate,
stop: stopDate,
duration,
} = parseTimeWithMidnightCrossing(
formData.start,
formData.stop,
baseDate,
timezone,
);
return {
id: formData.id === NEW_EVENT_ID ? undefined : formData.id,
start: startDate.toISOString(),
stop: stopDate.toISOString(),
dates,
assignedId: formData.assignedId || null,
projectId: formData.projectId,
description: formData.description || null,
duration: duration,
};
};
|