- Add database migration for last_used_calendar field in user preferences - Update backend models and handlers to support last_used_calendar persistence - Modify frontend preferences service with update_last_used_calendar() method - Implement automatic saving of selected calendar on event creation - Add localStorage fallback for offline usage and immediate UI response - Update create event modal to default to last used calendar for new events - Clean up unused imports from event form components 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
35 lines
1.1 KiB
Rust
35 lines
1.1 KiB
Rust
pub mod calendar;
|
|
pub mod calendar_context_menu;
|
|
pub mod calendar_header;
|
|
pub mod calendar_list_item;
|
|
pub mod context_menu;
|
|
pub mod create_calendar_modal;
|
|
pub mod create_event_modal;
|
|
pub mod event_context_menu;
|
|
pub mod event_form;
|
|
pub mod event_modal;
|
|
pub mod login;
|
|
pub mod month_view;
|
|
pub mod recurring_edit_modal;
|
|
pub mod route_handler;
|
|
pub mod sidebar;
|
|
pub mod week_view;
|
|
|
|
pub use calendar::Calendar;
|
|
pub use calendar_context_menu::CalendarContextMenu;
|
|
pub use calendar_header::CalendarHeader;
|
|
pub use calendar_list_item::CalendarListItem;
|
|
pub use context_menu::ContextMenu;
|
|
pub use create_calendar_modal::CreateCalendarModal;
|
|
pub use create_event_modal::CreateEventModal;
|
|
// Re-export event form types for backwards compatibility
|
|
pub use event_form::EventCreationData;
|
|
pub use event_context_menu::{DeleteAction, EditAction, EventContextMenu};
|
|
pub use event_modal::EventModal;
|
|
pub use login::Login;
|
|
pub use month_view::MonthView;
|
|
pub use recurring_edit_modal::{RecurringEditAction, RecurringEditModal};
|
|
pub use route_handler::RouteHandler;
|
|
pub use sidebar::{Sidebar, Theme, ViewMode};
|
|
pub use week_view::WeekView;
|