feat(select-component): Select mit custom-styling [tsc:fail]

This commit is contained in:
Dennis (via Claude+Gemma) 2026-05-23 09:59:25 +02:00
parent 9b65f8793d
commit 116da565a7
3 changed files with 106 additions and 2 deletions

View File

@ -1,8 +1,9 @@
{ {
"completed_features": [], "completed_features": [],
"current_feature": "textarea-component", "current_feature": "select-component",
"started_at": "2026-05-23T09:58:25.839766", "started_at": "2026-05-23T09:58:25.839766",
"attempted_features": [ "attempted_features": [
"input-component" "input-component",
"textarea-component"
] ]
} }

View File

@ -3913,3 +3913,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. 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>,
- `09:59:03` **INFO** Committed feature textarea-component
- `09:59:03` **INFO** Pushed: rc=0
## Phase-3 Feature: select-component (2026-05-23 09:59:03)
- `09:59:03` **INFO** Description: Select mit custom-styling
- `09:59:03` **INFO** Generating apps/web/src/components/Select.tsx (Select-Component. Props: value, onChange, options (array {value, label…)
- `09:59:23` **INFO** wrote 2222 chars in 20.0s (attempt 1)
- `09:59:23` **INFO** Running tsc --noEmit on api…
- `09:59:25` **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>,

View File

@ -0,0 +1,85 @@
import React from 'react';
import { ChevronDown } from 'lucide-react';
export interface SelectOption {
value: string;
label: string;
disabled?: boolean;
}
interface SelectProps {
value: string;
onChange: (value: string) => void;
options: SelectOption[];
label?: string;
placeholder?: string;
error?: string;
disabled?: boolean;
name?: string;
}
const Select: React.FC<SelectProps> = ({
value,
onChange,
options,
label,
placeholder,
error,
disabled = false,
name,
}) => {
return (
<div className="flex flex-col gap-1.5 w-full">
{label && (
<label
htmlFor={name}
className="text-sm font-medium text-slate-700 dark:text-slate-300"
>
{label}
</label>
)}
<div className="relative">
<select
id={name}
name={name}
value={value}
onChange={(e) => onChange(e.target.value)}
disabled={disabled}
className={`
w-full appearance-none rounded-md border bg-white px-3 py-2 text-sm transition-colors
focus:outline-none focus:ring-2 focus:ring-indigo-500 dark:bg-slate-900 dark:text-slate-100
${error
? 'border-red-500 focus:ring-red-500 dark:border-red-500'
: 'border-slate-300 dark:border-slate-700 focus:border-indigo-500'
}
${disabled ? 'opacity-50 cursor-not-allowed bg-slate-100 dark:bg-slate-800' : 'cursor-pointer'}
`}
>
{placeholder && (
<option value="" disabled>
{placeholder}
</option>
)}
{options.map((opt) => (
<option key={opt.value} value={opt.value} disabled={opt.disabled}>
{opt.label}
</option>
))}
</select>
<div className="pointer-events-none absolute inset-y-0 right-0 flex items-center px-2 text-slate-500 dark:text-slate-400">
<ChevronDown className="h-4 w-4" />
</div>
</div>
{error && (
<span className="text-xs text-red-500 dark:text-red-400">
{error}
</span>
)}
</div>
);
};
export default Select;