File size: 2,280 Bytes
73d7323
 
 
 
 
 
 
 
 
 
2c889a3
 
 
73d7323
 
 
 
2c889a3
73d7323
2c889a3
73d7323
2c889a3
 
73d7323
 
2c889a3
73d7323
 
 
 
 
 
2c889a3
73d7323
 
 
 
 
 
 
 
 
 
 
2c889a3
73d7323
 
 
 
2c889a3
 
 
 
73d7323
2c889a3
 
 
 
 
73d7323
2c889a3
 
 
 
73d7323
 
2c889a3
73d7323
 
 
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
import { parseISO, isValid } from 'date-fns';
import { zonedTimeToUtc, utcToZonedTime } from 'date-fns-tz';

export const getDeadlineInLocalTime = (deadline: string | undefined, timezone: string | undefined): Date | null => {
  if (!deadline || deadline === 'TBD') {
    return null;
  }
  
  try {
    // Parse the deadline string to a Date object
    const parsedDate = parseISO(deadline);
    
    if (!isValid(parsedDate)) {
      console.error('Invalid date parsed from deadline:', deadline);
      return null;
    }
    
    // Handle timezone normalization
    const normalizeTimezone = (tz: string | undefined): string => {
      if (!tz) return 'UTC';
      
      // Handle AoE (Anywhere on Earth) timezone
      if (tz === 'AoE') return '-12:00';
      
      // If it's already an IANA timezone, return as is
      if (!tz.toUpperCase().startsWith('UTC')) return tz;
      
      // Convert UTC±XX to proper format
      const match = tz.match(/^UTC([+-])(\d+)$/);
      if (match) {
        const [, sign, hours] = match;
        const paddedHours = hours.padStart(2, '0');
        return `${sign}${paddedHours}:00`;
      }
      
      // Handle special case of UTC+0/UTC-0
      if (tz === 'UTC+0' || tz === 'UTC-0' || tz === 'UTC+00' || tz === 'UTC-00') {
        return 'UTC';
      }
      
      return 'UTC';
    };

    const normalizedTimezone = normalizeTimezone(timezone);
    
    try {
      // Get user's local timezone
      const userTimezone = Intl.DateTimeFormat().resolvedOptions().timeZone;
      
      // We need to:
      // 1. Treat the parsed date as being in the conference's timezone
      // 2. Convert it to UTC
      // 3. Then convert to the user's local timezone
      
      // Convert from conference timezone to UTC
      const utcDate = zonedTimeToUtc(parsedDate, normalizedTimezone);
      
      // Convert from UTC to user's local timezone
      const localDate = utcToZonedTime(utcDate, userTimezone);
      
      return isValid(localDate) ? localDate : null;
    } catch (error) {
      console.error('Timezone conversion error:', error);
      return parsedDate; // Fall back to the parsed date if conversion fails
    }
  } catch (error) {
    console.error('Error processing deadline:', error);
    return null;
  }
};