2025-06-30 19:58:36 +02:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import Link from "next/link";
|
|
|
|
|
import { useState } from "react";
|
|
|
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
|
import { Card, CardContent } from "@/components/ui/card";
|
2025-07-02 19:39:08 +05:30
|
|
|
import { Checkbox } from "@/components/ui/checkbox";
|
2025-06-30 19:58:36 +02:00
|
|
|
import {
|
|
|
|
|
ChevronLeft,
|
|
|
|
|
Plus,
|
|
|
|
|
Calendar,
|
|
|
|
|
MoreHorizontal,
|
|
|
|
|
Video,
|
|
|
|
|
Loader2,
|
2025-07-02 19:39:08 +05:30
|
|
|
X,
|
|
|
|
|
Trash2,
|
2025-06-30 19:58:36 +02:00
|
|
|
} from "lucide-react";
|
|
|
|
|
import { TProject } from "@/types/project";
|
|
|
|
|
import Image from "next/image";
|
|
|
|
|
import {
|
|
|
|
|
DropdownMenu,
|
|
|
|
|
DropdownMenuItem,
|
|
|
|
|
DropdownMenuContent,
|
|
|
|
|
DropdownMenuTrigger,
|
|
|
|
|
DropdownMenuSeparator,
|
|
|
|
|
} from "@/components/ui/dropdown-menu";
|
|
|
|
|
import { useProjectStore } from "@/stores/project-store";
|
|
|
|
|
import { useRouter } from "next/navigation";
|
|
|
|
|
import { DeleteProjectDialog } from "@/components/delete-project-dialog";
|
|
|
|
|
import { RenameProjectDialog } from "@/components/rename-project-dialog";
|
|
|
|
|
|
|
|
|
|
export default function ProjectsPage() {
|
2025-07-02 19:39:08 +05:30
|
|
|
const {
|
|
|
|
|
createNewProject,
|
|
|
|
|
savedProjects,
|
|
|
|
|
isLoading,
|
|
|
|
|
isInitialized,
|
|
|
|
|
deleteProject,
|
|
|
|
|
} = useProjectStore();
|
2025-06-30 19:58:36 +02:00
|
|
|
const router = useRouter();
|
2025-07-02 19:39:08 +05:30
|
|
|
const [isSelectionMode, setIsSelectionMode] = useState(false);
|
|
|
|
|
const [selectedProjects, setSelectedProjects] = useState<Set<string>>(
|
|
|
|
|
new Set()
|
|
|
|
|
);
|
|
|
|
|
const [isBulkDeleteDialogOpen, setIsBulkDeleteDialogOpen] = useState(false);
|
2025-06-30 19:58:36 +02:00
|
|
|
|
|
|
|
|
const handleCreateProject = async () => {
|
|
|
|
|
const projectId = await createNewProject("New Project");
|
|
|
|
|
console.log("projectId", projectId);
|
|
|
|
|
router.push(`/editor/${projectId}`);
|
|
|
|
|
};
|
|
|
|
|
|
2025-07-02 19:39:08 +05:30
|
|
|
const handleSelectProject = (projectId: string, checked: boolean) => {
|
|
|
|
|
const newSelected = new Set(selectedProjects);
|
|
|
|
|
if (checked) {
|
|
|
|
|
newSelected.add(projectId);
|
|
|
|
|
} else {
|
|
|
|
|
newSelected.delete(projectId);
|
|
|
|
|
}
|
|
|
|
|
setSelectedProjects(newSelected);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleSelectAll = (checked: boolean) => {
|
|
|
|
|
if (checked) {
|
|
|
|
|
setSelectedProjects(new Set(savedProjects.map((p) => p.id)));
|
|
|
|
|
} else {
|
|
|
|
|
setSelectedProjects(new Set());
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleCancelSelection = () => {
|
|
|
|
|
setIsSelectionMode(false);
|
|
|
|
|
setSelectedProjects(new Set());
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleBulkDelete = async () => {
|
2025-07-12 17:14:53 +02:00
|
|
|
await Promise.all(
|
|
|
|
|
Array.from(selectedProjects).map((projectId) => deleteProject(projectId))
|
|
|
|
|
);
|
2025-07-02 19:39:08 +05:30
|
|
|
setSelectedProjects(new Set());
|
|
|
|
|
setIsSelectionMode(false);
|
|
|
|
|
setIsBulkDeleteDialogOpen(false);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const allSelected =
|
|
|
|
|
savedProjects.length > 0 && selectedProjects.size === savedProjects.length;
|
|
|
|
|
const someSelected =
|
|
|
|
|
selectedProjects.size > 0 && selectedProjects.size < savedProjects.length;
|
|
|
|
|
|
2025-06-30 19:58:36 +02:00
|
|
|
return (
|
|
|
|
|
<div className="min-h-screen bg-background">
|
|
|
|
|
<div className="pt-6 px-6 flex items-center justify-between w-full h-16">
|
|
|
|
|
<Link
|
|
|
|
|
href="/"
|
|
|
|
|
className="flex items-center gap-1 hover:text-muted-foreground transition-colors"
|
|
|
|
|
>
|
|
|
|
|
<ChevronLeft className="!size-5 shrink-0" />
|
|
|
|
|
<span className="text-sm font-medium">Back</span>
|
|
|
|
|
</Link>
|
|
|
|
|
<div className="block md:hidden">
|
2025-07-02 19:39:08 +05:30
|
|
|
{isSelectionMode ? (
|
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
|
<Button
|
|
|
|
|
variant="outline"
|
|
|
|
|
size="sm"
|
|
|
|
|
onClick={handleCancelSelection}
|
|
|
|
|
>
|
|
|
|
|
<X className="!size-4" />
|
|
|
|
|
Cancel
|
|
|
|
|
</Button>
|
|
|
|
|
{selectedProjects.size > 0 && (
|
|
|
|
|
<Button
|
|
|
|
|
variant="destructive"
|
|
|
|
|
size="sm"
|
|
|
|
|
onClick={() => setIsBulkDeleteDialogOpen(true)}
|
|
|
|
|
>
|
|
|
|
|
<Trash2 className="!size-4" />
|
|
|
|
|
Delete ({selectedProjects.size})
|
|
|
|
|
</Button>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
) : (
|
|
|
|
|
<CreateButton onClick={handleCreateProject} />
|
|
|
|
|
)}
|
2025-06-30 19:58:36 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<main className="max-w-6xl mx-auto px-6 pt-6 pb-6">
|
|
|
|
|
<div className="mb-8 flex items-center justify-between">
|
|
|
|
|
<div className="flex flex-col gap-3">
|
|
|
|
|
<h1 className="text-2xl md:text-3xl font-bold tracking-tight">
|
|
|
|
|
Your Projects
|
|
|
|
|
</h1>
|
|
|
|
|
<p className="text-muted-foreground">
|
|
|
|
|
{savedProjects.length}{" "}
|
|
|
|
|
{savedProjects.length === 1 ? "project" : "projects"}
|
2025-07-02 19:39:08 +05:30
|
|
|
{isSelectionMode && selectedProjects.size > 0 && (
|
|
|
|
|
<span className="ml-2 text-primary">
|
|
|
|
|
• {selectedProjects.size} selected
|
|
|
|
|
</span>
|
|
|
|
|
)}
|
2025-06-30 19:58:36 +02:00
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="hidden md:block">
|
2025-07-02 19:39:08 +05:30
|
|
|
{isSelectionMode ? (
|
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
|
<Button variant="outline" onClick={handleCancelSelection}>
|
|
|
|
|
<X className="!size-4" />
|
|
|
|
|
Cancel
|
|
|
|
|
</Button>
|
|
|
|
|
{selectedProjects.size > 0 && (
|
|
|
|
|
<Button
|
|
|
|
|
variant="destructive"
|
|
|
|
|
onClick={() => setIsBulkDeleteDialogOpen(true)}
|
|
|
|
|
>
|
|
|
|
|
<Trash2 className="!size-4" />
|
|
|
|
|
Delete Selected ({selectedProjects.size})
|
|
|
|
|
</Button>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
) : (
|
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
|
<Button
|
|
|
|
|
variant="outline"
|
|
|
|
|
onClick={() => setIsSelectionMode(true)}
|
|
|
|
|
disabled={savedProjects.length === 0}
|
|
|
|
|
>
|
|
|
|
|
Select Projects
|
|
|
|
|
</Button>
|
|
|
|
|
<CreateButton onClick={handleCreateProject} />
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
2025-06-30 19:58:36 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2025-07-02 19:39:08 +05:30
|
|
|
{isSelectionMode && savedProjects.length > 0 && (
|
2025-07-15 23:48:47 +02:00
|
|
|
<div
|
|
|
|
|
className="mb-6 p-4 bg-muted/30 rounded-lg border cursor-pointer hover:bg-muted/40 transition-colors"
|
|
|
|
|
onClick={() => handleSelectAll(!allSelected)}
|
|
|
|
|
>
|
2025-07-02 19:39:08 +05:30
|
|
|
<div className="flex items-center gap-3">
|
|
|
|
|
<Checkbox
|
|
|
|
|
checked={allSelected}
|
|
|
|
|
onCheckedChange={handleSelectAll}
|
2025-07-15 23:48:47 +02:00
|
|
|
onClick={(e) => e.stopPropagation()}
|
2025-07-02 19:39:08 +05:30
|
|
|
/>
|
2025-07-15 23:48:47 +02:00
|
|
|
<div className="flex-1 flex items-center justify-start gap-2">
|
|
|
|
|
<span className="text-sm font-medium">
|
|
|
|
|
{allSelected ? "Deselect All" : "Select All"}
|
|
|
|
|
</span>
|
|
|
|
|
<span className="text-sm text-muted-foreground">
|
|
|
|
|
({selectedProjects.size} of {savedProjects.length} selected)
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
2025-07-02 19:39:08 +05:30
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
2025-06-30 19:58:36 +02:00
|
|
|
{isLoading || !isInitialized ? (
|
|
|
|
|
<div className="flex items-center justify-center py-16">
|
|
|
|
|
<Loader2 className="h-8 w-8 text-muted-foreground animate-spin" />
|
|
|
|
|
</div>
|
|
|
|
|
) : savedProjects.length === 0 ? (
|
|
|
|
|
<NoProjects onCreateProject={handleCreateProject} />
|
|
|
|
|
) : (
|
|
|
|
|
<div className="grid grid-cols-1 xs:grid-cols-2 sm:grid-cols-3 lg:grid-cols-4 gap-6">
|
|
|
|
|
{savedProjects.map((project) => (
|
2025-07-02 19:39:08 +05:30
|
|
|
<ProjectCard
|
|
|
|
|
key={project.id}
|
|
|
|
|
project={project}
|
|
|
|
|
isSelectionMode={isSelectionMode}
|
|
|
|
|
isSelected={selectedProjects.has(project.id)}
|
|
|
|
|
onSelect={handleSelectProject}
|
|
|
|
|
/>
|
2025-06-30 19:58:36 +02:00
|
|
|
))}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</main>
|
2025-07-02 19:39:08 +05:30
|
|
|
|
|
|
|
|
<DeleteProjectDialog
|
|
|
|
|
isOpen={isBulkDeleteDialogOpen}
|
|
|
|
|
onOpenChange={setIsBulkDeleteDialogOpen}
|
|
|
|
|
onConfirm={handleBulkDelete}
|
|
|
|
|
/>
|
2025-06-30 19:58:36 +02:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-02 19:39:08 +05:30
|
|
|
interface ProjectCardProps {
|
|
|
|
|
project: TProject;
|
|
|
|
|
isSelectionMode?: boolean;
|
|
|
|
|
isSelected?: boolean;
|
|
|
|
|
onSelect?: (projectId: string, checked: boolean) => void;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function ProjectCard({
|
|
|
|
|
project,
|
|
|
|
|
isSelectionMode = false,
|
|
|
|
|
isSelected = false,
|
|
|
|
|
onSelect,
|
|
|
|
|
}: ProjectCardProps) {
|
2025-06-30 19:58:36 +02:00
|
|
|
const [isDropdownOpen, setIsDropdownOpen] = useState(false);
|
|
|
|
|
const [isDeleteDialogOpen, setIsDeleteDialogOpen] = useState(false);
|
|
|
|
|
const [isRenameDialogOpen, setIsRenameDialogOpen] = useState(false);
|
|
|
|
|
const { deleteProject, renameProject, duplicateProject } = useProjectStore();
|
|
|
|
|
|
|
|
|
|
const formatDate = (date: Date): string => {
|
|
|
|
|
return date.toLocaleDateString("en-US", {
|
|
|
|
|
month: "short",
|
|
|
|
|
day: "numeric",
|
|
|
|
|
year: "numeric",
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleDeleteProject = async () => {
|
|
|
|
|
await deleteProject(project.id);
|
|
|
|
|
setIsDropdownOpen(false);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleRenameProject = async (newName: string) => {
|
|
|
|
|
await renameProject(project.id, newName);
|
|
|
|
|
setIsRenameDialogOpen(false);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleDuplicateProject = async () => {
|
|
|
|
|
setIsDropdownOpen(false);
|
|
|
|
|
await duplicateProject(project.id);
|
|
|
|
|
};
|
|
|
|
|
|
2025-07-02 19:39:08 +05:30
|
|
|
const handleCardClick = (e: React.MouseEvent) => {
|
|
|
|
|
if (isSelectionMode) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
onSelect?.(project.id, !isSelected);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2025-06-30 19:58:36 +02:00
|
|
|
return (
|
|
|
|
|
<>
|
2025-07-02 19:39:08 +05:30
|
|
|
{isSelectionMode ? (
|
|
|
|
|
<div onClick={handleCardClick} className="block group cursor-pointer">
|
|
|
|
|
<Card
|
|
|
|
|
className={`overflow-hidden bg-background border-none p-0 transition-all ${
|
|
|
|
|
isSelectionMode && isSelected ? "ring-2 ring-primary" : ""
|
2025-06-30 19:58:36 +02:00
|
|
|
}`}
|
|
|
|
|
>
|
2025-07-02 19:39:08 +05:30
|
|
|
<div
|
|
|
|
|
className={`relative aspect-square bg-muted transition-opacity ${
|
|
|
|
|
isDropdownOpen
|
|
|
|
|
? "opacity-65"
|
|
|
|
|
: "opacity-100 group-hover:opacity-65"
|
|
|
|
|
}`}
|
|
|
|
|
>
|
|
|
|
|
{/* Selection checkbox */}
|
|
|
|
|
{isSelectionMode && (
|
|
|
|
|
<div className="absolute top-3 left-3 z-10">
|
2025-07-15 23:48:47 +02:00
|
|
|
<div className="w-5 h-5 rounded-full bg-background/80 backdrop-blur-sm border flex items-center justify-center">
|
2025-07-02 19:39:08 +05:30
|
|
|
<Checkbox
|
|
|
|
|
checked={isSelected}
|
|
|
|
|
onCheckedChange={(checked) =>
|
|
|
|
|
onSelect?.(project.id, checked as boolean)
|
|
|
|
|
}
|
|
|
|
|
onClick={(e) => e.stopPropagation()}
|
|
|
|
|
className="w-4 h-4"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2025-06-30 19:58:36 +02:00
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
2025-07-02 19:39:08 +05:30
|
|
|
{/* Thumbnail preview or placeholder */}
|
|
|
|
|
<div className="absolute inset-0">
|
|
|
|
|
{project.thumbnail ? (
|
|
|
|
|
<Image
|
|
|
|
|
src={project.thumbnail}
|
|
|
|
|
alt="Project thumbnail"
|
|
|
|
|
fill
|
|
|
|
|
className="object-cover"
|
|
|
|
|
/>
|
|
|
|
|
) : (
|
|
|
|
|
<div className="w-full h-full bg-muted/50 flex items-center justify-center">
|
|
|
|
|
<Video className="h-12 w-12 flex-shrink-0 text-muted-foreground" />
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
2025-06-30 19:58:36 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-07-02 19:39:08 +05:30
|
|
|
|
2025-07-15 23:48:47 +02:00
|
|
|
<CardContent className="px-0 pt-5 flex flex-col gap-1 p-2">
|
2025-07-02 19:39:08 +05:30
|
|
|
<div className="flex items-start justify-between">
|
|
|
|
|
<h3 className="font-medium text-sm leading-snug group-hover:text-foreground/90 transition-colors line-clamp-2">
|
|
|
|
|
{project.name}
|
|
|
|
|
</h3>
|
|
|
|
|
{!isSelectionMode && (
|
|
|
|
|
<DropdownMenu
|
|
|
|
|
open={isDropdownOpen}
|
|
|
|
|
onOpenChange={setIsDropdownOpen}
|
|
|
|
|
>
|
|
|
|
|
<DropdownMenuTrigger asChild>
|
|
|
|
|
<Button
|
|
|
|
|
variant="text"
|
|
|
|
|
size="sm"
|
|
|
|
|
className={`size-6 p-0 transition-all shrink-0 ml-2 ${
|
|
|
|
|
isDropdownOpen
|
|
|
|
|
? "opacity-100"
|
|
|
|
|
: "opacity-0 group-hover:opacity-100"
|
|
|
|
|
}`}
|
|
|
|
|
onClick={(e) => e.preventDefault()}
|
|
|
|
|
>
|
|
|
|
|
<MoreHorizontal />
|
|
|
|
|
</Button>
|
|
|
|
|
</DropdownMenuTrigger>
|
|
|
|
|
<DropdownMenuContent
|
|
|
|
|
align="end"
|
|
|
|
|
onCloseAutoFocus={(e) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<DropdownMenuItem
|
|
|
|
|
onClick={(e) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
setIsDropdownOpen(false);
|
|
|
|
|
setIsRenameDialogOpen(true);
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Rename
|
|
|
|
|
</DropdownMenuItem>
|
|
|
|
|
<DropdownMenuItem
|
|
|
|
|
onClick={(e) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
handleDuplicateProject();
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Duplicate
|
|
|
|
|
</DropdownMenuItem>
|
|
|
|
|
<DropdownMenuSeparator />
|
|
|
|
|
<DropdownMenuItem
|
|
|
|
|
variant="destructive"
|
|
|
|
|
onClick={(e) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
setIsDropdownOpen(false);
|
|
|
|
|
setIsDeleteDialogOpen(true);
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Delete
|
|
|
|
|
</DropdownMenuItem>
|
|
|
|
|
</DropdownMenuContent>
|
|
|
|
|
</DropdownMenu>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="space-y-1">
|
|
|
|
|
<div className="flex items-center gap-1.5 text-sm text-muted-foreground">
|
|
|
|
|
<Calendar className="!size-4" />
|
|
|
|
|
<span>Created {formatDate(project.createdAt)}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
|
|
|
|
</div>
|
|
|
|
|
) : (
|
|
|
|
|
<Link href={`/editor/${project.id}`} className="block group">
|
|
|
|
|
<Card
|
|
|
|
|
className={`overflow-hidden bg-background border-none p-0 transition-all ${
|
|
|
|
|
isSelectionMode && isSelected ? "ring-2 ring-primary" : ""
|
|
|
|
|
}`}
|
|
|
|
|
>
|
|
|
|
|
<div
|
|
|
|
|
className={`relative aspect-square bg-muted transition-opacity ${
|
|
|
|
|
isDropdownOpen
|
|
|
|
|
? "opacity-65"
|
|
|
|
|
: "opacity-100 group-hover:opacity-65"
|
|
|
|
|
}`}
|
|
|
|
|
>
|
|
|
|
|
{/* Thumbnail preview or placeholder */}
|
|
|
|
|
<div className="absolute inset-0">
|
|
|
|
|
{project.thumbnail ? (
|
|
|
|
|
<Image
|
|
|
|
|
src={project.thumbnail}
|
|
|
|
|
alt="Project thumbnail"
|
|
|
|
|
fill
|
|
|
|
|
className="object-cover"
|
|
|
|
|
/>
|
|
|
|
|
) : (
|
|
|
|
|
<div className="w-full h-full bg-muted/50 flex items-center justify-center">
|
|
|
|
|
<Video className="h-12 w-12 flex-shrink-0 text-muted-foreground" />
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<CardContent className="px-0 pt-5 flex flex-col gap-1">
|
|
|
|
|
<div className="flex items-start justify-between">
|
|
|
|
|
<h3 className="font-medium text-sm leading-snug group-hover:text-foreground/90 transition-colors line-clamp-2">
|
|
|
|
|
{project.name}
|
|
|
|
|
</h3>
|
|
|
|
|
<DropdownMenu
|
|
|
|
|
open={isDropdownOpen}
|
|
|
|
|
onOpenChange={setIsDropdownOpen}
|
|
|
|
|
>
|
|
|
|
|
<DropdownMenuTrigger asChild>
|
|
|
|
|
<Button
|
|
|
|
|
variant="text"
|
|
|
|
|
size="sm"
|
|
|
|
|
className={`size-6 p-0 transition-all shrink-0 ml-2 ${
|
|
|
|
|
isDropdownOpen
|
|
|
|
|
? "opacity-100"
|
|
|
|
|
: "opacity-0 group-hover:opacity-100"
|
|
|
|
|
}`}
|
|
|
|
|
onClick={(e) => e.preventDefault()}
|
|
|
|
|
>
|
|
|
|
|
<MoreHorizontal />
|
|
|
|
|
</Button>
|
|
|
|
|
</DropdownMenuTrigger>
|
|
|
|
|
<DropdownMenuContent
|
|
|
|
|
align="end"
|
|
|
|
|
onCloseAutoFocus={(e) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<DropdownMenuItem
|
|
|
|
|
onClick={(e) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
setIsDropdownOpen(false);
|
|
|
|
|
setIsRenameDialogOpen(true);
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Rename
|
|
|
|
|
</DropdownMenuItem>
|
|
|
|
|
<DropdownMenuItem
|
|
|
|
|
onClick={(e) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
handleDuplicateProject();
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Duplicate
|
|
|
|
|
</DropdownMenuItem>
|
|
|
|
|
<DropdownMenuSeparator />
|
|
|
|
|
<DropdownMenuItem
|
|
|
|
|
variant="destructive"
|
|
|
|
|
onClick={(e) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
setIsDropdownOpen(false);
|
|
|
|
|
setIsDeleteDialogOpen(true);
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Delete
|
|
|
|
|
</DropdownMenuItem>
|
|
|
|
|
</DropdownMenuContent>
|
|
|
|
|
</DropdownMenu>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="space-y-1">
|
|
|
|
|
<div className="flex items-center gap-1.5 text-sm text-muted-foreground">
|
|
|
|
|
<Calendar className="!size-4" />
|
|
|
|
|
<span>Created {formatDate(project.createdAt)}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
|
|
|
|
</Link>
|
|
|
|
|
)}
|
2025-06-30 19:58:36 +02:00
|
|
|
<DeleteProjectDialog
|
|
|
|
|
isOpen={isDeleteDialogOpen}
|
|
|
|
|
onOpenChange={setIsDeleteDialogOpen}
|
|
|
|
|
onConfirm={handleDeleteProject}
|
|
|
|
|
/>
|
|
|
|
|
<RenameProjectDialog
|
|
|
|
|
isOpen={isRenameDialogOpen}
|
|
|
|
|
onOpenChange={setIsRenameDialogOpen}
|
|
|
|
|
onConfirm={handleRenameProject}
|
|
|
|
|
projectName={project.name}
|
|
|
|
|
/>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function CreateButton({ onClick }: { onClick?: () => void }) {
|
|
|
|
|
return (
|
|
|
|
|
<Button className="flex" onClick={onClick}>
|
|
|
|
|
<Plus className="!size-4" />
|
|
|
|
|
<span className="text-sm font-medium">New project</span>
|
|
|
|
|
</Button>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function NoProjects({ onCreateProject }: { onCreateProject: () => void }) {
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex flex-col items-center justify-center py-16 text-center">
|
|
|
|
|
<div className="w-16 h-16 rounded-full bg-muted/30 flex items-center justify-center mb-4">
|
|
|
|
|
<Video className="h-8 w-8 text-muted-foreground" />
|
|
|
|
|
</div>
|
|
|
|
|
<h3 className="text-lg font-medium mb-2">No projects yet</h3>
|
|
|
|
|
<p className="text-muted-foreground mb-6 max-w-md">
|
|
|
|
|
Start creating your first video project. Import media, edit, and export
|
|
|
|
|
professional videos.
|
|
|
|
|
</p>
|
|
|
|
|
<Button size="lg" className="gap-2" onClick={onCreateProject}>
|
|
|
|
|
<Plus className="h-4 w-4" />
|
|
|
|
|
Create Your First Project
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|