|
|
import React, { useState, useEffect } from 'react'; |
|
|
import { X, Save, Calendar, MapPin, User, Loader2 } from 'lucide-react'; |
|
|
import { UserInput, Gender } from '../../types'; |
|
|
import SmartBaziInput from '../SmartBaziInput'; |
|
|
|
|
|
interface CreateProfileModalProps { |
|
|
onClose: () => void; |
|
|
onSave: (data: UserInput) => void; |
|
|
initialData?: UserInput & { |
|
|
id: string; |
|
|
isDefault: boolean; |
|
|
createdAt: string; |
|
|
}; |
|
|
} |
|
|
|
|
|
const CreateProfileModal: React.FC<CreateProfileModalProps> = ({ |
|
|
onClose, |
|
|
onSave, |
|
|
initialData |
|
|
}) => { |
|
|
const [useSmartInput, setUseSmartInput] = useState(true); |
|
|
const [isSubmitting, setIsSubmitting] = useState(false); |
|
|
const [errors, setErrors] = useState<Record<string, string>>({}); |
|
|
|
|
|
const [formData, setFormData] = useState<UserInput>(() => { |
|
|
if (initialData) { |
|
|
const { id, isDefault, createdAt, ...userData } = initialData; |
|
|
return userData; |
|
|
} |
|
|
|
|
|
|
|
|
return { |
|
|
name: '', |
|
|
birthPlace: '', |
|
|
gender: Gender.MALE, |
|
|
birthYear: '', |
|
|
yearPillar: '', |
|
|
monthPillar: '', |
|
|
dayPillar: '', |
|
|
hourPillar: '', |
|
|
startAge: '', |
|
|
firstDaYun: '', |
|
|
modelName: 'gemini-3-pro-preview', |
|
|
apiBaseUrl: 'https://ttkk.inping.com/v1', |
|
|
apiKey: '', |
|
|
useCustomApi: false, |
|
|
authEmail: '', |
|
|
authPassword: '', |
|
|
}; |
|
|
}); |
|
|
|
|
|
const handleBasicInputChange = (e: React.ChangeEvent<HTMLInputElement | HTMLSelectElement>) => { |
|
|
const { name, value } = e.target; |
|
|
setFormData(prev => ({ ...prev, [name]: value })); |
|
|
|
|
|
|
|
|
if (errors[name]) { |
|
|
setErrors(prev => ({ ...prev, [name]: '' })); |
|
|
} |
|
|
}; |
|
|
|
|
|
const handleBaziCalculated = (baziData: any) => { |
|
|
setFormData(prev => ({ |
|
|
...prev, |
|
|
birthPlace: baziData.birthPlace || prev.birthPlace, |
|
|
birthYear: baziData.birthYear, |
|
|
yearPillar: baziData.yearPillar, |
|
|
monthPillar: baziData.monthPillar, |
|
|
dayPillar: baziData.dayPillar, |
|
|
hourPillar: baziData.hourPillar, |
|
|
startAge: baziData.startAge, |
|
|
firstDaYun: baziData.firstDaYun, |
|
|
})); |
|
|
|
|
|
|
|
|
if (errors.bazi) { |
|
|
setErrors(prev => ({ ...prev, bazi: '' })); |
|
|
} |
|
|
}; |
|
|
|
|
|
const validateForm = () => { |
|
|
const newErrors: Record<string, string> = {}; |
|
|
|
|
|
|
|
|
if (!formData.name.trim()) { |
|
|
newErrors.name = 'Name is required'; |
|
|
} |
|
|
|
|
|
|
|
|
const hasBasicInfo = formData.birthYear && formData.birthPlace; |
|
|
const hasCompleteBazi = formData.yearPillar && formData.monthPillar && |
|
|
formData.dayPillar && formData.hourPillar; |
|
|
|
|
|
if (!hasBasicInfo && !hasCompleteBazi) { |
|
|
newErrors.bazi = 'Please provide either birth details or complete Bazi pillars'; |
|
|
} |
|
|
|
|
|
setErrors(newErrors); |
|
|
return Object.keys(newErrors).length === 0; |
|
|
}; |
|
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => { |
|
|
e.preventDefault(); |
|
|
|
|
|
if (!validateForm()) { |
|
|
return; |
|
|
} |
|
|
|
|
|
setIsSubmitting(true); |
|
|
|
|
|
try { |
|
|
await onSave(formData); |
|
|
} catch (error) { |
|
|
console.error('Failed to save profile:', error); |
|
|
setErrors({ submit: 'Failed to save profile. Please try again.' }); |
|
|
} finally { |
|
|
setIsSubmitting(false); |
|
|
} |
|
|
}; |
|
|
|
|
|
const toggleInputMode = () => { |
|
|
setUseSmartInput(!useSmartInput); |
|
|
|
|
|
if (errors.bazi) { |
|
|
setErrors(prev => ({ ...prev, bazi: '' })); |
|
|
} |
|
|
}; |
|
|
|
|
|
return ( |
|
|
<div className="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 p-4"> |
|
|
<div className="bg-white rounded-xl shadow-xl max-w-4xl w-full max-h-[90vh] overflow-y-auto"> |
|
|
{/* Header */} |
|
|
<div className="flex items-center justify-between p-6 border-b border-gray-200"> |
|
|
<h2 className="text-xl font-semibold text-gray-900"> |
|
|
{initialData ? 'Edit Profile' : 'Create New Profile'} |
|
|
</h2> |
|
|
<button |
|
|
onClick={onClose} |
|
|
className="p-2 hover:bg-gray-100 rounded-lg transition-colors" |
|
|
> |
|
|
<X className="w-5 h-5 text-gray-500" /> |
|
|
</button> |
|
|
</div> |
|
|
|
|
|
{/* Form */} |
|
|
<form onSubmit={handleSubmit} className="p-6 space-y-6"> |
|
|
{/* Basic Information */} |
|
|
<div className="space-y-4"> |
|
|
<h3 className="text-lg font-medium text-gray-900">Basic Information</h3> |
|
|
|
|
|
{/* Name */} |
|
|
<div> |
|
|
<label className="flex items-center space-x-2 text-sm font-medium text-gray-700 mb-2"> |
|
|
<User className="w-4 h-4" /> |
|
|
<span>Profile Name</span> |
|
|
</label> |
|
|
<input |
|
|
type="text" |
|
|
name="name" |
|
|
value={formData.name} |
|
|
onChange={handleBasicInputChange} |
|
|
placeholder="Enter a name for this profile" |
|
|
className={`w-full px-4 py-2 border rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent ${ |
|
|
errors.name ? 'border-red-300' : 'border-gray-300' |
|
|
}`} |
|
|
/> |
|
|
{errors.name && ( |
|
|
<p className="mt-1 text-sm text-red-600">{errors.name}</p> |
|
|
)} |
|
|
</div> |
|
|
|
|
|
{/* Gender */} |
|
|
<div> |
|
|
<label className="text-sm font-medium text-gray-700 mb-2 block">Gender</label> |
|
|
<div className="flex space-x-4"> |
|
|
<label className="flex items-center space-x-2 cursor-pointer"> |
|
|
<input |
|
|
type="radio" |
|
|
name="gender" |
|
|
value={Gender.MALE} |
|
|
checked={formData.gender === Gender.MALE} |
|
|
onChange={handleBasicInputChange} |
|
|
className="w-4 h-4 text-blue-600" |
|
|
/> |
|
|
<span className="text-sm text-gray-700">Male</span> |
|
|
</label> |
|
|
<label className="flex items-center space-x-2 cursor-pointer"> |
|
|
<input |
|
|
type="radio" |
|
|
name="gender" |
|
|
value={Gender.FEMALE} |
|
|
checked={formData.gender === Gender.FEMALE} |
|
|
onChange={handleBasicInputChange} |
|
|
className="w-4 h-4 text-blue-600" |
|
|
/> |
|
|
<span className="text-sm text-gray-700">Female</span> |
|
|
</label> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
{/* Bazi Information */} |
|
|
<div className="space-y-4"> |
|
|
<div className="flex items-center justify-between"> |
|
|
<h3 className="text-lg font-medium text-gray-900">Birth Information</h3> |
|
|
<button |
|
|
type="button" |
|
|
onClick={toggleInputMode} |
|
|
className="text-sm text-blue-600 hover:text-blue-700 font-medium" |
|
|
> |
|
|
{useSmartInput ? 'Switch to Manual Input' : 'Use Smart Calculator'} |
|
|
</button> |
|
|
</div> |
|
|
|
|
|
{errors.bazi && ( |
|
|
<div className="bg-red-50 border border-red-200 text-red-700 px-4 py-3 rounded-lg"> |
|
|
{errors.bazi} |
|
|
</div> |
|
|
)} |
|
|
|
|
|
{useSmartInput ? ( |
|
|
<SmartBaziInput |
|
|
initialData={{ |
|
|
birthYear: formData.birthYear, |
|
|
yearPillar: formData.yearPillar, |
|
|
monthPillar: formData.monthPillar, |
|
|
dayPillar: formData.dayPillar, |
|
|
hourPillar: formData.hourPillar, |
|
|
startAge: formData.startAge, |
|
|
firstDaYun: formData.firstDaYun, |
|
|
birthPlace: formData.birthPlace, |
|
|
gender: formData.gender |
|
|
}} |
|
|
onCalculate={handleBaziCalculated} |
|
|
initialMode={ |
|
|
formData.birthYear || formData.birthPlace ? 'smart' : 'manual' |
|
|
} |
|
|
/> |
|
|
) : ( |
|
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-4"> |
|
|
{/* Manual input fields */} |
|
|
<div> |
|
|
<label className="flex items-center space-x-2 text-sm font-medium text-gray-700 mb-2"> |
|
|
<Calendar className="w-4 h-4" /> |
|
|
<span>Birth Year</span> |
|
|
</label> |
|
|
<input |
|
|
type="text" |
|
|
name="birthYear" |
|
|
value={formData.birthYear} |
|
|
onChange={handleBasicInputChange} |
|
|
placeholder="e.g., 1990" |
|
|
className="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent" |
|
|
/> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<label className="flex items-center space-x-2 text-sm font-medium text-gray-700 mb-2"> |
|
|
<MapPin className="w-4 h-4" /> |
|
|
<span>Birth Place</span> |
|
|
</label> |
|
|
<input |
|
|
type="text" |
|
|
name="birthPlace" |
|
|
value={formData.birthPlace} |
|
|
onChange={handleBasicInputChange} |
|
|
placeholder="City, Country" |
|
|
className="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent" |
|
|
/> |
|
|
</div> |
|
|
|
|
|
{/* Bazi Pillars */} |
|
|
<div> |
|
|
<label className="text-sm font-medium text-gray-700 mb-2 block">Year Pillar</label> |
|
|
<input |
|
|
type="text" |
|
|
name="yearPillar" |
|
|
value={formData.yearPillar} |
|
|
onChange={handleBasicInputChange} |
|
|
placeholder="e.g., 甲子" |
|
|
className="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent" |
|
|
/> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<label className="text-sm font-medium text-gray-700 mb-2 block">Month Pillar</label> |
|
|
<input |
|
|
type="text" |
|
|
name="monthPillar" |
|
|
value={formData.monthPillar} |
|
|
onChange={handleBasicInputChange} |
|
|
placeholder="e.g., 丙寅" |
|
|
className="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent" |
|
|
/> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<label className="text-sm font-medium text-gray-700 mb-2 block">Day Pillar</label> |
|
|
<input |
|
|
type="text" |
|
|
name="dayPillar" |
|
|
value={formData.dayPillar} |
|
|
onChange={handleBasicInputChange} |
|
|
placeholder="e.g., 丁卯" |
|
|
className="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent" |
|
|
/> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<label className="text-sm font-medium text-gray-700 mb-2 block">Hour Pillar</label> |
|
|
<input |
|
|
type="text" |
|
|
name="hourPillar" |
|
|
value={formData.hourPillar} |
|
|
onChange={handleBasicInputChange} |
|
|
placeholder="e.g., 戊辰" |
|
|
className="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent" |
|
|
/> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<label className="text-sm font-medium text-gray-700 mb-2 block">Start Age</label> |
|
|
<input |
|
|
type="text" |
|
|
name="startAge" |
|
|
value={formData.startAge} |
|
|
onChange={handleBasicInputChange} |
|
|
placeholder="e.g., 8" |
|
|
className="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent" |
|
|
/> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<label className="text-sm font-medium text-gray-700 mb-2 block">First Da Yun</label> |
|
|
<input |
|
|
type="text" |
|
|
name="firstDaYun" |
|
|
value={formData.firstDaYun} |
|
|
onChange={handleBasicInputChange} |
|
|
placeholder="e.g., 甲戌" |
|
|
className="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent" |
|
|
/> |
|
|
</div> |
|
|
</div> |
|
|
)} |
|
|
</div> |
|
|
|
|
|
{/* Error Message */} |
|
|
{errors.submit && ( |
|
|
<div className="bg-red-50 border border-red-200 text-red-700 px-4 py-3 rounded-lg"> |
|
|
{errors.submit} |
|
|
</div> |
|
|
)} |
|
|
|
|
|
{/* Actions */} |
|
|
<div className="flex justify-end space-x-3 pt-4"> |
|
|
<button |
|
|
type="button" |
|
|
onClick={onClose} |
|
|
disabled={isSubmitting} |
|
|
className="px-6 py-2 border border-gray-300 text-gray-700 rounded-lg hover:bg-gray-50 transition-colors disabled:opacity-50 disabled:cursor-not-allowed" |
|
|
> |
|
|
Cancel |
|
|
</button> |
|
|
<button |
|
|
type="submit" |
|
|
disabled={isSubmitting} |
|
|
className="flex items-center space-x-2 px-6 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition-colors disabled:opacity-50 disabled:cursor-not-allowed" |
|
|
> |
|
|
{isSubmitting ? ( |
|
|
<> |
|
|
<Loader2 className="w-4 h-4 animate-spin" /> |
|
|
<span>Saving...</span> |
|
|
</> |
|
|
) : ( |
|
|
<> |
|
|
<Save className="w-4 h-4" /> |
|
|
<span>{initialData ? 'Update' : 'Create'} Profile</span> |
|
|
</> |
|
|
)} |
|
|
</button> |
|
|
</div> |
|
|
</form> |
|
|
</div> |
|
|
</div> |
|
|
); |
|
|
}; |
|
|
|
|
|
export default CreateProfileModal; |