-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalyze.js
32 lines (25 loc) · 1.19 KB
/
analyze.js
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
const { format, parse } = require('date-fns');
const { isWeekend, eachDayOfInterval, parseISO } = require('date-fns');
// Function to calculate remaining working days
function getRemainingWorkingDays(startDate, endDate, expenses, excludeDays = []) {
const formatStr = "dd.MM.yy";
const expenseFormatStr = "dd/MM/y";
const parseDate = (date, formatStr) => parse(date, formatStr, new Date());
// Parse start and end dates
const start = parseDate(startDate, formatStr);
const end = parseDate(endDate, formatStr);
// Parse expenses and exclusion days
const expenseDates = new Set(expenses.map((e) => format(parseDate(e.date, expenseFormatStr), formatStr)));
const excludedDates = new Set(excludeDays.map((d) => format(parseDate(d, formatStr), formatStr)));
// Get all working days in the range
const workingDays = eachDayOfInterval({ start, end })
.filter((date) => !isWeekend(date))
.map((date) => format(date, formatStr));
// Filter out dates with expenses or excluded dates
const remainingDays = workingDays.filter(
(day) => !expenseDates.has(day) && !excludedDates.has(day)
);
return remainingDays
}
// Export the function
module.exports = { getRemainingWorkingDays };