mirror of
https://github.com/zadam/trilium.git
synced 2025-10-19 12:02:01 +08:00
fix(calendar): sunday ISO dayjs mismatch
This commit is contained in:
parent
62e978068a
commit
b25ab3a988
1 changed files with 62 additions and 62 deletions
|
@ -12,7 +12,7 @@ import isoWeek from "dayjs/plugin/isoWeek.js";
|
||||||
import utc from "dayjs/plugin/utc.js";
|
import utc from "dayjs/plugin/utc.js";
|
||||||
import isSameOrAfter from "dayjs/plugin/isSameOrAfter.js";
|
import isSameOrAfter from "dayjs/plugin/isSameOrAfter.js";
|
||||||
import "../../stylesheets/calendar.css";
|
import "../../stylesheets/calendar.css";
|
||||||
import type { AttributeRow } from "@triliumnext/commons";
|
import type { AttributeRow, OptionDefinitions } from "@triliumnext/commons";
|
||||||
|
|
||||||
dayjs.extend(utc);
|
dayjs.extend(utc);
|
||||||
dayjs.extend(isSameOrAfter);
|
dayjs.extend(isSameOrAfter);
|
||||||
|
@ -71,7 +71,15 @@ const DROPDOWN_TPL = `
|
||||||
<div class="calendar-body" data-calendar-area="month"></div>
|
<div class="calendar-body" data-calendar-area="month"></div>
|
||||||
</div>`;
|
</div>`;
|
||||||
|
|
||||||
const DAYS_OF_WEEK = [t("calendar.sun"), t("calendar.mon"), t("calendar.tue"), t("calendar.wed"), t("calendar.thu"), t("calendar.fri"), t("calendar.sat")];
|
const DAYS_OF_WEEK = [
|
||||||
|
t("calendar.sun"),
|
||||||
|
t("calendar.mon"),
|
||||||
|
t("calendar.tue"),
|
||||||
|
t("calendar.wed"),
|
||||||
|
t("calendar.thu"),
|
||||||
|
t("calendar.fri"),
|
||||||
|
t("calendar.sat")
|
||||||
|
];
|
||||||
|
|
||||||
interface DateNotesForMonth {
|
interface DateNotesForMonth {
|
||||||
[date: string]: string;
|
[date: string]: string;
|
||||||
|
@ -92,7 +100,8 @@ export default class CalendarWidget extends RightDropdownButtonWidget {
|
||||||
private $nextYear!: JQuery<HTMLElement>;
|
private $nextYear!: JQuery<HTMLElement>;
|
||||||
private $previousYear!: JQuery<HTMLElement>;
|
private $previousYear!: JQuery<HTMLElement>;
|
||||||
private monthDropdown!: Dropdown;
|
private monthDropdown!: Dropdown;
|
||||||
private firstDayOfWeek!: number;
|
// stored in ISO 1–7
|
||||||
|
private firstDayOfWeekISO!: number;
|
||||||
private weekCalculationOptions!: WeekCalculationOptions;
|
private weekCalculationOptions!: WeekCalculationOptions;
|
||||||
private activeDate: Dayjs | null = null;
|
private activeDate: Dayjs | null = null;
|
||||||
private todaysDate!: Dayjs;
|
private todaysDate!: Dayjs;
|
||||||
|
@ -128,6 +137,7 @@ export default class CalendarWidget extends RightDropdownButtonWidget {
|
||||||
this.createMonth();
|
this.createMonth();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.$next = this.$dropdownContent.find('[data-calendar-toggle="next"]');
|
this.$next = this.$dropdownContent.find('[data-calendar-toggle="next"]');
|
||||||
this.$next.on("click", () => {
|
this.$next.on("click", () => {
|
||||||
this.date = this.date.add(1, 'month');
|
this.date = this.date.add(1, 'month');
|
||||||
|
@ -146,23 +156,24 @@ export default class CalendarWidget extends RightDropdownButtonWidget {
|
||||||
this.date = this.date.year(parseInt(target.value));
|
this.date = this.date.year(parseInt(target.value));
|
||||||
this.createMonth();
|
this.createMonth();
|
||||||
});
|
});
|
||||||
|
|
||||||
this.$nextYear = this.$dropdownContent.find('[data-calendar-toggle="nextYear"]');
|
this.$nextYear = this.$dropdownContent.find('[data-calendar-toggle="nextYear"]');
|
||||||
this.$nextYear.on("click", () => {
|
this.$nextYear.on("click", () => {
|
||||||
this.date = this.date.add(1, 'year');
|
this.date = this.date.add(1, 'year');
|
||||||
this.createMonth();
|
this.createMonth();
|
||||||
});
|
});
|
||||||
|
|
||||||
this.$previousYear = this.$dropdownContent.find('[data-calendar-toggle="previousYear"]');
|
this.$previousYear = this.$dropdownContent.find('[data-calendar-toggle="previousYear"]');
|
||||||
this.$previousYear.on("click", () => {
|
this.$previousYear.on("click", () => {
|
||||||
this.date = this.date.subtract(1, 'year');
|
this.date = this.date.subtract(1, 'year');
|
||||||
this.createMonth();
|
this.createMonth();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Date click
|
||||||
this.$dropdownContent.on("click", ".calendar-date", async (ev) => {
|
this.$dropdownContent.on("click", ".calendar-date", async (ev) => {
|
||||||
const date = $(ev.target).closest(".calendar-date").attr("data-calendar-date");
|
const date = $(ev.target).closest(".calendar-date").attr("data-calendar-date");
|
||||||
|
|
||||||
if (date) {
|
if (date) {
|
||||||
const note = await dateNoteService.getDayNote(date);
|
const note = await dateNoteService.getDayNote(date);
|
||||||
|
|
||||||
if (note) {
|
if (note) {
|
||||||
appContext.tabManager.getActiveContext()?.setNote(note.noteId);
|
appContext.tabManager.getActiveContext()?.setNote(note.noteId);
|
||||||
this.dropdown?.hide();
|
this.dropdown?.hide();
|
||||||
|
@ -170,10 +181,10 @@ export default class CalendarWidget extends RightDropdownButtonWidget {
|
||||||
toastService.showError(t("calendar.cannot_find_day_note"));
|
toastService.showError(t("calendar.cannot_find_day_note"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ev.stopPropagation();
|
ev.stopPropagation();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Week click
|
||||||
this.$dropdownContent.on("click", ".calendar-week-number", async (ev) => {
|
this.$dropdownContent.on("click", ".calendar-week-number", async (ev) => {
|
||||||
if (!this.weekNoteEnable) {
|
if (!this.weekNoteEnable) {
|
||||||
return;
|
return;
|
||||||
|
@ -220,23 +231,17 @@ export default class CalendarWidget extends RightDropdownButtonWidget {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const noteAttributes = await server.get<AttributeRow[]>(`notes/${noteId}/attributes`);
|
const noteAttributes = await server.get<AttributeRow[]>(`notes/${noteId}/attributes`);
|
||||||
|
this.weekNoteEnable = noteAttributes.some(a => a.name === 'enableWeekNote');
|
||||||
for (const attribute of noteAttributes) {
|
|
||||||
if (attribute.name === 'enableWeekNote') {
|
|
||||||
this.weekNoteEnable = true;
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
this.weekNoteEnable = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Store firstDayOfWeek as ISO (1–7)
|
||||||
manageFirstDayOfWeek() {
|
manageFirstDayOfWeek() {
|
||||||
this.firstDayOfWeek = options.getInt("firstDayOfWeek") || 0;
|
const rawFirstDayOfWeek = options.getInt("firstDayOfWeek") || 0;
|
||||||
|
this.firstDayOfWeekISO = rawFirstDayOfWeek === 0 ? 7 : rawFirstDayOfWeek;
|
||||||
|
|
||||||
// Generate the list of days of the week taking into consideration the user's selected first day of week.
|
|
||||||
let localeDaysOfWeek = [...DAYS_OF_WEEK];
|
let localeDaysOfWeek = [...DAYS_OF_WEEK];
|
||||||
const daysToBeAddedAtEnd = localeDaysOfWeek.splice(0, this.firstDayOfWeek);
|
const shifted = localeDaysOfWeek.splice(0, rawFirstDayOfWeek);
|
||||||
localeDaysOfWeek = ['', ...localeDaysOfWeek, ...daysToBeAddedAtEnd];
|
localeDaysOfWeek = ['', ...localeDaysOfWeek, ...shifted];
|
||||||
this.$weekHeader.html(localeDaysOfWeek.map((el) => `<span>${el}</span>`).join(''));
|
this.$weekHeader.html(localeDaysOfWeek.map((el) => `<span>${el}</span>`).join(''));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -247,8 +252,15 @@ export default class CalendarWidget extends RightDropdownButtonWidget {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getWeekStartDate(date: Dayjs): Dayjs {
|
||||||
|
const currentISO = date.isoWeekday();
|
||||||
|
const diff = (currentISO - this.firstDayOfWeekISO + 7) % 7;
|
||||||
|
return date.clone().subtract(diff, "day").startOf("day");
|
||||||
|
}
|
||||||
|
|
||||||
getWeekNumber(date: Dayjs): number {
|
getWeekNumber(date: Dayjs): number {
|
||||||
return date.isoWeek();
|
const weekStart = this.getWeekStartDate(date);
|
||||||
|
return weekStart.isoWeek();
|
||||||
}
|
}
|
||||||
|
|
||||||
async dropdownShown() {
|
async dropdownShown() {
|
||||||
|
@ -258,32 +270,25 @@ export default class CalendarWidget extends RightDropdownButtonWidget {
|
||||||
}
|
}
|
||||||
|
|
||||||
init(activeDate: string | null) {
|
init(activeDate: string | null) {
|
||||||
// attaching time fixes local timezone handling
|
|
||||||
this.activeDate = activeDate ? dayjs(`${activeDate}T12:00:00`) : null;
|
this.activeDate = activeDate ? dayjs(`${activeDate}T12:00:00`) : null;
|
||||||
this.todaysDate = dayjs();
|
this.todaysDate = dayjs();
|
||||||
this.date = dayjs(this.activeDate || this.todaysDate).startOf('month');
|
this.date = dayjs(this.activeDate || this.todaysDate).startOf('month');
|
||||||
|
|
||||||
this.createMonth();
|
this.createMonth();
|
||||||
}
|
}
|
||||||
|
|
||||||
createDay(dateNotesForMonth: DateNotesForMonth, num: number) {
|
createDay(dateNotesForMonth: DateNotesForMonth, num: number) {
|
||||||
const $newDay = $("<a>").addClass("calendar-date").attr("data-calendar-date", this.date.local().format('YYYY-MM-DD'));
|
const $newDay = $("<a>")
|
||||||
|
.addClass("calendar-date")
|
||||||
|
.attr("data-calendar-date", this.date.local().format('YYYY-MM-DD'));
|
||||||
const $date = $("<span>").html(String(num));
|
const $date = $("<span>").html(String(num));
|
||||||
|
|
||||||
const dateNoteId = dateNotesForMonth[this.date.local().format('YYYY-MM-DD')];
|
const dateNoteId = dateNotesForMonth[this.date.local().format('YYYY-MM-DD')];
|
||||||
|
|
||||||
if (dateNoteId) {
|
if (dateNoteId) {
|
||||||
$newDay.addClass("calendar-date-exists");
|
$newDay.addClass("calendar-date-exists").attr("data-href", `#root/${dateNoteId}`);
|
||||||
$newDay.attr("data-href", `#root/${dateNoteId}`);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.date.isSame(this.activeDate, 'day')) {
|
if (this.date.isSame(this.activeDate, 'day')) $newDay.addClass("calendar-date-active");
|
||||||
$newDay.addClass("calendar-date-active");
|
if (this.date.isSame(this.todaysDate, 'day')) $newDay.addClass("calendar-date-today");
|
||||||
}
|
|
||||||
|
|
||||||
if (this.date.isSame(this.todaysDate, 'day')) {
|
|
||||||
$newDay.addClass("calendar-date-today");
|
|
||||||
}
|
|
||||||
|
|
||||||
$newDay.append($date);
|
$newDay.append($date);
|
||||||
return $newDay;
|
return $newDay;
|
||||||
|
@ -291,29 +296,26 @@ export default class CalendarWidget extends RightDropdownButtonWidget {
|
||||||
|
|
||||||
createWeekNumber(weekNumber: number) {
|
createWeekNumber(weekNumber: number) {
|
||||||
const weekNoteId = this.date.local().format('YYYY-') + 'W' + String(weekNumber).padStart(2, '0');
|
const weekNoteId = this.date.local().format('YYYY-') + 'W' + String(weekNumber).padStart(2, '0');
|
||||||
|
|
||||||
let $newWeekNumber;
|
let $newWeekNumber;
|
||||||
|
|
||||||
if (this.weekNoteEnable) {
|
if (this.weekNoteEnable) {
|
||||||
// Utilize the hover effect of calendar-date
|
|
||||||
$newWeekNumber = $("<a>").addClass("calendar-date");
|
$newWeekNumber = $("<a>").addClass("calendar-date");
|
||||||
|
|
||||||
if (this.weekNotes.includes(weekNoteId)) {
|
if (this.weekNotes.includes(weekNoteId)) {
|
||||||
$newWeekNumber.addClass("calendar-date-exists");
|
$newWeekNumber.addClass("calendar-date-exists").attr("data-href", `#root/${weekNoteId}`);
|
||||||
$newWeekNumber.attr("data-href", `#root/${weekNoteId}`);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
$newWeekNumber = $("<span>").addClass("calendar-week-number-disabled");
|
$newWeekNumber = $("<span>").addClass("calendar-week-number-disabled");
|
||||||
}
|
}
|
||||||
|
|
||||||
$newWeekNumber.addClass("calendar-week-number").attr("data-calendar-week-number", weekNoteId);
|
$newWeekNumber.addClass("calendar-week-number").attr("data-calendar-week-number", weekNoteId);
|
||||||
$newWeekNumber.append($("<span>").html(String(weekNumber)));
|
$newWeekNumber.append($("<span>").html(String(weekNumber)));
|
||||||
|
|
||||||
return $newWeekNumber;
|
return $newWeekNumber;
|
||||||
}
|
}
|
||||||
|
|
||||||
private getPrevMonthDays(firstDayOfWeek: number): { weekNumber: number, dates: Dayjs[] } {
|
// Use isoWeekday() consistently
|
||||||
|
private getPrevMonthDays(firstDayISO: number): { weekNumber: number, dates: Dayjs[] } {
|
||||||
const prevMonthLastDay = this.date.subtract(1, 'month').endOf('month');
|
const prevMonthLastDay = this.date.subtract(1, 'month').endOf('month');
|
||||||
const daysToAdd = (firstDayOfWeek - this.firstDayOfWeek + 7) % 7;
|
const daysToAdd = (firstDayISO - this.firstDayOfWeekISO + 7) % 7;
|
||||||
const dates: Dayjs[] = [];
|
const dates: Dayjs[] = [];
|
||||||
|
|
||||||
const firstDay = this.date.startOf('month');
|
const firstDay = this.date.startOf('month');
|
||||||
|
@ -327,18 +329,16 @@ export default class CalendarWidget extends RightDropdownButtonWidget {
|
||||||
return { weekNumber, dates };
|
return { weekNumber, dates };
|
||||||
}
|
}
|
||||||
|
|
||||||
private getNextMonthDays(lastDayOfWeek: number): Dayjs[] {
|
private getNextMonthDays(lastDayISO: number): Dayjs[] {
|
||||||
const nextMonthFirstDay = this.date.add(1, 'month').startOf('month');
|
const nextMonthFirstDay = this.date.add(1, 'month').startOf('month');
|
||||||
const dates: Dayjs[] = [];
|
const dates: Dayjs[] = [];
|
||||||
|
|
||||||
const lastDayOfUserWeek = (this.firstDayOfWeek + 6) % 7;
|
const lastDayOfUserWeek = ((this.firstDayOfWeekISO + 6 - 1) % 7) + 1; // ISO wrap
|
||||||
const daysToAdd = (lastDayOfUserWeek - lastDayOfWeek + 7) % 7;
|
const daysToAdd = (lastDayOfUserWeek - lastDayISO + 7) % 7;
|
||||||
|
|
||||||
// Get dates from next month
|
|
||||||
for (let i = 0; i < daysToAdd; i++) {
|
for (let i = 0; i < daysToAdd; i++) {
|
||||||
dates.push(nextMonthFirstDay.add(i, 'day'));
|
dates.push(nextMonthFirstDay.add(i, 'day'));
|
||||||
}
|
}
|
||||||
|
|
||||||
return dates;
|
return dates;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -349,12 +349,11 @@ export default class CalendarWidget extends RightDropdownButtonWidget {
|
||||||
this.$month.empty();
|
this.$month.empty();
|
||||||
|
|
||||||
const firstDay = this.date.startOf('month');
|
const firstDay = this.date.startOf('month');
|
||||||
const firstDayOfWeek = firstDay.day();
|
const firstDayISO = firstDay.isoWeekday();
|
||||||
|
|
||||||
// Add dates from previous month
|
|
||||||
if (firstDayOfWeek !== this.firstDayOfWeek) {
|
|
||||||
const { weekNumber, dates } = this.getPrevMonthDays(firstDayOfWeek);
|
|
||||||
|
|
||||||
|
// Previous month filler
|
||||||
|
if (firstDayISO !== this.firstDayOfWeekISO) {
|
||||||
|
const { weekNumber, dates } = this.getPrevMonthDays(firstDayISO);
|
||||||
const prevMonth = this.date.subtract(1, 'month').format('YYYY-MM');
|
const prevMonth = this.date.subtract(1, 'month').format('YYYY-MM');
|
||||||
const dateNotesForPrevMonth: DateNotesForMonth = await server.get(`special-notes/notes-for-month/${prevMonth}`);
|
const dateNotesForPrevMonth: DateNotesForMonth = await server.get(`special-notes/notes-for-month/${prevMonth}`);
|
||||||
|
|
||||||
|
@ -373,18 +372,16 @@ export default class CalendarWidget extends RightDropdownButtonWidget {
|
||||||
|
|
||||||
const currentMonth = this.date.month();
|
const currentMonth = this.date.month();
|
||||||
|
|
||||||
|
// Main month
|
||||||
while (this.date.month() === currentMonth) {
|
while (this.date.month() === currentMonth) {
|
||||||
const weekNumber = this.getWeekNumber(this.date);
|
const weekNumber = this.getWeekNumber(this.date);
|
||||||
|
if (this.date.isoWeekday() === this.firstDayOfWeekISO) {
|
||||||
// Add week number if it's first day of week
|
|
||||||
if (this.date.day() === this.firstDayOfWeek) {
|
|
||||||
const $weekNumber = this.createWeekNumber(weekNumber);
|
const $weekNumber = this.createWeekNumber(weekNumber);
|
||||||
this.$month.append($weekNumber);
|
this.$month.append($weekNumber);
|
||||||
}
|
}
|
||||||
|
|
||||||
const $day = this.createDay(dateNotesForMonth, this.date.date());
|
const $day = this.createDay(dateNotesForMonth, this.date.date());
|
||||||
this.$month.append($day);
|
this.$month.append($day);
|
||||||
|
|
||||||
this.date = this.date.add(1, 'day');
|
this.date = this.date.add(1, 'day');
|
||||||
}
|
}
|
||||||
// while loop trips over and day is at 30/31, bring it back
|
// while loop trips over and day is at 30/31, bring it back
|
||||||
|
@ -392,11 +389,11 @@ export default class CalendarWidget extends RightDropdownButtonWidget {
|
||||||
|
|
||||||
// Add dates from next month
|
// Add dates from next month
|
||||||
const lastDayOfMonth = this.date.endOf('month');
|
const lastDayOfMonth = this.date.endOf('month');
|
||||||
const lastDayOfWeek = lastDayOfMonth.day();
|
const lastDayISO = lastDayOfMonth.isoWeekday();
|
||||||
const lastDayOfUserWeek = (this.firstDayOfWeek + 6) % 7;
|
const lastDayOfUserWeek = ((this.firstDayOfWeekISO + 6 - 1) % 7) + 1;
|
||||||
if (lastDayOfWeek !== lastDayOfUserWeek) {
|
|
||||||
const dates = this.getNextMonthDays(lastDayOfWeek);
|
|
||||||
|
|
||||||
|
if (lastDayISO !== lastDayOfUserWeek) {
|
||||||
|
const dates = this.getNextMonthDays(lastDayISO);
|
||||||
const nextMonth = this.date.add(1, 'month').format('YYYY-MM');
|
const nextMonth = this.date.add(1, 'month').format('YYYY-MM');
|
||||||
const dateNotesForNextMonth: DateNotesForMonth = await server.get(`special-notes/notes-for-month/${nextMonth}`);
|
const dateNotesForNextMonth: DateNotesForMonth = await server.get(`special-notes/notes-for-month/${nextMonth}`);
|
||||||
|
|
||||||
|
@ -415,9 +412,12 @@ export default class CalendarWidget extends RightDropdownButtonWidget {
|
||||||
}
|
}
|
||||||
|
|
||||||
async entitiesReloadedEvent({ loadResults }: EventData<"entitiesReloaded">) {
|
async entitiesReloadedEvent({ loadResults }: EventData<"entitiesReloaded">) {
|
||||||
if (!loadResults.getOptionNames().includes("firstDayOfWeek") &&
|
const WEEK_OPTIONS: (keyof OptionDefinitions)[] = [
|
||||||
!loadResults.getOptionNames().includes("firstWeekOfYear") &&
|
"firstDayOfWeek",
|
||||||
!loadResults.getOptionNames().includes("minDaysInFirstWeek")) {
|
"firstWeekOfYear",
|
||||||
|
"minDaysInFirstWeek",
|
||||||
|
];
|
||||||
|
if (!WEEK_OPTIONS.some(opt => loadResults.getOptionNames().includes(opt))) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue