Files
OSIT-AE-App-Svelte/src/routes/core
Scott Idem 3ca9503b88 fix: resolve svelte-check warnings (non-IDAA batch)
- Remove dead .field_editing_wrapper CSS rules from element_ae_crud_v2.svelte
  (template migrated to field_editing_wrapper_v2 with Tailwind)
- Fix TS error: use optional chaining on person_obj key in ae_comp__person_obj_tbl.svelte
- Fix state_referenced_locally: wrap data.user init with untrack() in users/[user_id]/+page.svelte
- Replace misused <label> with <span> for visual section headings (a11y) in:
  launcher_cfg_native_os.svelte, launcher_cfg_health.svelte,
  launcher_cfg_local_actions.svelte, launcher_cfg_template.svelte
2026-03-06 18:15:31 -05:00
..

Core Module

This directory (src/routes/core) contains Svelte pages and components for managing the core data objects of the Aether (AE) system. While the primary data logic, API interactions, and database definitions are located in src/lib/ae_core, this directory provides the user-facing interfaces for interacting with that data.

Core Data Modules

The Aether system is built on a foundation of several core modules. The UI components for these modules are, or will be, located here.

Accounts

  • Description: Manages client accounts (not to be confused with user accounts). An account is the top-level organizational unit.
  • Logic: src/lib/ae_core/core__account.ts

Hosted Files

  • Description: Handles file uploads, storage, and retrieval. Provides components for file upload buttons and video players.
  • Logic: src/lib/ae_core/core__hosted_files.ts
  • Route: /hosted_files

People

  • Description: Manages information about individuals. A "person" can be a user, a contact, an event presenter, etc. This is the central object for representing people in the system.
  • Logic: src/lib/ae_core/core__person.ts
  • UI Components:
    • ae_comp__person_obj_tbl.svelte: A table for displaying a list of people.
    • person_view.svelte: A component for displaying the details of a single person.

Sites & Site Domains

  • Description: Manages different sites or instances of the application and their associated domain names. This allows for multi-tenant configurations.
  • Logic: src/lib/ae_core/core__site.ts and core__site_domain.ts

Users

  • Description: Manages user accounts, including authentication, permissions, and user-specific settings.
  • Logic: src/lib/ae_core/core__user.ts