feat(button-group-component): ButtonGroup für gruppierte Toggle-Buttons [tsc:fail]
This commit is contained in:
parent
ce3fb66a6f
commit
7ac59e6fa6
@ -5,6 +5,7 @@
|
|||||||
"attempted_features": [
|
"attempted_features": [
|
||||||
"page-header-component",
|
"page-header-component",
|
||||||
"stat-card-component",
|
"stat-card-component",
|
||||||
"toolbar-button-component"
|
"toolbar-button-component",
|
||||||
|
"kbd-component"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
5
.phase42-state.json
Normal file
5
.phase42-state.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"completed_features": [],
|
||||||
|
"current_feature": "button-group-component",
|
||||||
|
"started_at": "2026-05-23T10:28:27.180963"
|
||||||
|
}
|
||||||
@ -4344,3 +4344,28 @@ 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.
|
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<FastifyMultipartPlugin>' is not assignable to parameter of type 'FastifyPluginCallback<{ limits: { fileSize: number; }; }, RawServerDefault, FastifyTypeProvider, FastifyBaseLogger>'.
|
Argument of type 'Promise<FastifyMultipartPlugin>' is not assignable to parameter of type 'FastifyPluginCallback<{ limits: { fileSize: number; }; }, RawServerDefault, FastifyTypeProvider, FastifyBaseLogger>'.
|
||||||
Type 'Promise<FastifyMultipartPlugin>' provides no match for the signature '(instance: FastifyInstance<RawServerDefault, IncomingMessage, ServerResponse<IncomingMessage>,
|
Type 'Promise<FastifyMultipartPlugin>' provides no match for the signature '(instance: FastifyInstance<RawServerDefault, IncomingMessage, ServerResponse<IncomingMessage>,
|
||||||
|
- `10:24:08` **INFO** Committed feature kbd-component
|
||||||
|
- `10:24:09` **INFO** Pushed: rc=0
|
||||||
|
|
||||||
|
## Phase-41 Run beendet (2026-05-23 10:24:09)
|
||||||
|
|
||||||
|
- `10:24:09` **INFO** OK: 0, Attempted: 4, Total: 4
|
||||||
|
|
||||||
|
## 🚀 Phase-42 Codegen-Run gestartet (2026-05-23 10:28:27)
|
||||||
|
|
||||||
|
|
||||||
|
## Phase-3 Feature: button-group-component (2026-05-23 10:28:27)
|
||||||
|
|
||||||
|
- `10:28:27` **INFO** Description: ButtonGroup für gruppierte Toggle-Buttons
|
||||||
|
- `10:28:27` **INFO** Generating apps/web/src/components/ButtonGroup.tsx (ButtonGroup-Component. Props: options (array {value, label, icon?}), v…)
|
||||||
|
- `10:28:38` **INFO** wrote 1336 chars in 11.7s (attempt 1)
|
||||||
|
- `10:28:38` **INFO** Running tsc --noEmit on api…
|
||||||
|
- `10:28:40` **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<FastifyMultipartPlugin>' is not assignable to parameter of type 'FastifyPluginCallback<{ limits: { fileSize: number; }; }, RawServerDefault, FastifyTypeProvider, FastifyBaseLogger>'.
|
||||||
|
Type 'Promise<FastifyMultipartPlugin>' provides no match for the signature '(instance: FastifyInstance<RawServerDefault, IncomingMessage, ServerResponse<IncomingMessage>,
|
||||||
|
|||||||
45
apps/web/src/components/ButtonGroup.tsx
Normal file
45
apps/web/src/components/ButtonGroup.tsx
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import type { ReactNode } from 'react';
|
||||||
|
|
||||||
|
interface ButtonOption {
|
||||||
|
value: string;
|
||||||
|
label: string;
|
||||||
|
icon?: ReactNode;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ButtonGroupProps {
|
||||||
|
options: ButtonOption[];
|
||||||
|
value: string;
|
||||||
|
onChange: (value: string) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
const ButtonGroup: React.FC<ButtonGroupProps> = ({ options, value, onChange }) => {
|
||||||
|
return (
|
||||||
|
<div className="inline-flex p-1 bg-gray-100 rounded-lg border border-gray-200">
|
||||||
|
{options.map((option, index) => {
|
||||||
|
const isActive = value === option.value;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<button
|
||||||
|
key={option.value}
|
||||||
|
onClick={() => onChange(option.value)}
|
||||||
|
className={`
|
||||||
|
flex items-center gap-2 px-3 py-1.5 text-sm font-medium transition-all rounded-md
|
||||||
|
${index !== 0 ? 'border-l border-gray-300' : ''}
|
||||||
|
${isActive
|
||||||
|
? 'bg-blue-100 text-blue-700 border-blue-500 shadow-sm'
|
||||||
|
: 'bg-transparent text-gray-600 hover:text-gray-900 hover:bg-gray-200'
|
||||||
|
}
|
||||||
|
${isActive ? 'ring-1 ring-blue-500' : ''}
|
||||||
|
`}
|
||||||
|
>
|
||||||
|
{option.icon && <span className="flex-shrink-0">{option.icon}</span>}
|
||||||
|
<span>{option.label}</span>
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ButtonGroup;
|
||||||
97
scripts/phase42_features.py
Normal file
97
scripts/phase42_features.py
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
"""Phase-42: standalone components — ButtonGroup, ContextMenu, Popover, Tag."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import asyncio, datetime, json, sys
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
sys.path.insert(0, str(Path(__file__).resolve().parent))
|
||||||
|
from phase2_features import Feature, FileGen, ROOT, log, log_section
|
||||||
|
from phase3_features import run_feature_v2
|
||||||
|
|
||||||
|
PHASE_STATE = ROOT / ".phase42-state.json"
|
||||||
|
|
||||||
|
FEATURES: list[Feature] = [
|
||||||
|
Feature(
|
||||||
|
name="button-group-component",
|
||||||
|
description="ButtonGroup für gruppierte Toggle-Buttons",
|
||||||
|
files=[FileGen(
|
||||||
|
path="apps/web/src/components/ButtonGroup.tsx",
|
||||||
|
purpose=(
|
||||||
|
"ButtonGroup-Component. Props: options (array {value, label, icon?}), value, onChange(value). "
|
||||||
|
"Horizontale Gruppe von Buttons connected (border between only). "
|
||||||
|
"Active: bg-blue-100, border-blue-500. Tailwind. Export default."
|
||||||
|
),
|
||||||
|
)],
|
||||||
|
),
|
||||||
|
Feature(
|
||||||
|
name="context-menu-component",
|
||||||
|
description="ContextMenu mit right-click trigger",
|
||||||
|
files=[FileGen(
|
||||||
|
path="apps/web/src/components/ContextMenu.tsx",
|
||||||
|
purpose=(
|
||||||
|
"ContextMenu-Component. Props: items (array {label, icon?, onClick, danger?}), children. "
|
||||||
|
"Wrappt children mit onContextMenu prevent + setzt position state. "
|
||||||
|
"Absolute positioned menu mit shadow + items. Click outside schließt. Tailwind. Export default."
|
||||||
|
),
|
||||||
|
)],
|
||||||
|
),
|
||||||
|
Feature(
|
||||||
|
name="popover-component",
|
||||||
|
description="Popover (klick-getriggert)",
|
||||||
|
files=[FileGen(
|
||||||
|
path="apps/web/src/components/Popover.tsx",
|
||||||
|
purpose=(
|
||||||
|
"Popover-Component. Props: trigger (ReactNode), content (ReactNode), position?: 'top'|'bottom'|'left'|'right'. "
|
||||||
|
"useState open. Klick auf trigger toggled. Click outside schließt. "
|
||||||
|
"Absolute positioned content mit shadow + arrow. Tailwind. Export default."
|
||||||
|
),
|
||||||
|
)],
|
||||||
|
),
|
||||||
|
Feature(
|
||||||
|
name="tag-component",
|
||||||
|
description="Tag mit Color + Click-Handler",
|
||||||
|
files=[FileGen(
|
||||||
|
path="apps/web/src/components/Tag.tsx",
|
||||||
|
purpose=(
|
||||||
|
"Tag-Component. Props: label, color? (default 'gray'), onClick?, onRemove?. "
|
||||||
|
"Pill mit bg-{color}-100 text-{color}-800. Optional Click + optional X-Button. "
|
||||||
|
"Tailwind. Export default."
|
||||||
|
),
|
||||||
|
)],
|
||||||
|
),
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
def load_state():
|
||||||
|
if PHASE_STATE.exists():
|
||||||
|
return json.loads(PHASE_STATE.read_text())
|
||||||
|
return {"completed_features": [], "current_feature": None, "started_at": datetime.datetime.now().isoformat()}
|
||||||
|
|
||||||
|
|
||||||
|
def save_state(state):
|
||||||
|
PHASE_STATE.write_text(json.dumps(state, indent=2))
|
||||||
|
|
||||||
|
|
||||||
|
async def main():
|
||||||
|
log_section("🚀 Phase-42 Codegen-Run gestartet")
|
||||||
|
state = load_state()
|
||||||
|
for feature in FEATURES:
|
||||||
|
if feature.name in state.get("completed_features", []):
|
||||||
|
continue
|
||||||
|
state["current_feature"] = feature.name; save_state(state)
|
||||||
|
try:
|
||||||
|
success = await run_feature_v2(feature)
|
||||||
|
state.setdefault("completed_features" if success else "attempted_features", []).append(feature.name)
|
||||||
|
save_state(state)
|
||||||
|
except Exception as e:
|
||||||
|
log(f"❌ {feature.name} crashed: {e}", level="ERROR")
|
||||||
|
state.setdefault("attempted_features", []).append(feature.name); save_state(state)
|
||||||
|
log_section("Phase-42 Run beendet")
|
||||||
|
log(f"OK: {len(state.get('completed_features', []))}, Attempted: {len(state.get('attempted_features', []))}, Total: {len(FEATURES)}")
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
sys.exit(asyncio.run(main()))
|
||||||
Loading…
Reference in New Issue
Block a user