ai-deadlines / src /utils /conferenceUtils.ts
nielsr's picture
nielsr HF staff
Update ICCV data, sort chronologically
929b27b
raw
history blame
842 Bytes
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;
});
}