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";
|
|
|
|
|
import {
|
|
|
|
|
ChevronLeft,
|
|
|
|
|
Plus,
|
|
|
|
|
Calendar,
|
|
|
|
|
MoreHorizontal,
|
|
|
|
|
Video,
|
|
|
|
|
Loader2,
|
|
|
|
|
} 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() {
|
|
|
|
|
const { createNewProject, savedProjects, isLoading, isInitialized } =
|
|
|
|
|
useProjectStore();
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
|
|
|
|
|
const handleCreateProject = async () => {
|
|
|
|
|
const projectId = await createNewProject("New Project");
|
|
|
|
|
console.log("projectId", projectId);
|
|
|
|
|
router.push(`/editor/${projectId}`);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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">
|
|
|
|
|
<CreateButton onClick={handleCreateProject} />
|
|
|
|
|
</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"}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="hidden md:block">
|
|
|
|
|
<CreateButton onClick={handleCreateProject} />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{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) => (
|
|
|
|
|
<ProjectCard key={project.id} project={project} />
|
|
|
|
|
))}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</main>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function ProjectCard({ project }: { project: TProject }) {
|
|
|
|
|
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);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<Link href={`/editor/${project.id}`} className="block group">
|
|
|
|
|
<Card className="overflow-hidden bg-background border-none p-0">
|
|
|
|
|
<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>
|
|
|
|
|
<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>
|
|
|
|
|
);
|
|
|
|
|
}
|