feat: Phases 4-7 — Full Feature Expansion (26 features)

Phase 4 — New Widget Types:
- Clock/Weather, System Stats, RSS/Feed, Calendar, Markdown,
  Metric/Counter, Link Group, Camera/Stream widgets
- Backend services with caching for each data source
- Full creation form with dynamic config fields per type

Phase 5 — Visual & Styling Enhancements:
- Glassmorphism card style (solid/glass/outline)
- Board-level themes with per-board hue/saturation
- Animated SVG status rings replacing static dots
- Card size options (compact/medium/large)
- Custom CSS injection (admin + per-board, sanitized)
- Wallpaper backgrounds with blur/overlay/parallax

Phase 6 — Functional Features:
- Favorites bar with drag-and-drop reordering
- Recent apps tracking with privacy toggle
- Uptime dashboard page (/status, guest-accessible)
- Notifications system (Discord/Slack/Telegram/HTTP webhooks)
- App tags with filtering in board view
- Multi-URL app cards with expandable sub-links
- Personal API tokens with scoped permissions
- Audit log with retention and admin viewer

Phase 7 — Quality of Life:
- Onboarding wizard (5-step first-launch setup)
- App URL health preview with favicon/title detection
- Board templates (4 built-in + custom import/export)
- Keyboard shortcut overlay (j/k nav, 1-9 boards, ? help)

212 files changed, 15641 insertions, 980 deletions.
Build, lint, type check, and 222 tests all pass.
This commit is contained in:
2026-03-25 14:18:10 +03:00
parent 8d7847889e
commit 1c0a7cb850
212 changed files with 15642 additions and 981 deletions
@@ -5,6 +5,7 @@
**Domain:** fullstack
## Objective
Integrate all Phase 2 features, fix all build/type/lint errors, write tests, and ensure everything works together.
## Tasks
@@ -22,6 +23,7 @@ Integrate all Phase 2 features, fix all build/type/lint errors, write tests, and
- [ ] Task 11: Update `.env.example` with all new env vars documented
## Files Modified/Created
- `src/lib/server/services/oauthService.ts` — fixed undefined sub claim type error
- `src/lib/components/ui/DynamicIcon.svelte` — fixed Svelte 5 deprecated svelte:component + type error
- `src/lib/components/board/DraggableBoard.svelte` — removed unused eslint-disable
@@ -37,6 +39,7 @@ Integrate all Phase 2 features, fix all build/type/lint errors, write tests, and
- `prisma/seed.ts` — added bookmark, note, embed, status widgets + team board with permissions
## Acceptance Criteria
- [x] `npm run build` succeeds
- [x] `npm run check` passes (0 errors, 18 warnings)
- [x] `npm run lint` passes
@@ -45,11 +48,13 @@ Integrate all Phase 2 features, fix all build/type/lint errors, write tests, and
- [x] Seed script includes all widget types and board with permissions
## Notes
- Installed missing `svelte-i18n` dependency (was used but not in package.json)
- Circular dependency warnings from `typebox` and `zod-v3-to-json-schema` are from node_modules, not our code
- Svelte check warnings are about `state_referenced_locally` in superForm usage patterns (safe to ignore)
## Review Checklist
- [x] All tasks completed
- [x] Code follows project conventions
- [x] No unintended side effects
@@ -57,4 +62,5 @@ Integrate all Phase 2 features, fix all build/type/lint errors, write tests, and
- [x] Tests pass (new + existing)
## Handoff
Phase 6 complete. All build, type, lint, and test checks pass. The codebase is fully integrated with 175 passing tests. Phase 2 enhanced features are production-ready.