refactor(nowPlaying): co-locate now playing feature into features/nowPlaying

This commit is contained in:
Psychotoxical
2026-06-29 23:38:09 +02:00
parent e0e10e0034
commit 931c47e19e
29 changed files with 151 additions and 139 deletions
@@ -0,0 +1,101 @@
/**
* `ArtistCard` characterization — covers the prop surface added when the
* card became the shared "About the Artist" component for both the
* NowPlaying page and ArtistDetail (replacing the inline bio block on
* /artist/:id and the previously-divergent rendering).
*/
import { describe, it, expect, vi } from 'vitest';
import { fireEvent } from '@testing-library/react';
import { renderWithProviders } from '@/test/helpers/renderWithProviders';
import ArtistCard from '@/features/nowPlaying/components/ArtistCard';
import type { SubsonicArtistInfo } from '@/api/subsonicTypes';
const infoWithImage: SubsonicArtistInfo = {
biography: 'Some bio text here.',
largeImageUrl: 'https://example.test/a-large.jpg',
similarArtist: [{ id: 'sim-1', name: 'Sister Act' }],
} as unknown as SubsonicArtistInfo;
describe('ArtistCard — optional onNavigate', () => {
it('hides the "Go to Artist" link when onNavigate is omitted', () => {
const { container } = renderWithProviders(
<ArtistCard artistName="A" artistId="art-1" artistInfo={infoWithImage} />,
);
expect(container.querySelector('.np-card-link')).toBeNull();
});
it('renders the "Go to Artist" link when onNavigate is provided', () => {
const { container } = renderWithProviders(
<ArtistCard artistName="A" artistId="art-1" artistInfo={infoWithImage} onNavigate={vi.fn()} />,
);
expect(container.querySelector('.np-card-link')).not.toBeNull();
});
});
describe('ArtistCard — hideArtistName / hideSimilar', () => {
it('does not render the artist name row when hideArtistName is set', () => {
const { container } = renderWithProviders(
<ArtistCard artistName="A" artistId="art-1" artistInfo={infoWithImage} hideArtistName />,
);
expect(container.querySelector('.np-dash-artist-name')).toBeNull();
});
it('does not render the similar-artists chip row when hideSimilar is set', () => {
const { container } = renderWithProviders(
<ArtistCard artistName="A" artistId="art-1" artistInfo={infoWithImage} hideSimilar />,
);
expect(container.querySelector('.np-dash-similar')).toBeNull();
});
});
describe('ArtistCard — artistTabs', () => {
it('renders tabs and switches bio when a second artist tab is selected', () => {
const { container, getByRole } = renderWithProviders(
<ArtistCard
artistName="A"
artistId="a1"
artistInfo={infoWithImage}
artistTabs={[
{ id: 'a1', name: 'Dan Balan', artistInfo: { biography: 'Bio A' } as SubsonicArtistInfo },
{ id: 'a2', name: 'Katerina Begu', artistInfo: { biography: 'Bio B' } as SubsonicArtistInfo },
]}
/>,
);
expect(container.querySelectorAll('.np-artist-tab')).toHaveLength(2);
expect(container.querySelector('.np-bio-text')?.textContent).toContain('Bio A');
fireEvent.click(getByRole('tab', { name: 'Katerina Begu' }));
expect(container.querySelector('.np-bio-text')?.textContent).toContain('Bio B');
});
});
describe('ArtistCard — coverFallback', () => {
it('uses coverFallback src + cacheKey when artistInfo has no hero image', () => {
const noImageInfo = { biography: 'b', similarArtist: [] } as unknown as SubsonicArtistInfo;
const { container } = renderWithProviders(
<ArtistCard
artistName="A"
artistId="art-1"
artistInfo={noImageInfo}
coverFallback={{ src: 'https://fallback.test/cover.jpg', cacheKey: 'fb:art-1:cover' }}
/>,
);
const img = container.querySelector<HTMLImageElement>('img.np-dash-artist-image');
expect(img).not.toBeNull();
expect(img!.getAttribute('src') || '').toContain('fallback.test');
});
it('prefers info.largeImageUrl over the fallback when both are present', () => {
const { container } = renderWithProviders(
<ArtistCard
artistName="A"
artistId="art-1"
artistInfo={infoWithImage}
coverFallback={{ src: 'https://fallback.test/cover.jpg', cacheKey: 'fb:art-1:cover' }}
/>,
);
const img = container.querySelector<HTMLImageElement>('img.np-dash-artist-image');
expect(img!.getAttribute('src') || '').toContain('a-large.jpg');
});
});