1
0
Fork 0
mirror of https://codeberg.org/ashley/poke.git synced 2024-11-17 01:34:43 -05:00
This commit is contained in:
ashley 2024-10-04 14:48:10 +00:00
parent 3c2564f170
commit 9cdc85ca91

View file

@ -171,28 +171,33 @@ app.get('/calendar', (req, res) => {
const queryDate = req.query.date ? new Date(req.query.date) : new Date();
const year = queryDate.getFullYear();
const month = queryDate.getMonth();
const month = queryDate.getMonth(); // 0 (January) to 11 (December)
const firstDay = new Date(year, month, 1);
const firstDayWeekday = firstDay.getDay();
const monthOffset = parseInt(req.query.month) || 0; // Get month offset from query
const newDate = new Date(year, month + monthOffset, 1); // Adjust the month
const newYear = newDate.getFullYear();
const newMonth = newDate.getMonth();
const totalDays = new Date(year, month + 1, 0).getDate();
const firstDay = new Date(newYear, newMonth, 1);
const firstDayWeekday = firstDay.getDay(); // Day of the week (0-6)
const totalDays = new Date(newYear, newMonth + 1, 0).getDate();
const days = Array.from({ length: 42 }, (_, i) => {
const day = new Date(year, month, i - firstDayWeekday + 1);
return (day.getMonth() === month) ? day : null;
const day = new Date(newYear, newMonth, i - firstDayWeekday + 1);
return (day.getMonth() === newMonth) ? day : null;
});
const islamicYear = gregorianToIslamic(queryDate);
const persianYear = gregorianToPersian(queryDate);
const islamicYear = gregorianToIslamic(newDate);
const persianYear = gregorianToPersian(newDate);
renderTemplate(res, req, "calendar.ejs", {
year,
year: newYear,
islamicYear,
persianYear,
currentDate: queryDate,
currentDate: newDate,
days,
month,
month: newMonth,
});
});