7.2 KiB
Aether (AE) SvelteKit Application
This project is a Svelte and SvelteKit based application, part of the Aether (AE) system. It uses Tailwind CSS and Skeleton for styling and some elements. This is the frontend UI/UX. The backend API uses Python FastAPI.
Core Aether modules
- accounts - client account, not user account
- hosted_files
- people
- users
- sites and site_domains
Additional Aether modules
- events
- presentation management - import the program data (events, session, presentations, presenters, event files, locations/rooms, devices)
- launcher - Technically this is used with presentation management. It is part of the native app that uses Electron. One of the libraries is for functions that only work when the site is opened in an Electron app. For example the regular browser can not move files around on the local computer or run local commands.
- badge printing
- lead retrieval - attendee tracking; QR codes
- journals - journal, documentation, notes, diary, blog, etc
- idaa - One of my clients
Documentation
- TODO.md
- Svelte - Introducing runes - https://svelte.dev/blog/runes
- Svelte - Breaking changes in runes mode - https://svelte.dev/docs/svelte/v5-migration-guide#Breaking-changes-in-runes-mode
- Dexie.js - Getting Started - https://dexie.org/docs/Tutorial/Getting-started
- Dexie.js - API Quick Reference - https://dexie.org/docs/API-Reference#quick-reference
Ignored Directories
The following directories are ignored for various operations (e.g., search, file listing) to focus on relevant source code:
buildnode_modulestests
Development Guidelines
Svelte v5 and SvelteKit
This project uses Svelte v5 with runes enabled. This introduces significant differences from Svelte v4. It is critical to adhere to v5 conventions to avoid bugs.
- Reactivity: State is managed with
$stateand$derived. Props can be made two-way bindable with$bindable. Avoid direct mutation of props. - Event Handling (Updated 2025-11-20):
- DOM Events: Use the lowercase
oneventattribute (e.g.,onclick,oninput). Event modifiers like|preventDefaultmay not work as expected; handle prevention logic inside the function (e.g.,event.preventDefault()). - Component Events: Continue to use the
on:eventnamedirective for events dispatched from child components.
- DOM Events: Use the lowercase
- Stores and
liveQuery:- To access the value of a store in Svelte v5, you must use the
$store_namesyntax (e.g.,$ae_api). - Dexie
liveQueryreturns an observable. To use it in a component, you must subscribe to it withinonMountto avoid SSR errors. The value from the subscription should then be assigned to a$statevariable.
- To access the value of a store in Svelte v5, you must use the
- Migration Guide: For a comprehensive overview of the changes, refer to the official Svelte 5 Migration Guide.
ID Convention: id vs. id_random
- Always use
id_random: The API returns both a numericidand a string-based[obj_type]_id_random. For all frontend operations (routing, data fetching, local storage), you must use the_id_randomstring. - Local Storage: When saving an object to the local IndexedDB (Dexie), the
id_randomvalue should be aliased to bothid(as the primary key) and[obj_type]_id. This ensures consistency with Dexie's expectations and the rest of the application's data access patterns.
Refactoring Notes
UI Library Compatibility Re-evaluation (2025-12-08)
Context: The project has been rolled back to a "mostly working" commit (90ee6bb1) after numerous failed attempts to update and integrate UI libraries (@skeletonlabs/skeleton and flowbite-svelte) with the current Svelte 5 and Tailwind CSS v4 environment.
Key Issues Identified:
- SkeletonLabs (
@skeletonlabs/skeleton): Attempts to upgrade to Skeleton v4.7.4 (which declares compatibility with Svelte 5 and Tailwind 4) consistently failed with a blocking build error:[@tailwindcss/vite:generate:build] Cannot use @variant with unknown variant: md. This error originates from Skeleton's pre-compiled CSS and indicates a fundamental incompatibility with the project's Tailwind/Vite build process. - Flowbite-Svelte (
flowbite-svelte): Previous versions had peer dependency conflicts with Svelte 5. The currently installed version (1.28.1) allowsnpm installto complete, but its runtime compatibility in a Svelte 5 environment with Tailwind 4 is untested. - Missing Components: Previous attempts to abandon these libraries led to
ReferenceErrors (e.g., for<Modal>), confirming their use throughout the codebase.
New Strategic Direction (Approved by User):
- Hold off on upgrading
flowbite-svelte: Keep the current1.28.1version for now, as it doesn't block installation. Its functionality will be tested after SkeletonLabs is removed. - Abandon
skeletonlabs/skeleton: Due to the persistent, unresolvable build error, we have decided to abandon SkeletonLabs and migrate away from it entirely. - Systematically Replace UI Components: Prioritize creating custom, drop-in replacements for essential UI components previously provided by SkeletonLabs (and potentially Flowbite-Svelte in the future). This will be done using pure Tailwind CSS and native Svelte components.
- The highest priority is the
<Modal>component.
- The highest priority is the
Current State:
- The
ae_app_3x_llmbranch has been reset to commit90ee6bb1to provide a stable, buildable base. - The
feature/re_evaluate_ui_libsbranch contains the research and failed attempts to integrate Skeleton v4, and is saved for reference. - The immediate next step is to verify that the
ae_app_3x_llmbranch builds and runs correctly before proceeding with the SkeletonLabs removal and component replacement plan.
Data Fetching & Processing Pattern (2025-11-20)
A standard pattern for fetching, processing, and caching data has been established to ensure consistency and separation of concerns.
- API Function (
load_*,search_*, etc.): This function is responsible for interacting with the API. It takes parameters needed for the API call (e.g.,event_id, search strings). - Data Processor (
process_ae_obj__*_props): The API function's results are immediately passed to this dedicated processor function for the specific object type.- The API function MUST pass any necessary contextual data (like a parent
event_id) to the processor. - The processor is responsible for all data shaping and enrichment before the data is cached.
- The API function MUST pass any necessary contextual data (like a parent
- Handling API Inconsistencies: The processor is the designated location for handling any inconsistencies in the data returned by the API.
- Example (
event_badge): Thesearch__event_badgeAPI endpoint does not include theevent_idin its results. Theprocess_ae_obj__event_badge_propsfunction now accepts theevent_idas a parameter and injects it into each badge object before it's saved. This centralizes the fix and keeps the API-calling function clean.
- Example (
- Database Caching (
db_save_ae_obj_li__ae_obj): After processing, the clean and consistent data is passed to the genericdb_savefunction to be cached in IndexedDB.
This pattern isolates API logic from data shaping logic, making the code more modular, predictable, and easier to debug.