inital working version

This commit is contained in:
Stefan Hardegger
2025-07-22 21:49:40 +02:00
parent bebb799784
commit 59d29dceaf
98 changed files with 8027 additions and 856 deletions

View File

@@ -0,0 +1,208 @@
'use client';
import { useState, useEffect } from 'react';
import Link from 'next/link';
import Image from 'next/image';
import { authorApi, getImageUrl } from '../../lib/api';
import { Author } from '../../types/api';
import AppLayout from '../../components/layout/AppLayout';
import { Input } from '../../components/ui/Input';
import LoadingSpinner from '../../components/ui/LoadingSpinner';
export default function AuthorsPage() {
const [authors, setAuthors] = useState<Author[]>([]);
const [filteredAuthors, setFilteredAuthors] = useState<Author[]>([]);
const [loading, setLoading] = useState(true);
const [searchQuery, setSearchQuery] = useState('');
useEffect(() => {
const loadAuthors = async () => {
try {
setLoading(true);
const authorsResult = await authorApi.getAuthors({ page: 0, size: 1000 }); // Get all authors
setAuthors(authorsResult.content || []);
setFilteredAuthors(authorsResult.content || []);
} catch (error) {
console.error('Failed to load authors:', error);
} finally {
setLoading(false);
}
};
loadAuthors();
}, []);
useEffect(() => {
if (!Array.isArray(authors)) {
setFilteredAuthors([]);
return;
}
if (searchQuery) {
const query = searchQuery.toLowerCase();
const filtered = authors.filter(author =>
author.name.toLowerCase().includes(query) ||
(author.notes && author.notes.toLowerCase().includes(query))
);
setFilteredAuthors(filtered);
} else {
setFilteredAuthors(authors);
}
}, [searchQuery, authors]);
// Note: We no longer have individual story ratings in the author list
// Average rating would need to be calculated on backend if needed
if (loading) {
return (
<AppLayout>
<div className="flex items-center justify-center py-20">
<LoadingSpinner size="lg" />
</div>
</AppLayout>
);
}
return (
<AppLayout>
<div className="space-y-6">
{/* Header */}
<div className="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4">
<div>
<h1 className="text-3xl font-bold theme-header">Authors</h1>
<p className="theme-text mt-1">
{filteredAuthors.length} {filteredAuthors.length === 1 ? 'author' : 'authors'}
{searchQuery ? ` found` : ` in your library`}
</p>
</div>
</div>
{/* Search */}
<div className="max-w-md">
<Input
type="search"
placeholder="Search authors..."
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
/>
</div>
{/* Authors Grid */}
{filteredAuthors.length === 0 ? (
<div className="text-center py-20">
<div className="theme-text text-lg mb-4">
{searchQuery
? 'No authors match your search'
: 'No authors in your library yet'
}
</div>
{searchQuery ? (
<button
onClick={() => setSearchQuery('')}
className="theme-accent hover:underline"
>
Clear search
</button>
) : (
<p className="theme-text">
Authors will appear here when you add stories to your library.
</p>
)}
</div>
) : (
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
{filteredAuthors.map((author) => {
return (
<Link
key={author.id}
href={`/authors/${author.id}`}
className="theme-card theme-shadow rounded-lg p-6 hover:shadow-lg transition-shadow group"
>
{/* Avatar */}
<div className="flex items-center gap-4 mb-4">
<div className="w-16 h-16 rounded-full overflow-hidden bg-gray-200 dark:bg-gray-700 flex-shrink-0">
{author.avatarImagePath ? (
<Image
src={getImageUrl(author.avatarImagePath)}
alt={author.name}
width={64}
height={64}
className="w-full h-full object-cover"
unoptimized
/>
) : (
<div className="w-full h-full flex items-center justify-center text-2xl theme-text">
👤
</div>
)}
</div>
<div className="min-w-0 flex-1">
<h3 className="text-lg font-semibold theme-header group-hover:theme-accent transition-colors truncate">
{author.name}
</h3>
<div className="flex items-center gap-2 mt-1">
{/* Author Rating */}
{author.authorRating && (
<div className="flex items-center gap-1">
<div className="flex">
{[1, 2, 3, 4, 5].map((star) => (
<span
key={star}
className={`text-sm ${
star <= (author.authorRating || 0)
? 'text-yellow-400'
: 'text-gray-300 dark:text-gray-600'
}`}
>
</span>
))}
</div>
<span className="text-sm theme-text">
({author.authorRating}/5)
</span>
</div>
)}
</div>
</div>
</div>
{/* Stats */}
<div className="space-y-2 mb-4">
<div className="flex justify-between items-center text-sm">
<span className="theme-text">Stories:</span>
<span className="font-medium theme-header">
{author.storyCount || 0}
</span>
</div>
{author.urls.length > 0 && (
<div className="flex justify-between items-center text-sm">
<span className="theme-text">Links:</span>
<span className="font-medium theme-header">
{author.urls.length}
</span>
</div>
)}
</div>
{/* Notes Preview */}
{author.notes && (
<div className="text-sm theme-text">
<p className="line-clamp-3">
{author.notes}
</p>
</div>
)}
</Link>
);
})}
</div>
)}
</div>
</AppLayout>
);
}