Some ignored filles was missing

This commit is contained in:
Janus C. H. Knudsen 2026-02-03 00:02:25 +01:00
parent 7db22245e2
commit fd5ab6bc0d
268 changed files with 31970 additions and 4 deletions

View file

@ -0,0 +1,70 @@
import { IEventBus } from '../types/CalendarTypes';
import { Configuration } from '../configurations/CalendarConfig';
/**
* ViewSelectorManager - Manages view selector UI and state
*
* RESPONSIBILITY:
* ===============
* This manager owns all logic related to the <swp-view-selector> UI element.
* It follows the principle that each functional UI element has its own manager.
*
* RESPONSIBILITIES:
* - Handles button clicks on swp-view-button elements
* - Manages current view state (day/week/month)
* - Validates view values
* - Emits VIEW_CHANGED and VIEW_RENDERED events
* - Updates button UI states (data-active attributes)
*
* EVENT FLOW:
* ===========
* User clicks button changeView() validate update state emit event update UI
*
* IMPLEMENTATION STATUS:
* ======================
* - Week view: FULLY IMPLEMENTED
* - Day view: NOT IMPLEMENTED (button exists but no rendering)
* - Month view: NOT IMPLEMENTED (button exists but no rendering)
*
* SUBSCRIBERS:
* ============
* - GridRenderer: Uses view parameter (currently only supports 'week')
* - Future: DayRenderer, MonthRenderer when implemented
*/
export declare class ViewSelectorManager {
private eventBus;
private config;
private buttonListeners;
constructor(eventBus: IEventBus, config: Configuration);
/**
* Setup click listeners on all view selector buttons
*/
private setupButtonListeners;
/**
* Setup event bus listeners
*/
private setupEventListeners;
/**
* Change the active view
*/
private changeView;
/**
* Update button states (data-active attributes)
*/
private updateButtonStates;
/**
* Initialize view on INITIALIZED event
*/
private initializeView;
/**
* Emit VIEW_RENDERED event
*/
private emitViewRendered;
/**
* Refresh current view on DATE_CHANGED event
*/
private refreshCurrentView;
/**
* Validate if string is a valid CalendarView type
*/
private isValidView;
}