mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-15 05:48:42 +01:00
woaw stuff
This commit is contained in:
parent
d5dd9303b8
commit
27ae6acc87
1 changed files with 13 additions and 16 deletions
|
@ -168,32 +168,29 @@ module.exports = function (app, config, renderTemplate) {
|
|||
}
|
||||
|
||||
app.get('/calendar', (req, res) => {
|
||||
const queryDate = req.query.date ? new Date(req.query.date) : new Date();
|
||||
const weekOffset = parseInt(req.query.week) || 0;
|
||||
const queryDate = req.query.date ? new Date(req.query.date) : new Date();
|
||||
|
||||
const currentDate = new Date(queryDate);
|
||||
currentDate.setDate(currentDate.getDate() + weekOffset * 7);
|
||||
const year = queryDate.getFullYear();
|
||||
const month = queryDate.getMonth();
|
||||
|
||||
const year = currentDate.getFullYear();
|
||||
const month = currentDate.getMonth();
|
||||
const startOfWeek = new Date(currentDate);
|
||||
startOfWeek.setDate(currentDate.getDate() - currentDate.getDay());
|
||||
const firstDay = new Date(year, month, 1);
|
||||
const firstDayWeekday = firstDay.getDay();
|
||||
|
||||
const days = Array.from({ length: 7 }, (_, i) => {
|
||||
const day = new Date(startOfWeek);
|
||||
day.setDate(startOfWeek.getDate() + i);
|
||||
return day;
|
||||
const totalDays = new Date(year, month + 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 islamicYear = gregorianToIslamic(currentDate);
|
||||
const persianYear = gregorianToPersian(currentDate);
|
||||
const islamicYear = gregorianToIslamic(queryDate);
|
||||
const persianYear = gregorianToPersian(queryDate);
|
||||
|
||||
renderTemplate(res, req, "calendar.ejs", {
|
||||
year,
|
||||
islamicYear,
|
||||
persianYear,
|
||||
month,
|
||||
currentDate,
|
||||
currentDate: queryDate,
|
||||
days,
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue