- Split sidebar into 3 groups: Resources / Operations / System - Added Migration section (Overview + Mappings) - was hidden in routes - Added Git section (Repository Status) - was hidden in routes - Added Tools section (Mapper, Debug, Storage, Backups) - was hidden in routes - Moved Settings gear icon to footer (quick link to /settings) - Moved Profile to footer (avatar + username) - Moved Collapse button to header (always visible) - Organized Admin with all sub-items (Users, Roles, ADFS, LLM) - Reduced visual noise: section labels collapse independently - Kept existing features: RBAC filtering, health badges, mobile overlay, collapse animation - Updated tests to match new structure - Updated i18n (en/ru) with new keys
Superset Tools Frontend (SvelteKit)
This is the frontend for the Superset Tools application, built with SvelteKit in SPA mode.
Development
-
Install dependencies:
npm install -
Run development server:
npm run devThe frontend will be available at
http://localhost:5173. It is configured to proxy API requests tohttp://localhost:8000.
Production Build
-
Build the static SPA:
npm run buildThis generates a static SPA in the
build/directory. -
Serve with Backend: The Python backend is configured to serve the files from
frontend/build/. Ensure the backend is running:cd ../backend python src/app.py
Architecture
- Routing: File-based routing in
src/routes/. - Layouts: Shared UI in
src/routes/+layout.svelte. - Data Loading:
loadfunctions in+page.tsfor efficient data fetching. - API Client: Centralized API logic in
src/lib/api.js. - Styling: Tailwind CSS.