This commit is contained in:
freedakgmail
2025-11-22 23:49:24 +08:00
parent b83382b604
commit c033e46782
3580 changed files with 1745279 additions and 2428 deletions
+126 -2
View File
@@ -9,9 +9,11 @@ import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"
import { Textarea } from "@/components/ui/textarea"
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"
import { CalendarIcon, User, Scroll, Users } from "lucide-react"
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
import { CalendarIcon, User, Scroll, Users, Images, BookOpen } from "lucide-react"
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
import { ImageUpload } from "@/components/ui/image-upload"
import { PhotoGallery } from "./photo-gallery"
import { StoryManager } from "./story-manager"
interface MemberFormProps {
initialData?: Partial<FamilyMember>
@@ -110,6 +112,42 @@ export function MemberForm({ initialData, existingMembers = [], onSubmit, onCanc
}
}
// 4. Circular Reference Detection (循环引用检测)
if (formData.fatherId || formData.motherId) {
const visited = new Set<string>()
const checkCircular = (memberId: string): boolean => {
if (memberId === formData.id) return true
if (visited.has(memberId)) return false
visited.add(memberId)
const member = existingMembers.find((m) => m.id === memberId)
if (!member) return false
if (member.fatherId && checkCircular(member.fatherId)) return true
if (member.motherId && checkCircular(member.motherId)) return true
return false
}
if (formData.fatherId && checkCircular(formData.fatherId)) {
newErrors.push("检测到循环引用:不能将自己的后代设置为父亲")
}
if (formData.motherId && checkCircular(formData.motherId)) {
newErrors.push("检测到循环引用:不能将自己的后代设置为母亲")
}
}
// 5. Self-Reference Detection (自我引用检测)
if (formData.fatherId === formData.id) {
newErrors.push("不能将自己设置为自己的父亲")
}
if (formData.motherId === formData.id) {
newErrors.push("不能将自己设置为自己的母亲")
}
if (formData.spouseIds?.includes(formData.id || "")) {
newErrors.push("不能将自己设置为自己的配偶")
}
setErrors(newErrors)
return newErrors.length === 0
}
@@ -297,6 +335,58 @@ export function MemberForm({ initialData, existingMembers = [], onSubmit, onCanc
</CardContent>
</Card>
{/* Contact Information */}
<Card>
<CardHeader>
<CardTitle className="flex items-center gap-2 text-lg font-serif">
<User className="h-5 w-5" />
(Contact Information)
</CardTitle>
<CardDescription></CardDescription>
</CardHeader>
<CardContent className="grid grid-cols-1 md:grid-cols-2 gap-6">
<div className="space-y-2">
<Label htmlFor="phone"> (Mobile Phone)</Label>
<Input
id="phone"
type="tel"
value={formData.phone || ""}
onChange={(e) => handleChange("phone", e.target.value)}
placeholder="e.g. 13800138000"
/>
</div>
<div className="space-y-2">
<Label htmlFor="telephone"> (Telephone)</Label>
<Input
id="telephone"
type="tel"
value={formData.telephone || ""}
onChange={(e) => handleChange("telephone", e.target.value)}
placeholder="e.g. 0592-1234567"
/>
</div>
<div className="space-y-2">
<Label htmlFor="email"> (Email)</Label>
<Input
id="email"
type="email"
value={formData.email || ""}
onChange={(e) => handleChange("email", e.target.value)}
placeholder="e.g. example@email.com"
/>
</div>
<div className="space-y-2 md:col-span-2">
<Label htmlFor="address"> (Address)</Label>
<Input
id="address"
value={formData.address || ""}
onChange={(e) => handleChange("address", e.target.value)}
placeholder="e.g. 福建省厦门市思明区XX路XX号"
/>
</div>
</CardContent>
</Card>
{/* Biography */}
<Card>
<CardHeader>
@@ -315,6 +405,40 @@ export function MemberForm({ initialData, existingMembers = [], onSubmit, onCanc
</CardContent>
</Card>
{/* Photo Gallery */}
<Card>
<CardHeader>
<CardTitle className="flex items-center gap-2 text-lg font-serif">
<Images className="h-5 w-5" />
(Photo Gallery)
</CardTitle>
<CardDescription></CardDescription>
</CardHeader>
<CardContent>
<PhotoGallery
photoIds={formData.photoIds || []}
onChange={(photoIds) => handleChange("photoIds", photoIds)}
/>
</CardContent>
</Card>
{/* Family Stories */}
<Card>
<CardHeader>
<CardTitle className="flex items-center gap-2 text-lg font-serif">
<BookOpen className="h-5 w-5" />
(Family Stories)
</CardTitle>
<CardDescription></CardDescription>
</CardHeader>
<CardContent>
<StoryManager
stories={formData.stories || []}
onChange={(stories) => handleChange("stories", stories)}
/>
</CardContent>
</Card>
{/* Relationships */}
<Card>
<CardHeader>
+187
View File
@@ -0,0 +1,187 @@
"use client"
import { useState, useEffect } from "react"
import { db } from "@/lib/db"
import { Button } from "@/components/ui/button"
import { Dialog, DialogContent, DialogHeader, DialogTitle } from "@/components/ui/dialog"
import { X, Plus, ZoomIn } from "lucide-react"
import { v4 as uuidv4 } from "uuid"
import imageCompression from "browser-image-compression"
interface PhotoGalleryProps {
photoIds?: string[]
onChange: (photoIds: string[]) => void
readonly?: boolean
}
export function PhotoGallery({ photoIds = [], onChange, readonly = false }: PhotoGalleryProps) {
const [photos, setPhotos] = useState<{ id: string; url: string }[]>([])
const [selectedPhoto, setSelectedPhoto] = useState<string | null>(null)
const [isUploading, setIsUploading] = useState(false)
// 加载照片
useEffect(() => {
const loadPhotos = async () => {
const loadedPhotos = await Promise.all(
photoIds.map(async (id) => {
try {
const image = await db.images.get(id)
if (image) {
const url = URL.createObjectURL(image.blob)
return { id, url }
}
} catch (error) {
console.error('加载照片失败:', error)
}
return null
})
)
setPhotos(loadedPhotos.filter(Boolean) as { id: string; url: string }[])
}
if (photoIds.length > 0) {
loadPhotos()
}
// 清理 URL
return () => {
photos.forEach(photo => URL.revokeObjectURL(photo.url))
}
}, [photoIds])
const handleUpload = async (e: React.ChangeEvent<HTMLInputElement>) => {
const files = e.target.files
if (!files || files.length === 0) return
setIsUploading(true)
try {
const newPhotoIds: string[] = []
for (const file of Array.from(files)) {
if (!file.type.startsWith('image/')) continue
// 压缩图片
const options = {
maxSizeMB: 2,
maxWidthOrHeight: 1920,
useWebWorker: true,
}
const compressedFile = await imageCompression(file, options)
// 保存到数据库
const imageId = uuidv4()
await db.images.add({
id: imageId,
blob: compressedFile,
mimeType: compressedFile.type,
createdAt: new Date().toISOString(),
})
newPhotoIds.push(imageId)
}
// 更新照片列表
onChange([...photoIds, ...newPhotoIds])
} catch (error) {
console.error('上传照片失败:', error)
alert('上传照片失败')
} finally {
setIsUploading(false)
e.target.value = ''
}
}
const handleDelete = (photoId: string) => {
if (confirm('确定要删除这张照片吗?')) {
onChange(photoIds.filter(id => id !== photoId))
}
}
return (
<div className="space-y-4">
<div className="flex items-center justify-between">
<h3 className="text-sm font-medium"> ({photos.length})</h3>
{!readonly && (
<label>
<input
type="file"
multiple
accept="image/*"
className="hidden"
onChange={handleUpload}
disabled={isUploading}
/>
<Button
type="button"
variant="outline"
size="sm"
disabled={isUploading}
asChild
>
<span>
<Plus className="mr-2 h-4 w-4" />
{isUploading ? '上传中...' : '添加照片'}
</span>
</Button>
</label>
)}
</div>
{photos.length > 0 ? (
<div className="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4">
{photos.map((photo) => (
<div key={photo.id} className="relative group aspect-square">
<img
src={photo.url}
alt="家族照片"
className="w-full h-full object-cover rounded-lg border border-border cursor-pointer hover:opacity-90 transition-opacity"
onClick={() => setSelectedPhoto(photo.url)}
/>
{!readonly && (
<Button
type="button"
variant="destructive"
size="icon"
className="absolute top-2 right-2 h-6 w-6 opacity-0 group-hover:opacity-100 transition-opacity"
onClick={() => handleDelete(photo.id)}
>
<X className="h-3 w-3" />
</Button>
)}
<Button
type="button"
variant="secondary"
size="icon"
className="absolute bottom-2 right-2 h-6 w-6 opacity-0 group-hover:opacity-100 transition-opacity"
onClick={() => setSelectedPhoto(photo.url)}
>
<ZoomIn className="h-3 w-3" />
</Button>
</div>
))}
</div>
) : (
<div className="text-center py-8 text-muted-foreground text-sm border border-dashed rounded-lg">
</div>
)}
{/* 照片预览对话框 */}
<Dialog open={!!selectedPhoto} onOpenChange={() => setSelectedPhoto(null)}>
<DialogContent className="max-w-4xl">
<DialogHeader>
<DialogTitle></DialogTitle>
</DialogHeader>
{selectedPhoto && (
<img
src={selectedPhoto}
alt="照片预览"
className="w-full h-auto max-h-[70vh] object-contain"
/>
)}
</DialogContent>
</Dialog>
</div>
)
}
+208
View File
@@ -0,0 +1,208 @@
"use client"
import { useState } from "react"
import { Button } from "@/components/ui/button"
import { Input } from "@/components/ui/input"
import { Textarea } from "@/components/ui/textarea"
import { Label } from "@/components/ui/label"
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogFooter } from "@/components/ui/dialog"
import { Plus, Edit, Trash, BookOpen, Calendar } from "lucide-react"
import type { FamilyStory } from "@/types/family"
import { v4 as uuidv4 } from "uuid"
interface StoryManagerProps {
stories?: FamilyStory[]
onChange: (stories: FamilyStory[]) => void
readonly?: boolean
}
export function StoryManager({ stories = [], onChange, readonly = false }: StoryManagerProps) {
const [isDialogOpen, setIsDialogOpen] = useState(false)
const [editingStory, setEditingStory] = useState<FamilyStory | null>(null)
const [formData, setFormData] = useState<Partial<FamilyStory>>({
title: "",
content: "",
date: "",
})
const handleAdd = () => {
setEditingStory(null)
setFormData({ title: "", content: "", date: "" })
setIsDialogOpen(true)
}
const handleEdit = (story: FamilyStory) => {
setEditingStory(story)
setFormData(story)
setIsDialogOpen(true)
}
const handleDelete = (storyId: string) => {
if (confirm("确定要删除这个故事吗?")) {
onChange(stories.filter(s => s.id !== storyId))
}
}
const handleSave = () => {
if (!formData.title || !formData.content) {
alert("请填写标题和内容")
return
}
const now = new Date().toISOString()
if (editingStory) {
// 更新现有故事
onChange(
stories.map(s =>
s.id === editingStory.id
? { ...s, ...formData, updatedAt: now }
: s
)
)
} else {
// 添加新故事
const newStory: FamilyStory = {
id: uuidv4(),
title: formData.title!,
content: formData.content!,
date: formData.date,
imageIds: formData.imageIds || [],
createdAt: now,
updatedAt: now,
}
onChange([...stories, newStory])
}
setIsDialogOpen(false)
setFormData({ title: "", content: "", date: "" })
}
return (
<div className="space-y-4">
<div className="flex items-center justify-between">
<h3 className="text-sm font-medium flex items-center gap-2">
<BookOpen className="h-4 w-4" />
({stories.length})
</h3>
{!readonly && (
<Button
type="button"
variant="outline"
size="sm"
onClick={handleAdd}
>
<Plus className="mr-2 h-4 w-4" />
</Button>
)}
</div>
{stories.length > 0 ? (
<div className="space-y-4">
{stories
.sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime())
.map((story) => (
<Card key={story.id} className="hover:shadow-md transition-shadow">
<CardHeader className="pb-3">
<div className="flex items-start justify-between">
<div className="flex-1">
<CardTitle className="text-lg font-serif">{story.title}</CardTitle>
{story.date && (
<div className="flex items-center gap-1 text-sm text-muted-foreground mt-1">
<Calendar className="h-3 w-3" />
{story.date}
</div>
)}
</div>
{!readonly && (
<div className="flex gap-1">
<Button
type="button"
variant="ghost"
size="icon"
className="h-8 w-8"
onClick={() => handleEdit(story)}
>
<Edit className="h-3 w-3" />
</Button>
<Button
type="button"
variant="ghost"
size="icon"
className="h-8 w-8 text-destructive hover:text-destructive"
onClick={() => handleDelete(story.id)}
>
<Trash className="h-3 w-3" />
</Button>
</div>
)}
</div>
</CardHeader>
<CardContent>
<p className="text-sm text-muted-foreground whitespace-pre-line leading-relaxed">
{story.content}
</p>
<div className="mt-2 text-xs text-muted-foreground">
{new Date(story.createdAt).toLocaleDateString('zh-CN')}
</div>
</CardContent>
</Card>
))}
</div>
) : (
<div className="text-center py-8 text-muted-foreground text-sm border border-dashed rounded-lg">
</div>
)}
{/* 添加/编辑故事对话框 */}
<Dialog open={isDialogOpen} onOpenChange={setIsDialogOpen}>
<DialogContent className="max-w-2xl">
<DialogHeader>
<DialogTitle>{editingStory ? "编辑故事" : "添加故事"}</DialogTitle>
</DialogHeader>
<div className="space-y-4">
<div className="space-y-2">
<Label htmlFor="story-title"> *</Label>
<Input
id="story-title"
placeholder="例如:爷爷的创业故事"
value={formData.title || ""}
onChange={(e) => setFormData({ ...formData, title: e.target.value })}
/>
</div>
<div className="space-y-2">
<Label htmlFor="story-date"></Label>
<Input
id="story-date"
type="date"
value={formData.date || ""}
onChange={(e) => setFormData({ ...formData, date: e.target.value })}
/>
</div>
<div className="space-y-2">
<Label htmlFor="story-content"> *</Label>
<Textarea
id="story-content"
placeholder="记录家族的珍贵故事..."
className="min-h-[200px]"
value={formData.content || ""}
onChange={(e) => setFormData({ ...formData, content: e.target.value })}
/>
</div>
</div>
<DialogFooter>
<Button variant="outline" onClick={() => setIsDialogOpen(false)}>
</Button>
<Button onClick={handleSave}>
{editingStory ? "保存" : "添加"}
</Button>
</DialogFooter>
</DialogContent>
</Dialog>
</div>
)
}