323 lines
12 KiB
TypeScript
323 lines
12 KiB
TypeScript
|
|
import { useState, useEffect } from "react";
|
|||
|
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
|||
|
|
import { Button } from "@/components/ui/button";
|
|||
|
|
import { Badge } from "@/components/ui/badge";
|
|||
|
|
import { Input } from "@/components/ui/input";
|
|||
|
|
import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle } from "@/components/ui/alert-dialog";
|
|||
|
|
import {
|
|||
|
|
Search,
|
|||
|
|
GitBranch,
|
|||
|
|
Calendar,
|
|||
|
|
Users,
|
|||
|
|
ExternalLink,
|
|||
|
|
Trash2,
|
|||
|
|
RotateCcw,
|
|||
|
|
AlertTriangle,
|
|||
|
|
Inbox
|
|||
|
|
} from "lucide-react";
|
|||
|
|
import { api } from "@/shared/config/database";
|
|||
|
|
import type { Project } from "@/shared/types";
|
|||
|
|
import { toast } from "sonner";
|
|||
|
|
|
|||
|
|
export default function RecycleBin() {
|
|||
|
|
const [deletedProjects, setDeletedProjects] = useState<Project[]>([]);
|
|||
|
|
const [loading, setLoading] = useState(true);
|
|||
|
|
const [searchTerm, setSearchTerm] = useState("");
|
|||
|
|
const [showRestoreDialog, setShowRestoreDialog] = useState(false);
|
|||
|
|
const [showPermanentDeleteDialog, setShowPermanentDeleteDialog] = useState(false);
|
|||
|
|
const [selectedProject, setSelectedProject] = useState<Project | null>(null);
|
|||
|
|
|
|||
|
|
useEffect(() => {
|
|||
|
|
loadDeletedProjects();
|
|||
|
|
}, []);
|
|||
|
|
|
|||
|
|
const loadDeletedProjects = async () => {
|
|||
|
|
try {
|
|||
|
|
setLoading(true);
|
|||
|
|
const data = await api.getDeletedProjects();
|
|||
|
|
setDeletedProjects(data);
|
|||
|
|
} catch (error) {
|
|||
|
|
console.error('Failed to load deleted projects:', error);
|
|||
|
|
toast.error("加载已删除项目失败");
|
|||
|
|
} finally {
|
|||
|
|
setLoading(false);
|
|||
|
|
}
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
const handleRestoreClick = (project: Project) => {
|
|||
|
|
setSelectedProject(project);
|
|||
|
|
setShowRestoreDialog(true);
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
const handlePermanentDeleteClick = (project: Project) => {
|
|||
|
|
setSelectedProject(project);
|
|||
|
|
setShowPermanentDeleteDialog(true);
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
const handleConfirmRestore = async () => {
|
|||
|
|
if (!selectedProject) return;
|
|||
|
|
|
|||
|
|
try {
|
|||
|
|
await api.restoreProject(selectedProject.id);
|
|||
|
|
toast.success(`项目 "${selectedProject.name}" 已恢复`);
|
|||
|
|
setShowRestoreDialog(false);
|
|||
|
|
setSelectedProject(null);
|
|||
|
|
loadDeletedProjects();
|
|||
|
|
} catch (error) {
|
|||
|
|
console.error('Failed to restore project:', error);
|
|||
|
|
toast.error("恢复项目失败");
|
|||
|
|
}
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
const handleConfirmPermanentDelete = async () => {
|
|||
|
|
if (!selectedProject) return;
|
|||
|
|
|
|||
|
|
try {
|
|||
|
|
await api.permanentlyDeleteProject(selectedProject.id);
|
|||
|
|
toast.success(`项目 "${selectedProject.name}" 已永久删除`);
|
|||
|
|
setShowPermanentDeleteDialog(false);
|
|||
|
|
setSelectedProject(null);
|
|||
|
|
loadDeletedProjects();
|
|||
|
|
} catch (error) {
|
|||
|
|
console.error('Failed to permanently delete project:', error);
|
|||
|
|
toast.error("永久删除项目失败");
|
|||
|
|
}
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
const filteredProjects = deletedProjects.filter(project =>
|
|||
|
|
project.name.toLowerCase().includes(searchTerm.toLowerCase()) ||
|
|||
|
|
project.description?.toLowerCase().includes(searchTerm.toLowerCase())
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
const getRepositoryIcon = (type?: string) => {
|
|||
|
|
switch (type) {
|
|||
|
|
case 'github': return '🐙';
|
|||
|
|
case 'gitlab': return '🦊';
|
|||
|
|
default: return '📁';
|
|||
|
|
}
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
const formatDate = (dateString: string) => {
|
|||
|
|
return new Date(dateString).toLocaleDateString('zh-CN');
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
if (loading) {
|
|||
|
|
return (
|
|||
|
|
<div className="flex items-center justify-center min-h-screen">
|
|||
|
|
<div className="text-center">
|
|||
|
|
<div className="animate-spin rounded-full h-12 w-12 border-b-2 border-primary mx-auto mb-4"></div>
|
|||
|
|
<p className="text-gray-500">加载中...</p>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return (
|
|||
|
|
<div className="space-y-6 animate-fade-in">
|
|||
|
|
{/* 页面标题 */}
|
|||
|
|
<div className="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4">
|
|||
|
|
<div>
|
|||
|
|
<h1 className="page-title flex items-center gap-2">
|
|||
|
|
<Trash2 className="w-8 h-8 text-gray-400" />
|
|||
|
|
回收站
|
|||
|
|
</h1>
|
|||
|
|
<p className="page-subtitle">管理已删除的项目,可以恢复或永久删除</p>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
{/* 搜索 */}
|
|||
|
|
<Card>
|
|||
|
|
<CardContent className="p-4">
|
|||
|
|
<div className="flex items-center space-x-4">
|
|||
|
|
<div className="flex-1 relative">
|
|||
|
|
<Search className="absolute left-3 top-1/2 transform -translate-y-1/2 text-gray-400 w-4 h-4" />
|
|||
|
|
<Input
|
|||
|
|
placeholder="搜索已删除的项目..."
|
|||
|
|
value={searchTerm}
|
|||
|
|
onChange={(e) => setSearchTerm(e.target.value)}
|
|||
|
|
className="pl-10"
|
|||
|
|
/>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</CardContent>
|
|||
|
|
</Card>
|
|||
|
|
|
|||
|
|
{/* 项目列表 */}
|
|||
|
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
|||
|
|
{filteredProjects.length > 0 ? (
|
|||
|
|
filteredProjects.map((project) => (
|
|||
|
|
<Card key={project.id} className="card-modern group opacity-75 hover:opacity-100 transition-opacity">
|
|||
|
|
<CardHeader className="pb-4">
|
|||
|
|
<div className="flex items-start justify-between">
|
|||
|
|
<div className="flex items-center space-x-3">
|
|||
|
|
<div className="w-10 h-10 rounded-lg bg-gradient-to-br from-gray-400 to-gray-500 flex items-center justify-center text-white text-lg">
|
|||
|
|
{getRepositoryIcon(project.repository_type)}
|
|||
|
|
</div>
|
|||
|
|
<div>
|
|||
|
|
<CardTitle className="text-lg">
|
|||
|
|
{project.name}
|
|||
|
|
</CardTitle>
|
|||
|
|
{project.description && (
|
|||
|
|
<p className="text-sm text-gray-500 mt-1 line-clamp-2">
|
|||
|
|
{project.description}
|
|||
|
|
</p>
|
|||
|
|
)}
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
<Badge variant="secondary" className="flex-shrink-0 bg-red-100 text-red-700">
|
|||
|
|
已删除
|
|||
|
|
</Badge>
|
|||
|
|
</div>
|
|||
|
|
</CardHeader>
|
|||
|
|
|
|||
|
|
<CardContent className="space-y-4">
|
|||
|
|
{/* 项目信息 */}
|
|||
|
|
<div className="space-y-3">
|
|||
|
|
{project.repository_url && (
|
|||
|
|
<div className="flex items-center text-sm text-gray-500">
|
|||
|
|
<GitBranch className="w-4 h-4 mr-2 flex-shrink-0" />
|
|||
|
|
<a
|
|||
|
|
href={project.repository_url}
|
|||
|
|
target="_blank"
|
|||
|
|
rel="noopener noreferrer"
|
|||
|
|
className="hover:text-primary transition-colors flex items-center truncate"
|
|||
|
|
>
|
|||
|
|
<span className="truncate">{project.repository_url.replace('https://', '')}</span>
|
|||
|
|
<ExternalLink className="w-3 h-3 ml-1 flex-shrink-0" />
|
|||
|
|
</a>
|
|||
|
|
</div>
|
|||
|
|
)}
|
|||
|
|
|
|||
|
|
<div className="flex items-center justify-between text-sm text-gray-500">
|
|||
|
|
<div className="flex items-center">
|
|||
|
|
<Calendar className="w-4 h-4 mr-2" />
|
|||
|
|
删除于 {formatDate(project.updated_at)}
|
|||
|
|
</div>
|
|||
|
|
<div className="flex items-center">
|
|||
|
|
<Users className="w-4 h-4 mr-2" />
|
|||
|
|
{project.owner?.full_name || '未知'}
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
{/* 编程语言 */}
|
|||
|
|
{project.programming_languages && (
|
|||
|
|
<div className="flex flex-wrap gap-2">
|
|||
|
|
{JSON.parse(project.programming_languages).slice(0, 4).map((lang: string) => (
|
|||
|
|
<Badge key={lang} variant="outline" className="text-xs">
|
|||
|
|
{lang}
|
|||
|
|
</Badge>
|
|||
|
|
))}
|
|||
|
|
{JSON.parse(project.programming_languages).length > 4 && (
|
|||
|
|
<Badge variant="outline" className="text-xs">
|
|||
|
|
+{JSON.parse(project.programming_languages).length - 4}
|
|||
|
|
</Badge>
|
|||
|
|
)}
|
|||
|
|
</div>
|
|||
|
|
)}
|
|||
|
|
|
|||
|
|
{/* 操作按钮 */}
|
|||
|
|
<div className="flex gap-2 pt-2">
|
|||
|
|
<Button
|
|||
|
|
size="sm"
|
|||
|
|
variant="outline"
|
|||
|
|
className="flex-1 text-green-600 hover:text-green-700 hover:bg-green-50"
|
|||
|
|
onClick={() => handleRestoreClick(project)}
|
|||
|
|
>
|
|||
|
|
<RotateCcw className="w-4 h-4 mr-2" />
|
|||
|
|
恢复
|
|||
|
|
</Button>
|
|||
|
|
<Button
|
|||
|
|
size="sm"
|
|||
|
|
variant="outline"
|
|||
|
|
className="flex-1 text-red-600 hover:text-red-700 hover:bg-red-50"
|
|||
|
|
onClick={() => handlePermanentDeleteClick(project)}
|
|||
|
|
>
|
|||
|
|
<Trash2 className="w-4 h-4 mr-2" />
|
|||
|
|
永久删除
|
|||
|
|
</Button>
|
|||
|
|
</div>
|
|||
|
|
</CardContent>
|
|||
|
|
</Card>
|
|||
|
|
))
|
|||
|
|
) : (
|
|||
|
|
<div className="col-span-full">
|
|||
|
|
<Card className="card-modern">
|
|||
|
|
<CardContent className="empty-state py-16">
|
|||
|
|
<div className="empty-icon">
|
|||
|
|
<Inbox className="w-8 h-8 text-primary" />
|
|||
|
|
</div>
|
|||
|
|
<h3 className="text-lg font-medium text-gray-900 mb-2">
|
|||
|
|
{searchTerm ? '未找到匹配的项目' : '回收站为空'}
|
|||
|
|
</h3>
|
|||
|
|
<p className="text-gray-500 mb-6 max-w-md">
|
|||
|
|
{searchTerm ? '尝试调整搜索条件' : '回收站中没有已删除的项目'}
|
|||
|
|
</p>
|
|||
|
|
</CardContent>
|
|||
|
|
</Card>
|
|||
|
|
</div>
|
|||
|
|
)}
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
{/* 恢复项目确认对话框 */}
|
|||
|
|
<AlertDialog open={showRestoreDialog} onOpenChange={setShowRestoreDialog}>
|
|||
|
|
<AlertDialogContent>
|
|||
|
|
<AlertDialogHeader>
|
|||
|
|
<AlertDialogTitle>确认恢复项目</AlertDialogTitle>
|
|||
|
|
<AlertDialogDescription>
|
|||
|
|
您确定要恢复项目 <span className="font-semibold text-gray-900">"{selectedProject?.name}"</span> 吗?
|
|||
|
|
<br />
|
|||
|
|
<br />
|
|||
|
|
恢复后,该项目将重新出现在项目列表中,您可以继续使用该项目的所有功能。
|
|||
|
|
</AlertDialogDescription>
|
|||
|
|
</AlertDialogHeader>
|
|||
|
|
<AlertDialogFooter>
|
|||
|
|
<AlertDialogCancel>取消</AlertDialogCancel>
|
|||
|
|
<AlertDialogAction
|
|||
|
|
onClick={handleConfirmRestore}
|
|||
|
|
className="bg-green-600 hover:bg-green-700 focus:ring-green-600"
|
|||
|
|
>
|
|||
|
|
确认恢复
|
|||
|
|
</AlertDialogAction>
|
|||
|
|
</AlertDialogFooter>
|
|||
|
|
</AlertDialogContent>
|
|||
|
|
</AlertDialog>
|
|||
|
|
|
|||
|
|
{/* 永久删除确认对话框 */}
|
|||
|
|
<AlertDialog open={showPermanentDeleteDialog} onOpenChange={setShowPermanentDeleteDialog}>
|
|||
|
|
<AlertDialogContent>
|
|||
|
|
<AlertDialogHeader>
|
|||
|
|
<AlertDialogTitle className="flex items-center gap-2 text-red-600">
|
|||
|
|
<AlertTriangle className="w-5 h-5" />
|
|||
|
|
警告:永久删除项目
|
|||
|
|
</AlertDialogTitle>
|
|||
|
|
<AlertDialogDescription>
|
|||
|
|
您确定要<span className="font-semibold text-red-600">永久删除</span>项目 <span className="font-semibold text-gray-900">"{selectedProject?.name}"</span> 吗?
|
|||
|
|
<br />
|
|||
|
|
<br />
|
|||
|
|
<div className="bg-red-50 border border-red-200 rounded-lg p-4 my-3">
|
|||
|
|
<p className="text-red-800 font-semibold mb-2">⚠️ 此操作不可撤销!</p>
|
|||
|
|
<ul className="list-disc list-inside text-red-700 space-y-1 text-sm">
|
|||
|
|
<li>项目数据将被永久删除</li>
|
|||
|
|
<li>相关的审计任务可能会受影响</li>
|
|||
|
|
<li>无法通过任何方式恢复</li>
|
|||
|
|
</ul>
|
|||
|
|
</div>
|
|||
|
|
</AlertDialogDescription>
|
|||
|
|
</AlertDialogHeader>
|
|||
|
|
<AlertDialogFooter>
|
|||
|
|
<AlertDialogCancel>取消</AlertDialogCancel>
|
|||
|
|
<AlertDialogAction
|
|||
|
|
onClick={handleConfirmPermanentDelete}
|
|||
|
|
className="bg-red-600 hover:bg-red-700 focus:ring-red-600"
|
|||
|
|
>
|
|||
|
|
确认永久删除
|
|||
|
|
</AlertDialogAction>
|
|||
|
|
</AlertDialogFooter>
|
|||
|
|
</AlertDialogContent>
|
|||
|
|
</AlertDialog>
|
|||
|
|
</div>
|
|||
|
|
);
|
|||
|
|
}
|
|||
|
|
|