641 lines
30 KiB
TypeScript
641 lines
30 KiB
TypeScript
import { Media, MediaCategory } from '@/types';
|
|
import MediaCard from './MediaCard';
|
|
import MediaListItem from './MediaListItem';
|
|
import { LayoutGrid, List, Star, ChevronLeft, ChevronRight, ArrowUpDown, Plus, Search } from 'lucide-react';
|
|
import { Button } from '@/components/ui/button';
|
|
import React, { useState, useMemo, useEffect } from 'react';
|
|
import { createMedia, type CreateMediaInput } from '@/api';
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuTrigger
|
|
} from '@/components/ui/dropdown-menu';
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/components/ui/dialog";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import { cn } from '@/lib/utils';
|
|
import { AnimatePresence } from 'motion/react';
|
|
|
|
interface BrowseViewProps {
|
|
mediaList: Media[];
|
|
onMediaClick: (media: Media) => void;
|
|
onAddMedia: (media: Media) => void;
|
|
activeCategory: MediaCategory;
|
|
}
|
|
|
|
export default function BrowseView({ mediaList, onMediaClick, onAddMedia, activeCategory }: BrowseViewProps) {
|
|
const [viewMode, setViewMode] = useState<'grid' | 'list'>('grid');
|
|
const [currentPage, setCurrentPage] = useState(1);
|
|
const [itemsPerPage, setItemsPerPage] = useState(12);
|
|
const [sortBy, setSortBy] = useState<string>('default');
|
|
|
|
// Add Media Dialog State
|
|
const [isAddDialogOpen, setIsAddDialogOpen] = useState(false);
|
|
const [newMedia, setNewMedia] = useState({
|
|
title: '',
|
|
year: '',
|
|
poster: '',
|
|
banner: '',
|
|
description: '',
|
|
rating: '',
|
|
category: activeCategory as MediaCategory,
|
|
type: 'Movie' as string,
|
|
status: 'Released' as string,
|
|
aspectRatio: '2/3' as '2/3' | '16/9' | '1/1',
|
|
runtime: '',
|
|
director: '',
|
|
writer: '',
|
|
releaseDate: '',
|
|
genres: '' as string,
|
|
tags: '' as string,
|
|
studios: '' as string
|
|
});
|
|
|
|
// Update category, default aspect ratio, and default type when activeCategory changes
|
|
useEffect(() => {
|
|
let defaultAspect: '2/3' | '16/9' | '1/1' = '2/3';
|
|
let defaultType = 'Movie';
|
|
|
|
if (activeCategory === 'Music') {
|
|
defaultAspect = '1/1';
|
|
defaultType = 'Album';
|
|
} else if (activeCategory === 'Games') {
|
|
defaultAspect = '16/9';
|
|
defaultType = 'Game';
|
|
} else if (activeCategory === 'Adult') {
|
|
defaultAspect = '16/9';
|
|
defaultType = 'Movie';
|
|
} else if (activeCategory === 'Anime') {
|
|
defaultType = 'TV';
|
|
} else if (activeCategory === 'Books') {
|
|
defaultType = 'Hardcover';
|
|
} else if (activeCategory === 'Consoles') {
|
|
defaultType = 'Console';
|
|
}
|
|
|
|
setNewMedia(prev => ({
|
|
...prev,
|
|
category: activeCategory,
|
|
aspectRatio: defaultAspect,
|
|
type: defaultType
|
|
}));
|
|
}, [activeCategory]);
|
|
|
|
const handleAddSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
if (!newMedia.title || !newMedia.poster) return;
|
|
|
|
// Convert category from plural to singular to match API format
|
|
const categoryMap: Record<string, string> = {
|
|
'Anime': 'Anime',
|
|
'Movies': 'Movie',
|
|
'Music': 'Music',
|
|
'Books': 'Book',
|
|
'Consoles': 'Console',
|
|
'Games': 'Game',
|
|
'Adult': 'Adult'
|
|
};
|
|
|
|
const mediaInput: CreateMediaInput = {
|
|
title: newMedia.title,
|
|
year: parseInt(newMedia.year) || new Date().getFullYear(),
|
|
poster: newMedia.poster,
|
|
banner: newMedia.banner || null,
|
|
description: newMedia.description || null,
|
|
rating: newMedia.rating ? parseFloat(newMedia.rating) : null,
|
|
category: categoryMap[newMedia.category] || newMedia.category,
|
|
type: newMedia.type,
|
|
status: newMedia.status,
|
|
aspectRatio: newMedia.aspectRatio,
|
|
runtime: newMedia.runtime ? parseInt(newMedia.runtime) : null,
|
|
director: newMedia.director || null,
|
|
writer: newMedia.writer || null,
|
|
releaseDate: newMedia.releaseDate || null,
|
|
genres: newMedia.genres ? newMedia.genres.split(',').map(g => g.trim()) : [],
|
|
tags: newMedia.tags ? newMedia.tags.split(',').map(t => t.trim()) : [],
|
|
studios: newMedia.studios ? newMedia.studios.split(',').map(s => s.trim()) : []
|
|
};
|
|
|
|
const createdMedia = await createMedia(mediaInput);
|
|
|
|
if (createdMedia) {
|
|
onAddMedia(createdMedia);
|
|
}
|
|
|
|
setNewMedia({
|
|
title: '',
|
|
year: '',
|
|
poster: '',
|
|
banner: '',
|
|
description: '',
|
|
rating: '',
|
|
category: activeCategory,
|
|
type: 'Movie',
|
|
status: 'Released',
|
|
aspectRatio: '2/3',
|
|
runtime: '',
|
|
director: '',
|
|
writer: '',
|
|
releaseDate: '',
|
|
genres: '',
|
|
tags: '',
|
|
studios: ''
|
|
});
|
|
setIsAddDialogOpen(false);
|
|
};
|
|
|
|
// Filter states
|
|
const [selectedGenre, setSelectedGenre] = useState<string | null>(null);
|
|
const [selectedStudio, setSelectedStudio] = useState<string | null>(null);
|
|
|
|
// Extract unique values for filters
|
|
const allGenres = useMemo(() => Array.from(new Set(mediaList.flatMap(m => m.genres || []))), [mediaList]);
|
|
const allStudios = useMemo(() => Array.from(new Set(mediaList.flatMap(m => m.studios || []))), [mediaList]);
|
|
|
|
const filteredMedia = useMemo(() => {
|
|
return mediaList.filter(media => {
|
|
if (selectedGenre && !media.genres?.includes(selectedGenre)) return false;
|
|
if (selectedStudio && !media.studios?.includes(selectedStudio)) return false;
|
|
return true;
|
|
});
|
|
}, [mediaList, selectedGenre, selectedStudio]);
|
|
|
|
// Reset to first page when mediaList or filters change
|
|
useEffect(() => {
|
|
setCurrentPage(1);
|
|
}, [filteredMedia, sortBy]);
|
|
|
|
const sortedMedia = useMemo(() => {
|
|
const list = [...filteredMedia];
|
|
if (sortBy === 'title-asc') {
|
|
return list.sort((a, b) => a.title.localeCompare(b.title));
|
|
}
|
|
if (sortBy === 'title-desc') {
|
|
return list.sort((a, b) => b.title.localeCompare(a.title));
|
|
}
|
|
return list;
|
|
}, [filteredMedia, sortBy]);
|
|
|
|
const totalPages = Math.ceil(sortedMedia.length / itemsPerPage);
|
|
|
|
const paginatedMedia = useMemo(() => {
|
|
const startIndex = (currentPage - 1) * itemsPerPage;
|
|
return sortedMedia.slice(startIndex, startIndex + itemsPerPage);
|
|
}, [sortedMedia, currentPage, itemsPerPage]);
|
|
|
|
const handlePrevPage = () => {
|
|
setCurrentPage((prev) => Math.max(prev - 1, 1));
|
|
window.scrollTo({ top: 0, behavior: 'smooth' });
|
|
};
|
|
|
|
const handleNextPage = () => {
|
|
setCurrentPage((prev) => Math.min(prev + 1, totalPages));
|
|
window.scrollTo({ top: 0, behavior: 'smooth' });
|
|
};
|
|
|
|
return (
|
|
<div className="pt-24 pb-12 px-6 max-w-[1600px] mx-auto">
|
|
{/* Filters Bar */}
|
|
<div className="flex flex-wrap items-center justify-between gap-4 mb-8">
|
|
<div className="flex flex-wrap items-center gap-2">
|
|
{/* Genre Filter */}
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<button type="button" className={cn("group/button inline-flex shrink-0 items-center justify-center rounded-lg border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:hover:bg-muted/50 h-7 gap-1 rounded-[min(var(--radius-md),12px)] px-2.5 text-[0.8rem] in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3.5 font-bold gap-2", selectedGenre ? "text-[#6d28d9] bg-[#6d28d9]/10" : "text-zinc-600")}>
|
|
<Star size={16} />
|
|
{selectedGenre || 'Genres'}
|
|
</button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="start" className="max-h-[300px] overflow-y-auto">
|
|
<DropdownMenuItem onClick={() => setSelectedGenre(null)}>All Genres</DropdownMenuItem>
|
|
{allGenres.sort().map(genre => (
|
|
<DropdownMenuItem key={genre} onClick={() => setSelectedGenre(genre)}>{genre}</DropdownMenuItem>
|
|
))}
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
|
|
{/* Studio Filter */}
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<button type="button" className={cn("group/button inline-flex shrink-0 items-center justify-center rounded-lg border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:hover:bg-muted/50 h-7 gap-1 rounded-[min(var(--radius-md),12px)] px-2.5 text-[0.8rem] in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3.5 font-bold gap-2", selectedStudio ? "text-[#6d28d9] bg-[#6d28d9]/10" : "text-zinc-600")}>
|
|
Studios
|
|
</button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="start" className="max-h-[300px] overflow-y-auto">
|
|
<DropdownMenuItem onClick={() => setSelectedStudio(null)}>All Studios</DropdownMenuItem>
|
|
{allStudios.sort().map(studio => (
|
|
<DropdownMenuItem key={studio} onClick={() => setSelectedStudio(studio)}>{studio}</DropdownMenuItem>
|
|
))}
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
|
|
{(selectedGenre || selectedStudio) && (
|
|
<Button
|
|
variant="link"
|
|
size="sm"
|
|
className="text-zinc-400 font-bold"
|
|
onClick={() => {
|
|
setSelectedGenre(null);
|
|
setSelectedStudio(null);
|
|
}}
|
|
>
|
|
Clear Filters
|
|
</Button>
|
|
)}
|
|
</div>
|
|
|
|
<div className="flex items-center gap-4">
|
|
<Dialog open={isAddDialogOpen} onOpenChange={setIsAddDialogOpen}>
|
|
<DialogTrigger asChild>
|
|
<button type="button" className="group/button inline-flex shrink-0 items-center justify-center rounded-lg border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 bg-[#6d28d9] hover:bg-[#5b21b6] text-white font-black rounded-full px-6 h-11 shadow-lg shadow-[#6d28d9]/20 gap-2">
|
|
<Plus size={20} />
|
|
ADD NEW
|
|
</button>
|
|
</DialogTrigger>
|
|
<DialogContent className="sm:max-w-[425px] bg-white rounded-3xl">
|
|
<form onSubmit={handleAddSubmit}>
|
|
<DialogHeader>
|
|
<DialogTitle className="text-2xl font-black text-zinc-900">Add New Media</DialogTitle>
|
|
<DialogDescription className="text-zinc-500 font-medium">
|
|
Manually add a new item to your {activeCategory} library.
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
<div className="grid gap-4 py-6 max-h-[60vh] overflow-y-auto">
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="title" className="text-sm font-black text-zinc-700">Title</Label>
|
|
<Input
|
|
id="title"
|
|
value={newMedia.title}
|
|
onChange={e => setNewMedia(prev => ({ ...prev, title: e.target.value }))}
|
|
placeholder="e.g. Mob Psycho 100"
|
|
className="bg-zinc-50 border-zinc-100 rounded-xl h-11 focus:ring-[#6d28d9]"
|
|
required
|
|
/>
|
|
</div>
|
|
<div className="grid grid-cols-2 gap-4">
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="year" className="text-sm font-black text-zinc-700">Year</Label>
|
|
<Input
|
|
id="year"
|
|
value={newMedia.year}
|
|
onChange={e => setNewMedia(prev => ({ ...prev, year: e.target.value }))}
|
|
placeholder="2024"
|
|
className="bg-zinc-50 border-zinc-100 rounded-xl h-11 focus:ring-[#6d28d9]"
|
|
/>
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="category" className="text-sm font-black text-zinc-700">Category</Label>
|
|
<select
|
|
id="category"
|
|
value={newMedia.category}
|
|
onChange={e => setNewMedia(prev => ({ ...prev, category: e.target.value as MediaCategory }))}
|
|
className="bg-zinc-50 border border-zinc-100 rounded-xl h-11 px-3 text-sm font-bold text-zinc-700 focus:ring-2 focus:ring-[#6d28d9] outline-none"
|
|
>
|
|
{['Anime', 'Movies', 'Music', 'Books', 'Consoles', 'Games', 'Adult'].map(cat => (
|
|
<option key={cat} value={cat}>{cat}</option>
|
|
))}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div className="grid grid-cols-2 gap-4">
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="type" className="text-sm font-black text-zinc-700">Type</Label>
|
|
<select
|
|
id="type"
|
|
value={newMedia.type}
|
|
onChange={e => setNewMedia(prev => ({ ...prev, type: e.target.value }))}
|
|
className="bg-zinc-50 border border-zinc-100 rounded-xl h-11 px-3 text-sm font-bold text-zinc-700 focus:ring-2 focus:ring-[#6d28d9] outline-none"
|
|
>
|
|
{newMedia.category === 'Music' ? (
|
|
<>
|
|
<option value="Album">Album</option>
|
|
<option value="Single">Single</option>
|
|
</>
|
|
) : newMedia.category === 'Books' ? (
|
|
<>
|
|
<option value="Hardcover">Hardcover</option>
|
|
<option value="E-book">E-book</option>
|
|
</>
|
|
) : newMedia.category === 'Games' ? (
|
|
<>
|
|
<option value="Game">Game</option>
|
|
</>
|
|
) : newMedia.category === 'Consoles' ? (
|
|
<>
|
|
<option value="Console">Console</option>
|
|
</>
|
|
) : (
|
|
<>
|
|
<option value="TV">TV</option>
|
|
<option value="Movie">Movie</option>
|
|
<option value="OVA">OVA</option>
|
|
<option value="ONA">ONA</option>
|
|
</>
|
|
)}
|
|
</select>
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="status" className="text-sm font-black text-zinc-700">Status</Label>
|
|
<select
|
|
id="status"
|
|
value={newMedia.status}
|
|
onChange={e => setNewMedia(prev => ({ ...prev, status: e.target.value }))}
|
|
className="bg-zinc-50 border border-zinc-100 rounded-xl h-11 px-3 text-sm font-bold text-zinc-700 focus:ring-2 focus:ring-[#6d28d9] outline-none"
|
|
>
|
|
<option value="Released">Released</option>
|
|
<option value="Ongoing">Ongoing</option>
|
|
<option value="Upcoming">Upcoming</option>
|
|
<option value="Completed">Completed</option>
|
|
<option value="Watching">Watching</option>
|
|
<option value="Reading">Reading</option>
|
|
<option value="Listening">Listening</option>
|
|
<option value="Playing">Playing</option>
|
|
<option value="Dropped">Dropped</option>
|
|
<option value="On Hold">On Hold</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="aspectRatio" className="text-sm font-black text-zinc-700">Aspect Ratio (Format)</Label>
|
|
<select
|
|
id="aspectRatio"
|
|
value={newMedia.aspectRatio}
|
|
onChange={e => setNewMedia(prev => ({ ...prev, aspectRatio: e.target.value as '2/3' | '16/9' | '1/1' }))}
|
|
className="bg-zinc-50 border border-zinc-100 rounded-xl h-11 px-3 text-sm font-bold text-zinc-700 focus:ring-2 focus:ring-[#6d28d9] outline-none"
|
|
>
|
|
<option value="2/3">2:3 (Standard Poster)</option>
|
|
<option value="16/9">16:9 (Wide Thumbnail)</option>
|
|
<option value="1/1">1:1 (Square)</option>
|
|
</select>
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="poster" className="text-sm font-black text-zinc-700">Poster URL</Label>
|
|
<Input
|
|
id="poster"
|
|
value={newMedia.poster}
|
|
onChange={e => setNewMedia(prev => ({ ...prev, poster: e.target.value }))}
|
|
placeholder="https://example.com/poster.jpg"
|
|
className="bg-zinc-50 border-zinc-100 rounded-xl h-11 focus:ring-[#6d28d9]"
|
|
required
|
|
/>
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="banner" className="text-sm font-black text-zinc-700">Banner URL (Optional)</Label>
|
|
<Input
|
|
id="banner"
|
|
value={newMedia.banner}
|
|
onChange={e => setNewMedia(prev => ({ ...prev, banner: e.target.value }))}
|
|
placeholder="https://example.com/banner.jpg"
|
|
className="bg-zinc-50 border-zinc-100 rounded-xl h-11 focus:ring-[#6d28d9]"
|
|
/>
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="description" className="text-sm font-black text-zinc-700">Description (Optional)</Label>
|
|
<textarea
|
|
id="description"
|
|
value={newMedia.description}
|
|
onChange={e => setNewMedia(prev => ({ ...prev, description: e.target.value }))}
|
|
placeholder="Brief description..."
|
|
className="bg-zinc-50 border-zinc-100 rounded-xl p-3 h-20 text-sm font-bold text-zinc-700 focus:ring-2 focus:ring-[#6d28d9] outline-none resize-none"
|
|
/>
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="rating" className="text-sm font-black text-zinc-700">Rating (Optional)</Label>
|
|
<Input
|
|
id="rating"
|
|
type="number"
|
|
step="0.1"
|
|
min="0"
|
|
max="10"
|
|
value={newMedia.rating}
|
|
onChange={e => setNewMedia(prev => ({ ...prev, rating: e.target.value }))}
|
|
placeholder="8.5"
|
|
className="bg-zinc-50 border-zinc-100 rounded-xl h-11 focus:ring-[#6d28d9]"
|
|
/>
|
|
</div>
|
|
{(newMedia.category === 'Anime' || newMedia.category === 'Movies' || newMedia.category === 'Adult') && (
|
|
<>
|
|
<div className="grid grid-cols-2 gap-4">
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="runtime" className="text-sm font-black text-zinc-700">Runtime (min)</Label>
|
|
<Input
|
|
id="runtime"
|
|
type="number"
|
|
value={newMedia.runtime}
|
|
onChange={e => setNewMedia(prev => ({ ...prev, runtime: e.target.value }))}
|
|
placeholder="120"
|
|
className="bg-zinc-50 border-zinc-100 rounded-xl h-11 focus:ring-[#6d28d9]"
|
|
/>
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="releaseDate" className="text-sm font-black text-zinc-700">Release Date</Label>
|
|
<Input
|
|
id="releaseDate"
|
|
type="date"
|
|
value={newMedia.releaseDate}
|
|
onChange={e => setNewMedia(prev => ({ ...prev, releaseDate: e.target.value }))}
|
|
className="bg-zinc-50 border-zinc-100 rounded-xl h-11 focus:ring-[#6d28d9]"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="director" className="text-sm font-black text-zinc-700">Director</Label>
|
|
<Input
|
|
id="director"
|
|
value={newMedia.director}
|
|
onChange={e => setNewMedia(prev => ({ ...prev, director: e.target.value }))}
|
|
placeholder="Director name"
|
|
className="bg-zinc-50 border-zinc-100 rounded-xl h-11 focus:ring-[#6d28d9]"
|
|
/>
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="writer" className="text-sm font-black text-zinc-700">Writer</Label>
|
|
<Input
|
|
id="writer"
|
|
value={newMedia.writer}
|
|
onChange={e => setNewMedia(prev => ({ ...prev, writer: e.target.value }))}
|
|
placeholder="Writer name"
|
|
className="bg-zinc-50 border-zinc-100 rounded-xl h-11 focus:ring-[#6d28d9]"
|
|
/>
|
|
</div>
|
|
</>
|
|
)}
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="genres" className="text-sm font-black text-zinc-700">Genres (comma-separated)</Label>
|
|
<Input
|
|
id="genres"
|
|
value={newMedia.genres}
|
|
onChange={e => setNewMedia(prev => ({ ...prev, genres: e.target.value }))}
|
|
placeholder="Action, Drama, Sci-Fi"
|
|
className="bg-zinc-50 border-zinc-100 rounded-xl h-11 focus:ring-[#6d28d9]"
|
|
/>
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="tags" className="text-sm font-black text-zinc-700">Tags (comma-separated)</Label>
|
|
<Input
|
|
id="tags"
|
|
value={newMedia.tags}
|
|
onChange={e => setNewMedia(prev => ({ ...prev, tags: e.target.value }))}
|
|
placeholder="Classic, Best-selling"
|
|
className="bg-zinc-50 border-zinc-100 rounded-xl h-11 focus:ring-[#6d28d9]"
|
|
/>
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="studios" className="text-sm font-black text-zinc-700">Studios (comma-separated)</Label>
|
|
<Input
|
|
id="studios"
|
|
value={newMedia.studios}
|
|
onChange={e => setNewMedia(prev => ({ ...prev, studios: e.target.value }))}
|
|
placeholder="Studio A, Studio B"
|
|
className="bg-zinc-50 border-zinc-100 rounded-xl h-11 focus:ring-[#6d28d9]"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<DialogFooter>
|
|
<Button type="submit" className="w-full bg-[#6d28d9] hover:bg-[#5b21b6] text-white font-black h-12 rounded-xl shadow-lg shadow-[#6d28d9]/20">
|
|
SAVE TO LIBRARY
|
|
</Button>
|
|
</DialogFooter>
|
|
</form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<button type="button" className="group/button inline-flex shrink-0 items-center justify-center rounded-lg border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:hover:bg-muted/50 h-7 gap-1 rounded-[min(var(--radius-md),12px)] px-2.5 text-[0.8rem] in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3.5 text-zinc-600 font-bold gap-2">
|
|
<ArrowUpDown size={16} />
|
|
{sortBy === 'default' ? 'Sort' : sortBy === 'title-asc' ? 'Title (A-Z)' : 'Title (Z-A)'}
|
|
</button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuItem onClick={() => setSortBy('default')}>Default</DropdownMenuItem>
|
|
<DropdownMenuItem onClick={() => setSortBy('title-asc')}>Title (A-Z)</DropdownMenuItem>
|
|
<DropdownMenuItem onClick={() => setSortBy('title-desc')}>Title (Z-A)</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
|
|
<div className="flex items-center bg-zinc-100 rounded-md p-1">
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
className={cn(
|
|
"h-8 w-8 transition-all",
|
|
viewMode === 'grid' ? "bg-white shadow-sm text-[#6d28d9]" : "text-zinc-400"
|
|
)}
|
|
onClick={() => setViewMode('grid')}
|
|
>
|
|
<LayoutGrid size={16} />
|
|
</Button>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
className={cn(
|
|
"h-8 w-8 transition-all",
|
|
viewMode === 'list' ? "bg-white shadow-sm text-[#6d28d9]" : "text-zinc-400"
|
|
)}
|
|
onClick={() => setViewMode('list')}
|
|
>
|
|
<List size={16} />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Content */}
|
|
{mediaList.length === 0 ? (
|
|
<div className="flex flex-col items-center justify-center py-20 text-zinc-400">
|
|
<div className="w-16 h-16 bg-zinc-100 rounded-full flex items-center justify-center mb-4">
|
|
<Search size={32} />
|
|
</div>
|
|
<p className="text-lg font-bold">No results found</p>
|
|
<p className="text-sm">Try adjusting your search or filters</p>
|
|
</div>
|
|
) : (
|
|
<div className={cn(
|
|
viewMode === 'grid'
|
|
? "grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 xl:grid-cols-8 gap-x-4 gap-y-8"
|
|
: "flex flex-col gap-2"
|
|
)}>
|
|
<AnimatePresence mode="popLayout">
|
|
{paginatedMedia.map((media) => (
|
|
viewMode === 'grid' ? (
|
|
<MediaCard
|
|
key={media.id}
|
|
media={media}
|
|
onClick={onMediaClick}
|
|
/>
|
|
) : (
|
|
<MediaListItem
|
|
key={media.id}
|
|
media={media}
|
|
onClick={onMediaClick}
|
|
/>
|
|
)
|
|
))}
|
|
</AnimatePresence>
|
|
</div>
|
|
)}
|
|
|
|
{/* Pagination Controls */}
|
|
{mediaList.length > 0 && (
|
|
<div className="mt-12 flex flex-col sm:flex-row items-center justify-between gap-6 border-t border-zinc-100 pt-8">
|
|
<div className="flex items-center gap-4">
|
|
<span className="text-sm text-zinc-500 font-medium">Items per page:</span>
|
|
<select
|
|
value={itemsPerPage}
|
|
onChange={(e) => {
|
|
setItemsPerPage(Number(e.target.value));
|
|
setCurrentPage(1);
|
|
}}
|
|
className="bg-zinc-100 border-none rounded-md px-2 py-1 text-sm font-bold text-zinc-700 focus:ring-2 focus:ring-[#6d28d9] outline-none"
|
|
>
|
|
{[8, 12, 16, 24, 48].map(size => (
|
|
<option key={size} value={size}>{size}</option>
|
|
))}
|
|
</select>
|
|
</div>
|
|
|
|
<div className="flex items-center gap-6">
|
|
<Button
|
|
variant="outline"
|
|
size="sm"
|
|
onClick={handlePrevPage}
|
|
disabled={currentPage === 1}
|
|
className="gap-2 font-bold border-zinc-200"
|
|
>
|
|
<ChevronLeft size={16} />
|
|
Previous
|
|
</Button>
|
|
|
|
<div className="flex items-center gap-2">
|
|
<span className="text-sm font-black text-[#6d28d9]">{currentPage}</span>
|
|
<span className="text-sm text-zinc-400 font-medium">of</span>
|
|
<span className="text-sm font-bold text-zinc-700">{totalPages || 1}</span>
|
|
</div>
|
|
|
|
<Button
|
|
variant="outline"
|
|
size="sm"
|
|
onClick={handleNextPage}
|
|
disabled={currentPage === totalPages || totalPages === 0}
|
|
className="gap-2 font-bold border-zinc-200"
|
|
>
|
|
Next
|
|
<ChevronRight size={16} />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|