7f6128a6ff
- 删除 .impeccable.md - 新增 detail-swipe-nav, loading-state, skeleton, tooltip 组件 - 新增 use-keyboard-shortcuts, use-swipe-gesture hooks - 更新 contact, news, products, services, solutions 等页面 - 优化 header, mobile-menu, input, page-transition 组件 - 添加 terms 与错误追踪测试页面
57 lines
2.4 KiB
TypeScript
57 lines
2.4 KiB
TypeScript
import * as React from "react"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
label?: string | React.ReactNode
|
|
error?: string
|
|
'data-testid'?: string
|
|
}
|
|
|
|
const Input = React.forwardRef<HTMLInputElement, InputProps>(
|
|
({ className, type, label, error, id, ...props }, ref) => {
|
|
const generatedId = React.useId()
|
|
const inputId = id || generatedId
|
|
const errorId = `${inputId}-error`
|
|
|
|
return (
|
|
<div className="w-full">
|
|
{label && (
|
|
<label
|
|
htmlFor={inputId}
|
|
className="block text-sm font-medium text-[var(--color-text-secondary)] mb-2"
|
|
>
|
|
{label}
|
|
{props.required && <span className="text-[var(--color-brand-primary)] ml-1">*</span>}
|
|
</label>
|
|
)}
|
|
<input
|
|
type={type}
|
|
id={inputId}
|
|
data-slot="input"
|
|
data-testid={props['data-testid']}
|
|
className={cn(
|
|
"file:text-foreground placeholder:text-[var(--color-text-hint)] selection:bg-[var(--color-primary)] selection:text-white h-14 min-h-[56px] w-full min-w-0 rounded-lg border border-[var(--color-border-primary)] bg-[var(--color-bg-section)] px-4 py-3 text-base text-[var(--color-text-primary)] shadow-sm transition-all duration-300 outline-none file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 touch-manipulation md:h-12 md:min-h-[44px] md:py-2",
|
|
"focus-visible:border-[var(--color-primary)] focus-visible:ring-2 focus-visible:ring-[var(--color-primary)]/50 focus-visible:shadow-lg focus-visible:shadow-[var(--color-primary)]/20",
|
|
"hover:border-[var(--color-text-secondary)]",
|
|
error && "border-[var(--color-brand-primary)] focus-visible:border-[var(--color-brand-primary)] focus-visible:ring-[var(--color-brand-primary)]/50",
|
|
className
|
|
)}
|
|
ref={ref}
|
|
aria-required={props.required ? "true" : undefined}
|
|
aria-invalid={error ? "true" : "false"}
|
|
aria-describedby={error ? errorId : undefined}
|
|
{...props}
|
|
/>
|
|
{error && (
|
|
<p id={errorId} className="mt-1 text-sm text-[var(--color-brand-primary)]" role="alert" data-testid="error-message">
|
|
{error}
|
|
</p>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
)
|
|
Input.displayName = "Input"
|
|
|
|
export { Input }
|