130 lines
5.0 KiB
TypeScript
130 lines
5.0 KiB
TypeScript
'use client';
|
|
|
|
import { useEffect, useState } from 'react';
|
|
import Link from 'next/link';
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Image as ImageIcon } from 'lucide-react';
|
|
|
|
interface Photo {
|
|
id: number;
|
|
path: string;
|
|
title: string;
|
|
size: number;
|
|
thumbnail: string;
|
|
type: string;
|
|
}
|
|
|
|
export default function PhotosPage() {
|
|
const [photos, setPhotos] = useState<Photo[]>([]);
|
|
const [loading, setLoading] = useState(true);
|
|
|
|
useEffect(() => {
|
|
fetchPhotos();
|
|
}, []);
|
|
|
|
const fetchPhotos = async () => {
|
|
try {
|
|
const response = await fetch('/api/photos');
|
|
const data = await response.json();
|
|
setPhotos(data);
|
|
} catch (error) {
|
|
console.error('Error fetching photos:', error);
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
const formatFileSize = (bytes: number) => {
|
|
if (bytes === 0) return '0 Bytes';
|
|
const k = 1024;
|
|
const sizes = ['Bytes', 'KB', 'MB', 'GB'];
|
|
const i = Math.floor(Math.log(bytes) / Math.log(k));
|
|
return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i];
|
|
};
|
|
|
|
if (loading) {
|
|
return (
|
|
<div className="min-h-screen bg-zinc-950 flex items-center justify-center">
|
|
<div className="text-center">
|
|
<div className="w-16 h-16 bg-purple-600 rounded-2xl flex items-center justify-center mx-auto mb-4 animate-pulse shadow-lg shadow-purple-600/20">
|
|
<ImageIcon className="h-8 w-8 text-white" />
|
|
</div>
|
|
<p className="text-zinc-400 font-medium">Loading photos...</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen bg-zinc-950">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
|
<div className="mb-8">
|
|
<h1 className="text-5xl font-bold text-white tracking-tight mb-2">
|
|
Photos
|
|
</h1>
|
|
<p className="text-zinc-400 text-lg">
|
|
{photos.length} {photos.length === 1 ? 'photo' : 'photos'} found
|
|
</p>
|
|
</div>
|
|
|
|
{photos.length > 0 ? (
|
|
<div className="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 xl:grid-cols-6 2xl:grid-cols-7 gap-6">
|
|
{photos.map((photo) => (
|
|
<div key={photo.id}
|
|
className="group relative bg-zinc-900 rounded-lg overflow-hidden cursor-pointer transition-all duration-300 hover:scale-105 hover:shadow-2xl hover:shadow-purple-600/20">
|
|
<div className="aspect-square relative overflow-hidden">
|
|
<img
|
|
src={photo.thumbnail}
|
|
alt={photo.title}
|
|
className="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
|
|
onError={(e) => {
|
|
(e.target as HTMLImageElement).src = '/placeholder-image.jpg';
|
|
}}
|
|
/>
|
|
<div className="absolute inset-0 bg-gradient-to-t from-black/80 via-black/40 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300" />
|
|
|
|
<div className="absolute bottom-0 left-0 right-0 p-4 transform translate-y-full group-hover:translate-y-0 transition-transform duration-300">
|
|
<div className="flex items-center gap-2">
|
|
<div className="w-8 h-8 bg-purple-600 rounded-full flex items-center justify-center">
|
|
<ImageIcon className="h-4 w-4 text-white" />
|
|
</div>
|
|
<span className="text-white text-sm font-medium">View</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="p-4">
|
|
<p className="text-white font-medium text-sm line-clamp-2 mb-1">
|
|
{photo.title}
|
|
</p>
|
|
<p className="text-zinc-400 text-xs">
|
|
{formatFileSize(photo.size)}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
) : (
|
|
<div className="text-center py-20">
|
|
<div className="max-w-sm mx-auto">
|
|
<div className="w-20 h-20 bg-zinc-900 rounded-2xl flex items-center justify-center mx-auto mb-4 shadow-lg">
|
|
<ImageIcon className="h-10 w-10 text-purple-500" />
|
|
</div>
|
|
<h3 className="text-2xl font-semibold text-white mb-2">
|
|
No Photos Found
|
|
</h3>
|
|
<p className="text-zinc-400 mb-6">
|
|
Add media libraries to scan for photos
|
|
</p>
|
|
<Link href="/settings">
|
|
<button className="bg-purple-600 hover:bg-purple-700 text-white px-6 py-3 rounded-lg text-sm font-medium transition-colors shadow-lg shadow-purple-600/20">
|
|
Add Library
|
|
</button>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
} |