Refactors DateCalculator to be a static class

This change refactors the DateCalculator class to be a static class.
This removes the need to instantiate DateCalculator in multiple
managers and renderers, simplifying dependency management and
ensuring consistent date calculations across the application.
The configuration is now initialized once at the application start.
This commit is contained in:
Janus Knudsen 2025-09-03 18:38:52 +02:00
parent 0da875a224
commit b8b44ddae8
11 changed files with 107 additions and 83 deletions

View file

@ -256,25 +256,26 @@ export class DateHeaderRenderer extends BaseHeaderRenderer {
const { currentWeek, config } = context;
// Initialize date calculator with config
this.dateCalculator = new DateCalculator(config);
DateCalculator.initialize(config);
this.dateCalculator = new DateCalculator();
const dates = this.dateCalculator.getWorkWeekDates(currentWeek);
const dates = DateCalculator.getWorkWeekDates(currentWeek);
const weekDays = config.getDateViewSettings().weekDays;
const daysToShow = dates.slice(0, weekDays);
daysToShow.forEach((date, index) => {
const header = document.createElement('swp-day-header');
if (this.dateCalculator.isToday(date)) {
if (DateCalculator.isToday(date)) {
(header as any).dataset.today = 'true';
}
const dayName = this.dateCalculator.getDayName(date, 'short');
const dayName = DateCalculator.getDayName(date, 'short');
header.innerHTML = `
<swp-day-name>${dayName}</swp-day-name>
<swp-day-date>${date.getDate()}</swp-day-date>
`;
(header as any).dataset.date = this.dateCalculator.formatISODate(date);
(header as any).dataset.date = DateCalculator.formatISODate(date);
calendarHeader.appendChild(header);
});