Last active
December 4, 2023 02:42
-
-
Save nguyyentantai/b8412ace822ce86077dec7be136a221f to your computer and use it in GitHub Desktop.
Calculate Leave requests and Available time
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ======================================================================== | |
const MAX_LEAVE_DAYS = 21; | |
const maxLeaveHours = MAX_LEAVE_DAYS * 8; | |
const totalLeaves = {}; | |
const durations = document.querySelectorAll('td:nth-child(5)'); | |
durations.forEach((duration, idx) => { | |
if (duration.innerText.includes('hours')) { | |
const startDate = | |
document.querySelectorAll('td:nth-child(2)')[idx].innerText; | |
const year = startDate.split('/')[2]; | |
if (!totalLeaves[year]) { | |
Object.assign(totalLeaves, { | |
[year]: Number(duration.innerText.split(' ')[0]), | |
}); | |
} else { | |
Object.assign(totalLeaves, { | |
[year]: totalLeaves[year] + Number(duration.innerText.split(' ')[0]), | |
}); | |
} | |
} | |
}); | |
Object.keys(totalLeaves).forEach(year => { | |
const leaveDays = Math.floor(totalLeaves[year] / 8); | |
const availableDays = MAX_LEAVE_DAYS - leaveDays; | |
const availableHours = (maxLeaveHours - totalLeaves[year]) % 8; | |
console.log( | |
`Year: ${year}\n - Leave: ${leaveDays}\n - Available: ${availableDays} days, ${availableHours} hours` | |
); | |
}); | |
// ======================================================================== |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment