File size: 842 Bytes
929b27b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { Conference } from "@/types/conference";
import { getDeadlineInLocalTime } from './dateUtils';

/**
 * Sort conferences by their adjusted deadline (accounting for timezone)
 */
export function sortConferencesByDeadline(conferences: Conference[]): Conference[] {
  return [...conferences].sort((a, b) => {
    const aDeadline = getDeadlineInLocalTime(a.deadline, a.timezone);
    const bDeadline = getDeadlineInLocalTime(b.deadline, b.timezone);
    
    // If either date is invalid, place it later in the list
    if (!aDeadline || !bDeadline) {
      if (!aDeadline && !bDeadline) return 0;
      if (!aDeadline) return 1;
      if (!bDeadline) return -1;
    }
    
    // Both dates are valid, compare them
    if (aDeadline && bDeadline) {
      return aDeadline.getTime() - bDeadline.getTime();
    }
    
    return 0;
  });
}