morethanadiagnosis-hub/web/components/common/Input.tsx
Claude 9232ebe294
feat(web): complete Phase 1 - foundation components, layouts, and hooks
Implemented complete design system and foundational infrastructure:

**Design System Components:**
- Button (all variants: primary, secondary, ghost, danger)
- Input & Textarea (with validation and error states)
- Card (elevated, outlined, flat variants)
- Modal/Dialog (with focus trap and accessibility)
- Avatar (with fallback initials)
- Badge (all color variants)
- Form helpers (FormField, Checkbox, Select)
- Link component with Next.js integration
- Navigation (Header, Footer with responsive design)

**Layouts:**
- MainLayout (with Header/Footer for public pages)
- AuthLayout (minimal layout for auth flows)
- DashboardLayout (with sidebar navigation)

**Hooks & Utilities:**
- useAuth() - authentication state management
- useApi() - API calls with loading/error states
- useLocalStorage() - persistent state management
- apiClient - Axios instance with token refresh
- authStore - Zustand store for auth state

**Configuration:**
- Tailwind config with design tokens
- Dark mode support via CSS variables
- Global styles with accessibility focus
- WCAG 2.2 AA+ compliant focus indicators

All components follow accessibility best practices with proper ARIA labels,
keyboard navigation, and screen reader support.

Job ID: MTAD-IMPL-2025-11-18-CL
2025-11-18 01:02:05 +00:00

124 lines
3.8 KiB
TypeScript

'use client'
import React from 'react'
export type InputType = 'text' | 'email' | 'password' | 'number' | 'tel' | 'url'
export interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type' | 'size'> {
type?: InputType
label?: string
error?: string
helperText?: string
fullWidth?: boolean
leftIcon?: React.ReactNode
rightIcon?: React.ReactNode
}
export const Input = React.forwardRef<HTMLInputElement, InputProps>(
(
{
type = 'text',
label,
error,
helperText,
fullWidth = false,
leftIcon,
rightIcon,
className = '',
id,
required,
disabled,
...props
},
ref
) => {
const inputId = id || `input-${Math.random().toString(36).substr(2, 9)}`
const errorId = `${inputId}-error`
const helperId = `${inputId}-helper`
const hasError = Boolean(error)
const baseInputStyles = 'block w-full rounded-md border transition-colors duration-150 focus:outline-none focus:ring-2 focus:ring-offset-0'
const normalStyles = 'border-gray-300 focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-800 dark:text-white'
const errorStyles = 'border-error-500 focus:border-error-500 focus:ring-error-500'
const disabledStyles = 'disabled:bg-gray-100 disabled:cursor-not-allowed disabled:opacity-60 dark:disabled:bg-gray-900'
const paddingStyles = leftIcon || rightIcon ? 'px-10 py-2' : 'px-4 py-2'
const inputClassName = `${baseInputStyles} ${hasError ? errorStyles : normalStyles} ${disabledStyles} ${paddingStyles} ${className}`.trim()
const containerWidth = fullWidth ? 'w-full' : ''
return (
<div className={containerWidth}>
{label && (
<label
htmlFor={inputId}
className="block text-sm font-medium text-gray-700 dark:text-gray-200 mb-1"
>
{label}
{required && <span className="text-error-500 ml-1" aria-label="required">*</span>}
</label>
)}
<div className="relative">
{leftIcon && (
<div className="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none text-gray-400">
{leftIcon}
</div>
)}
<input
ref={ref}
type={type}
id={inputId}
className={inputClassName}
aria-invalid={hasError}
aria-describedby={
hasError ? errorId : helperText ? helperId : undefined
}
required={required}
disabled={disabled}
{...props}
/>
{rightIcon && (
<div className="absolute inset-y-0 right-0 pr-3 flex items-center pointer-events-none text-gray-400">
{rightIcon}
</div>
)}
{hasError && (
<div className="absolute inset-y-0 right-0 pr-3 flex items-center pointer-events-none">
<svg
className="h-5 w-5 text-error-500"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fillRule="evenodd"
d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7 4a1 1 0 11-2 0 1 1 0 012 0zm-1-9a1 1 0 00-1 1v4a1 1 0 102 0V6a1 1 0 00-1-1z"
clipRule="evenodd"
/>
</svg>
</div>
)}
</div>
{error && (
<p className="mt-1 text-sm text-error-500" id={errorId} role="alert">
{error}
</p>
)}
{helperText && !error && (
<p className="mt-1 text-sm text-gray-500 dark:text-gray-400" id={helperId}>
{helperText}
</p>
)}
</div>
)
}
)
Input.displayName = 'Input'