From 5759154f61dc8e5b9c103a22ea3947ebbae54a68 Mon Sep 17 00:00:00 2001 From: "Dennis (via Claude+Gemma)" Date: Sat, 23 May 2026 10:04:23 +0200 Subject: [PATCH] =?UTF-8?q?feat(empty-chart-component):=20EmptyChart-Place?= =?UTF-8?q?holder=20f=C3=BCr=20Charts=20ohne=20Daten=20[tsc:fail]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .phase37-state.json | 5 +++-- GENERATION_LOG.md | 18 ++++++++++++++++++ apps/web/src/components/EmptyChart.tsx | 22 ++++++++++++++++++++++ 3 files changed, 43 insertions(+), 2 deletions(-) create mode 100644 apps/web/src/components/EmptyChart.tsx diff --git a/.phase37-state.json b/.phase37-state.json index cf28e65..089c3f8 100644 --- a/.phase37-state.json +++ b/.phase37-state.json @@ -1,9 +1,10 @@ { "completed_features": [], - "current_feature": "skeleton-block-component", + "current_feature": "empty-chart-component", "started_at": "2026-05-23T10:03:26.504746", "attempted_features": [ "stepper-component", - "timeline-component" + "timeline-component", + "skeleton-block-component" ] } \ No newline at end of file diff --git a/GENERATION_LOG.md b/GENERATION_LOG.md index 6b8c4f9..5adbe45 100644 --- a/GENERATION_LOG.md +++ b/GENERATION_LOG.md @@ -4010,3 +4010,21 @@ 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, +- `10:04:15` **INFO** Committed feature skeleton-block-component +- `10:04:16` **INFO** Pushed: rc=0 + +## Phase-3 Feature: empty-chart-component (2026-05-23 10:04:16) + +- `10:04:16` **INFO** Description: EmptyChart-Placeholder für Charts ohne Daten +- `10:04:16` **INFO** Generating apps/web/src/components/EmptyChart.tsx (EmptyChart-Component. Props: message? (default 'Keine Daten verfügbar'…) +- `10:04:21` **INFO** wrote 585 chars in 5.6s (attempt 1) +- `10:04:21` **INFO** Running tsc --noEmit on api… +- `10:04:23` **WARN** tsc errors: +src/db/schema.ts(37,14): error TS7022: 'customers' implicitly has type 'any' because it does not have a type annotation and is referenced directly or indirectly in its own initializer. +src/db/schema.ts(45,59): error TS7024: Function implicitly has return type 'any' because it does not have a return type annotation and is referenced directly or indirectly in one of its return expressions. +src/db/schema.ts(49,14): error TS7022: 'projects' implicitly has type 'any' because it does not have a type annotation and is referenced directly or indirectly in its own initializer. +src/db/schema.ts(53,56): error TS7024: Function implicitly has return type 'any' because it does not have a return type annotation and is referenced directly or indirectly in one of its return expressions. +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, diff --git a/apps/web/src/components/EmptyChart.tsx b/apps/web/src/components/EmptyChart.tsx new file mode 100644 index 0000000..26dedda --- /dev/null +++ b/apps/web/src/components/EmptyChart.tsx @@ -0,0 +1,22 @@ +import React from 'react'; +import { BarChart } from 'lucide-react'; + +interface EmptyChartProps { + message?: string; + height?: string; +} + +export default function EmptyChart({ + message = 'Keine Daten verfügbar', + height = '200px' +}: EmptyChartProps) { + return ( +
+ + {message} +
+ ); +} \ No newline at end of file