mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-21 22:15:40 +00:00
55e7cb835b
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
140 lines
5.5 KiB
TypeScript
140 lines
5.5 KiB
TypeScript
import React, { useEffect, useState } from 'react';
|
|
import Hero from '../components/Hero';
|
|
import AlbumRow from '../components/AlbumRow';
|
|
import { getAlbumList, getArtists, SubsonicAlbum, SubsonicArtist } from '../api/subsonic';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useNavigate } from 'react-router-dom';
|
|
import { useHomeStore } from '../store/homeStore';
|
|
|
|
export default function Home() {
|
|
const homeSections = useHomeStore(s => s.sections);
|
|
const isVisible = (id: string) => homeSections.find(s => s.id === id)?.visible ?? true;
|
|
|
|
const [starred, setStarred] = useState<SubsonicAlbum[]>([]);
|
|
const [recent, setRecent] = useState<SubsonicAlbum[]>([]);
|
|
const [random, setRandom] = useState<SubsonicAlbum[]>([]);
|
|
const [heroAlbums, setHeroAlbums] = useState<SubsonicAlbum[]>([]);
|
|
const [mostPlayed, setMostPlayed] = useState<SubsonicAlbum[]>([]);
|
|
const [recentlyPlayed, setRecentlyPlayed] = useState<SubsonicAlbum[]>([]);
|
|
const [randomArtists, setRandomArtists] = useState<SubsonicArtist[]>([]);
|
|
const [loading, setLoading] = useState(true);
|
|
|
|
useEffect(() => {
|
|
Promise.all([
|
|
getAlbumList('starred', 12).catch(() => []),
|
|
getAlbumList('newest', 12).catch(() => []),
|
|
getAlbumList('random', 20).catch(() => []),
|
|
getAlbumList('frequent', 12).catch(() => []),
|
|
getAlbumList('recent', 12).catch(() => []),
|
|
isVisible('discoverArtists') ? getArtists().catch(() => []) : Promise.resolve<SubsonicArtist[]>([]),
|
|
]).then(([s, n, r, f, rp, artists]) => {
|
|
setStarred(s);
|
|
setRecent(n);
|
|
setHeroAlbums(r.slice(0, 8));
|
|
setRandom(r.slice(8));
|
|
setMostPlayed(f);
|
|
setRecentlyPlayed(rp);
|
|
// Pick 16 random artists via Fisher-Yates shuffle
|
|
const shuffled = [...artists];
|
|
for (let i = shuffled.length - 1; i > 0; i--) {
|
|
const j = Math.floor(Math.random() * (i + 1));
|
|
[shuffled[i], shuffled[j]] = [shuffled[j], shuffled[i]];
|
|
}
|
|
setRandomArtists(shuffled.slice(0, 16));
|
|
setLoading(false);
|
|
}).catch(() => setLoading(false));
|
|
}, []);
|
|
|
|
const loadMore = async (
|
|
type: 'starred' | 'newest' | 'random' | 'frequent' | 'recent',
|
|
currentList: SubsonicAlbum[],
|
|
setter: React.Dispatch<React.SetStateAction<SubsonicAlbum[]>>
|
|
) => {
|
|
try {
|
|
const more = await getAlbumList(type, 12, currentList.length);
|
|
const newItems = more.filter(m => !currentList.find(c => c.id === m.id));
|
|
if (newItems.length > 0) setter(prev => [...prev, ...newItems]);
|
|
} catch (e) {
|
|
console.error('Failed to load more', e);
|
|
}
|
|
};
|
|
|
|
const { t } = useTranslation();
|
|
const navigate = useNavigate();
|
|
|
|
return (
|
|
<div className="animate-fade-in">
|
|
{isVisible('hero') && <Hero albums={heroAlbums} />}
|
|
|
|
<div className="content-body" style={{ display: 'flex', flexDirection: 'column', gap: '3rem' }}>
|
|
{loading ? (
|
|
<div style={{ display: 'flex', justifyContent: 'center', padding: '4rem' }}>
|
|
<div className="spinner" />
|
|
</div>
|
|
) : (
|
|
<>
|
|
{isVisible('recent') && (
|
|
<AlbumRow
|
|
title={t('home.recent')}
|
|
albums={recent}
|
|
onLoadMore={() => loadMore('newest', recent, setRecent)}
|
|
moreText={t('home.loadMore')}
|
|
/>
|
|
)}
|
|
{isVisible('discover') && (
|
|
<AlbumRow
|
|
title={t('home.discover')}
|
|
albums={random}
|
|
onLoadMore={() => loadMore('random', random, setRandom)}
|
|
moreText={t('home.discoverMore')}
|
|
/>
|
|
)}
|
|
{isVisible('discoverArtists') && randomArtists.length > 0 && (
|
|
<section className="album-row-section">
|
|
<div className="album-row-header">
|
|
<h2 className="section-title" style={{ marginBottom: 0 }}>{t('home.discoverArtists')}</h2>
|
|
</div>
|
|
<div style={{ display: 'flex', flexWrap: 'wrap', gap: '0.5rem' }}>
|
|
{randomArtists.map(a => (
|
|
<button key={a.id} className="artist-ext-link" onClick={() => navigate(`/artist/${a.id}`)}>
|
|
{a.name}
|
|
</button>
|
|
))}
|
|
<button className="artist-ext-link" onClick={() => navigate('/artists')}
|
|
style={{ opacity: 0.6 }}>
|
|
{t('home.discoverArtistsMore')} →
|
|
</button>
|
|
</div>
|
|
</section>
|
|
)}
|
|
{isVisible('recentlyPlayed') && recentlyPlayed.length > 0 && (
|
|
<AlbumRow
|
|
title={t('home.recentlyPlayed')}
|
|
albums={recentlyPlayed}
|
|
onLoadMore={() => loadMore('recent', recentlyPlayed, setRecentlyPlayed)}
|
|
moreText={t('home.loadMore')}
|
|
/>
|
|
)}
|
|
{isVisible('starred') && starred.length > 0 && (
|
|
<AlbumRow
|
|
title={t('home.starred')}
|
|
albums={starred}
|
|
onLoadMore={() => loadMore('starred', starred, setStarred)}
|
|
moreText={t('home.loadMore')}
|
|
/>
|
|
)}
|
|
{isVisible('mostPlayed') && (
|
|
<AlbumRow
|
|
title={t('home.mostPlayed')}
|
|
albums={mostPlayed}
|
|
onLoadMore={() => loadMore('frequent', mostPlayed, setMostPlayed)}
|
|
moreText={t('home.loadMore')}
|
|
/>
|
|
)}
|
|
</>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|