diff --git a/.phase18-state.json b/.phase18-state.json index 0b6ba16..0ab1aed 100644 --- a/.phase18-state.json +++ b/.phase18-state.json @@ -1,8 +1,9 @@ { "completed_features": [], - "current_feature": "audit-log-filters", + "current_feature": "idle-detection", "started_at": "2026-05-23T07:29:44.977564", "attempted_features": [ - "api-key-management" + "api-key-management", + "audit-log-filters" ] } \ No newline at end of file diff --git a/GENERATION_LOG.md b/GENERATION_LOG.md index c598c99..3091178 100644 --- a/GENERATION_LOG.md +++ b/GENERATION_LOG.md @@ -2171,3 +2171,22 @@ src/index.ts(27,25): error TS2769: No overload matches this call. Overload 2 of 3, '(plugin: FastifyPluginAsync<{ limits: { fileSize: number; }; }, RawServerDefault, FastifyTypeProvider, FastifyBaseLogger>, opts?: FastifyRegisterOptions<...> | undefined): FastifyInstance<...> & PromiseLike<...>', gave the following error. Argument of type 'Promise' is not assignable to parameter of type 'FastifyPluginAsync<{ limits: { fileSize: number; }; }, RawServerDefault, FastifyTypeProvider, FastifyBaseLogger>'. Type 'Promise' provides no match for the signature '(instance: FastifyInstance, FastifyBaseLogger, FastifyTy +- `07:32:56` **INFO** Committed feature audit-log-filters +- `07:32:57` **INFO** Pushed: rc=0 + +## Phase-3 Feature: idle-detection (2026-05-23 07:32:57) + +- `07:32:57` **INFO** Description: Idle-Detection: nach 5min Inaktivität Active-Timer pausieren-prompt +- `07:32:57` **INFO** Generating apps/web/src/components/IdleDetector.tsx (IdleDetector-Component. Listens auf mousemove, keypress. Resettet Time…) +- `07:33:28` **INFO** wrote 3511 chars in 31.4s (attempt 1) +- `07:33:28` **INFO** Generating apps/web/src/App.tsx (ERWEITERT — mount global im Root-Route. Behalte alles…) +- `07:34:22` **INFO** wrote 6578 chars in 54.2s (attempt 1) +- `07:34:22` **INFO** Running tsc --noEmit on api… +- `07:34:24` **WARN** tsc errors: +src/index.ts(27,25): error TS2769: No overload matches this call. + Overload 1 of 3, '(plugin: FastifyPluginCallback<{ limits: { fileSize: number; }; }, RawServerDefault, FastifyTypeProvider, FastifyBaseLogger>, opts?: FastifyRegisterOptions<...> | undefined): FastifyInstance<...> & PromiseLike<...>', gave the following error. + Argument of type 'Promise' is not assignable to parameter of type 'FastifyPluginCallback<{ limits: { fileSize: number; }; }, RawServerDefault, FastifyTypeProvider, FastifyBaseLogger>'. + Type 'Promise' provides no match for the signature '(instance: FastifyInstance, FastifyBaseLogger, FastifyTypeProvider>, opts: { ...; }, done: (err?: Error | undefined) => void): void'. + Overload 2 of 3, '(plugin: FastifyPluginAsync<{ limits: { fileSize: number; }; }, RawServerDefault, FastifyTypeProvider, FastifyBaseLogger>, opts?: FastifyRegisterOptions<...> | undefined): FastifyInstance<...> & PromiseLike<...>', gave the following error. + Argument of type 'Promise' is not assignable to parameter of type 'FastifyPluginAsync<{ limits: { fileSize: number; }; }, RawServerDefault, FastifyTypeProvider, FastifyBaseLogger>'. + Type 'Promise' provides no match for the signature '(instance: FastifyInstance, FastifyBaseLogger, FastifyTy diff --git a/apps/web/src/App.tsx b/apps/web/src/App.tsx index cca8b40..f299122 100644 --- a/apps/web/src/App.tsx +++ b/apps/web/src/App.tsx @@ -26,6 +26,7 @@ import KeyboardHelp from "./components/KeyboardHelp" import OnboardingTour from "./components/OnboardingTour" import VersionBadge from "./components/VersionBadge" import QuickAdd from "./components/QuickAdd" +import IdleDetector from "./components/IdleDetector" import { ToastProvider } from "./components/Toast" import ErrorBoundary from "./components/ErrorBoundary" import { api } from "./lib/api" @@ -35,6 +36,7 @@ const rootRoute = createRootRoute({
+