use exact album artist names (#1459)

This commit is contained in:
jeffvli
2025-12-30 03:39:53 -08:00
parent aa75aaaffb
commit 6aa3905922
11 changed files with 138 additions and 140 deletions
@@ -16,6 +16,7 @@ import {
useItemSelectionState, useItemSelectionState,
} from '/@/renderer/components/item-list/helpers/item-list-state'; } from '/@/renderer/components/item-list/helpers/item-list-state';
import { ItemControls } from '/@/renderer/components/item-list/types'; import { ItemControls } from '/@/renderer/components/item-list/types';
import { JoinedArtists } from '/@/renderer/features/albums/components/joined-artists';
import { useDragDrop } from '/@/renderer/hooks/use-drag-drop'; import { useDragDrop } from '/@/renderer/hooks/use-drag-drop';
import { AppRoute } from '/@/renderer/router/routes'; import { AppRoute } from '/@/renderer/router/routes';
import { useGeneralSettings } from '/@/renderer/store'; import { useGeneralSettings } from '/@/renderer/store';
@@ -953,21 +954,14 @@ export const getDataRows = (): DataRow[] => {
{ {
format: (data) => { format: (data) => {
if ('albumArtists' in data && Array.isArray(data.albumArtists)) { if ('albumArtists' in data && Array.isArray(data.albumArtists)) {
return (data as Album | Song).albumArtists.map((artist, index) => ( return (
<Fragment key={artist.id}> <JoinedArtists
<Link artistName={data.albumArtistName}
state={{ item: artist }} artists={data.albumArtists}
to={generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, { linkProps={{ fw: 400, isMuted: true }}
albumArtistId: artist.id, rootTextProps={{ fw: 400, isMuted: true, size: 'sm' }}
})} />
> );
{artist.name}
</Link>
{index < (data as Album | Song).albumArtists.length - 1 && (
<Separator />
)}
</Fragment>
));
} }
return ''; return '';
}, },
@@ -1,6 +1,5 @@
import clsx from 'clsx'; import clsx from 'clsx';
import { Fragment, memo, useMemo } from 'react'; import { memo } from 'react';
import { generatePath, Link } from 'react-router';
import styles from './album-artists-column.module.css'; import styles from './album-artists-column.module.css';
@@ -10,24 +9,16 @@ import {
ItemTableListInnerColumn, ItemTableListInnerColumn,
TableColumnContainer, TableColumnContainer,
} from '/@/renderer/components/item-list/item-table-list/item-table-list-column'; } from '/@/renderer/components/item-list/item-table-list/item-table-list-column';
import { AppRoute } from '/@/renderer/router/routes'; import { JoinedArtists } from '/@/renderer/features/albums/components/joined-artists';
import { Text } from '/@/shared/components/text/text'; import { Album, RelatedAlbumArtist, Song } from '/@/shared/types/domain-types';
import { RelatedAlbumArtist } from '/@/shared/types/domain-types';
const AlbumArtistsColumn = (props: ItemTableListInnerColumn) => { const AlbumArtistsColumn = (props: ItemTableListInnerColumn) => {
const row: RelatedAlbumArtist[] | undefined = ( const row: RelatedAlbumArtist[] | undefined = (
props.data as (RelatedAlbumArtist[] | undefined)[] props.data as (RelatedAlbumArtist[] | undefined)[]
)[props.rowIndex]?.[props.columns[props.columnIndex].id]; )[props.rowIndex]?.[props.columns[props.columnIndex].id];
const albumArtists = useMemo(() => { const item = props.data[props.rowIndex] as Album | Song | undefined;
if (!row) return []; const albumArtistString = item && 'albumArtistName' in item ? item.albumArtistName : '';
return row.map((albumArtist) => {
const path = generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, {
albumArtistId: albumArtist.id,
});
return { ...albumArtist, path };
});
}, [row]);
if (Array.isArray(row)) { if (Array.isArray(row)) {
return ( return (
@@ -38,21 +29,20 @@ const AlbumArtistsColumn = (props: ItemTableListInnerColumn) => {
[styles.large]: props.size === 'large', [styles.large]: props.size === 'large',
})} })}
> >
{albumArtists.map((albumArtist, index) => ( <JoinedArtists
<Fragment key={albumArtist.id}> artistName={albumArtistString}
<Text artists={row}
component={Link} linkProps={{ fw: 400, isMuted: true }}
isLink rootTextProps={{
isMuted className: clsx(styles.artistsContainer, {
isNoSelect [styles.compact]: props.size === 'compact',
state={{ item: albumArtist }} [styles.large]: props.size === 'large',
to={albumArtist.path} }),
> fw: 400,
{albumArtist.name} isMuted: true,
</Text> size: 'sm',
{index < albumArtists.length - 1 && ', '} }}
</Fragment> />
))}
</div> </div>
</TableColumnContainer> </TableColumnContainer>
); );
@@ -10,11 +10,12 @@ import {
ItemTableListInnerColumn, ItemTableListInnerColumn,
TableColumnContainer, TableColumnContainer,
} from '/@/renderer/components/item-list/item-table-list/item-table-list-column'; } from '/@/renderer/components/item-list/item-table-list/item-table-list-column';
import { JoinedArtists } from '/@/renderer/features/albums/components/joined-artists';
import { AppRoute } from '/@/renderer/router/routes'; import { AppRoute } from '/@/renderer/router/routes';
import { Text } from '/@/shared/components/text/text'; import { Text } from '/@/shared/components/text/text';
import { RelatedAlbumArtist } from '/@/shared/types/domain-types'; import { LibraryItem, RelatedAlbumArtist, Song } from '/@/shared/types/domain-types';
const ArtistsColumn = (props: ItemTableListInnerColumn) => { const AlbumArtistsColumn = (props: ItemTableListInnerColumn) => {
const row: RelatedAlbumArtist[] | undefined = ( const row: RelatedAlbumArtist[] | undefined = (
props.data as (RelatedAlbumArtist[] | undefined)[] props.data as (RelatedAlbumArtist[] | undefined)[]
)[props.rowIndex]?.[props.columns[props.columnIndex].id]; )[props.rowIndex]?.[props.columns[props.columnIndex].id];
@@ -65,6 +66,47 @@ const ArtistsColumn = (props: ItemTableListInnerColumn) => {
return <ColumnSkeletonVariable {...props} />; return <ColumnSkeletonVariable {...props} />;
}; };
export const ArtistsColumnMemo = memo(ArtistsColumn); const SongArtistsColumn = (props: ItemTableListInnerColumn) => {
const row: Song | undefined = (props.data as (Song | undefined)[])[props.rowIndex];
if (row) {
return (
<TableColumnContainer {...props}>
<div
className={clsx(styles.artistsContainer, {
[styles.compact]: props.size === 'compact',
[styles.large]: props.size === 'large',
})}
>
<JoinedArtists
artistName={row.artistName}
artists={row.artists}
linkProps={{ fw: 400, isMuted: true }}
rootTextProps={{ fw: 400, isMuted: true, size: 'sm' }}
/>
</div>
</TableColumnContainer>
);
}
if (row === null) {
return <ColumnNullFallback {...props} />;
}
return <ColumnSkeletonVariable {...props} />;
};
const BaseArtistsColumn = (props: ItemTableListInnerColumn) => {
const { itemType } = props;
switch (itemType) {
case LibraryItem.ALBUM:
return <AlbumArtistsColumn {...props} />;
default:
return <SongArtistsColumn {...props} />;
}
};
const ArtistsColumnMemo = memo(BaseArtistsColumn);
export { ArtistsColumnMemo as ArtistsColumn }; export { ArtistsColumnMemo as ArtistsColumn };
@@ -1,6 +1,6 @@
import clsx from 'clsx'; import clsx from 'clsx';
import { CSSProperties, useMemo, useState } from 'react'; import { CSSProperties, useState } from 'react';
import { generatePath, Link } from 'react-router'; import { Link } from 'react-router';
import styles from './title-combined-column.module.css'; import styles from './title-combined-column.module.css';
@@ -12,16 +12,16 @@ import {
ItemTableListInnerColumn, ItemTableListInnerColumn,
TableColumnContainer, TableColumnContainer,
} from '/@/renderer/components/item-list/item-table-list/item-table-list-column'; } from '/@/renderer/components/item-list/item-table-list/item-table-list-column';
import { JoinedArtists } from '/@/renderer/features/albums/components/joined-artists';
import { PlayButton } from '/@/renderer/features/shared/components/play-button'; import { PlayButton } from '/@/renderer/features/shared/components/play-button';
import { import {
LONG_PRESS_PLAY_BEHAVIOR, LONG_PRESS_PLAY_BEHAVIOR,
PlayTooltip, PlayTooltip,
} from '/@/renderer/features/shared/components/play-button-group'; } from '/@/renderer/features/shared/components/play-button-group';
import { AppRoute } from '/@/renderer/router/routes';
import { usePlayButtonBehavior } from '/@/renderer/store'; import { usePlayButtonBehavior } from '/@/renderer/store';
import { Icon } from '/@/shared/components/icon/icon'; import { Icon } from '/@/shared/components/icon/icon';
import { Text } from '/@/shared/components/text/text'; import { Text } from '/@/shared/components/text/text';
import { Folder, LibraryItem, QueueSong, RelatedAlbumArtist } from '/@/shared/types/domain-types'; import { Folder, LibraryItem, QueueSong } from '/@/shared/types/domain-types';
import { Play } from '/@/shared/types/types'; import { Play } from '/@/shared/types/types';
export const DefaultTitleCombinedColumn = (props: ItemTableListInnerColumn) => { export const DefaultTitleCombinedColumn = (props: ItemTableListInnerColumn) => {
@@ -73,18 +73,6 @@ export const DefaultTitleCombinedColumn = (props: ItemTableListInnerColumn) => {
}); });
}; };
const artists = useMemo(() => {
if (row && 'artists' in item && Array.isArray(item.artists)) {
return (item.artists as RelatedAlbumArtist[]).map((artist) => {
const path = generatePath(AppRoute.LIBRARY_ARTISTS_DETAIL, {
artistId: artist.id,
});
return { ...artist, path };
});
}
return [];
}, [item, row]);
if (item && 'name' in item && 'imageUrl' in item && 'artists' in item) { if (item && 'name' in item && 'imageUrl' in item && 'artists' in item) {
const rowHeight = props.getRowHeight(props.rowIndex, props); const rowHeight = props.getRowHeight(props.rowIndex, props);
const path = getTitlePath(props.itemType, (props.data[props.rowIndex] as any).id as string); const path = getTitlePath(props.itemType, (props.data[props.rowIndex] as any).id as string);
@@ -146,22 +134,12 @@ export const DefaultTitleCombinedColumn = (props: ItemTableListInnerColumn) => {
{item.name as string} {item.name as string}
</Text> </Text>
<div className={styles.artists}> <div className={styles.artists}>
{artists.map((artist, index) => ( <JoinedArtists
<span key={artist.id}> artistName={item.albumArtist}
<Text artists={item.albumArtists}
component={Link} linkProps={{ fw: 400, isMuted: true }}
isLink rootTextProps={{ fw: 400, isMuted: true, size: 'sm' }}
isMuted />
isNoSelect
size="sm"
state={{ item: artist }}
to={artist.path}
>
{artist.name}
</Text>
{index < artists.length - 1 && ', '}
</span>
))}
</div> </div>
</div> </div>
</TableColumnContainer> </TableColumnContainer>
@@ -229,18 +207,6 @@ export const QueueSongTitleCombinedColumn = (props: ItemTableListInnerColumn) =>
}); });
}; };
const artists = useMemo(() => {
if (row && 'artists' in row && Array.isArray(row.artists)) {
return (row.artists as RelatedAlbumArtist[]).map((artist) => {
const path = generatePath(AppRoute.LIBRARY_ARTISTS_DETAIL, {
artistId: artist.id,
});
return { ...artist, path };
});
}
return [];
}, [row]);
if (row && 'name' in row && 'imageUrl' in row && 'artists' in row) { if (row && 'name' in row && 'imageUrl' in row && 'artists' in row) {
const rowHeight = props.getRowHeight(props.rowIndex, props); const rowHeight = props.getRowHeight(props.rowIndex, props);
const path = getTitlePath(props.itemType, (props.data[props.rowIndex] as any).id as string); const path = getTitlePath(props.itemType, (props.data[props.rowIndex] as any).id as string);
@@ -310,22 +276,12 @@ export const QueueSongTitleCombinedColumn = (props: ItemTableListInnerColumn) =>
{row.name as string} {row.name as string}
</Text> </Text>
<div className={styles.artists}> <div className={styles.artists}>
{artists.map((artist, index) => ( <JoinedArtists
<span key={artist.id}> artistName={item.artistName}
<Text artists={item.artists}
component={Link} linkProps={{ fw: 400, isMuted: true }}
isLink rootTextProps={{ fw: 400, isMuted: true, size: 'sm' }}
isMuted />
isNoSelect
size="sm"
state={{ item: artist }}
to={artist.path}
>
{artist.name}
</Text>
{index < artists.length - 1 && ', '}
</span>
))}
</div> </div>
</div> </div>
</TableColumnContainer> </TableColumnContainer>
@@ -377,7 +377,7 @@ export const AlbumDetailContent = () => {
<AlbumMetadataGenres genres={detailQuery?.data?.genres} /> <AlbumMetadataGenres genres={detailQuery?.data?.genres} />
<AlbumMetadataTags album={detailQuery?.data} /> <AlbumMetadataTags album={detailQuery?.data} />
<AlbumMetadataExternalLinks <AlbumMetadataExternalLinks
albumArtist={detailQuery?.data?.albumArtist} albumArtist={detailQuery?.data?.albumArtistName}
albumName={detailQuery?.data?.name} albumName={detailQuery?.data?.name}
externalLinks={externalLinks} externalLinks={externalLinks}
lastFM={lastFM} lastFM={lastFM}
@@ -7,7 +7,7 @@ import styles from './album-detail-header.module.css';
import { useItemImageUrl } from '/@/renderer/components/item-image/item-image'; import { useItemImageUrl } from '/@/renderer/components/item-image/item-image';
import { albumQueries } from '/@/renderer/features/albums/api/album-api'; import { albumQueries } from '/@/renderer/features/albums/api/album-api';
import { JoinedAlbumArtist } from '/@/renderer/features/albums/components/joined-album-artist'; import { JoinedArtists } from '/@/renderer/features/albums/components/joined-artists';
import { ContextMenuController } from '/@/renderer/features/context-menu/context-menu-controller'; import { ContextMenuController } from '/@/renderer/features/context-menu/context-menu-controller';
import { usePlayer } from '/@/renderer/features/player/context/player-context'; import { usePlayer } from '/@/renderer/features/player/context/player-context';
import { import {
@@ -214,9 +214,9 @@ export const AlbumDetailHeader = forwardRef<HTMLDivElement>((_props, ref) => {
))} ))}
</Group> </Group>
<Group className={styles.metadataGroup}> <Group className={styles.metadataGroup}>
<JoinedAlbumArtist <JoinedArtists
albumArtist={detailQuery?.data?.albumArtist || ''} artistName={detailQuery?.data?.albumArtistName || ''}
albumArtists={detailQuery?.data?.albumArtists || []} artists={detailQuery?.data?.albumArtists || []}
/> />
</Group> </Group>
<LibraryHeaderMenu <LibraryHeaderMenu
@@ -2,33 +2,43 @@ import { Fragment } from 'react';
import { generatePath, Link } from 'react-router'; import { generatePath, Link } from 'react-router';
import { AppRoute } from '/@/renderer/router/routes'; import { AppRoute } from '/@/renderer/router/routes';
import { Group } from '/@/shared/components/group/group'; import { Text, TextProps } from '/@/shared/components/text/text';
import { Separator } from '/@/shared/components/separator/separator'; import { AlbumArtist, RelatedAlbumArtist, RelatedArtist } from '/@/shared/types/domain-types';
import { Text } from '/@/shared/components/text/text';
import { AlbumArtist, RelatedArtist } from '/@/shared/types/domain-types';
interface JoinedAlbumArtistProps { interface JoinedArtistsProps {
albumArtist: string; artistName: string;
albumArtists: AlbumArtist[] | RelatedArtist[]; artists: AlbumArtist[] | RelatedAlbumArtist[] | RelatedArtist[];
linkProps?: Partial<Omit<TextProps, 'children' | 'component' | 'to'>>;
rootTextProps?: Partial<Omit<TextProps, 'children' | 'component'>>;
} }
export const JoinedAlbumArtist = ({ albumArtist, albumArtists }: JoinedAlbumArtistProps) => { export const JoinedArtists = ({
artistName,
artists,
linkProps,
rootTextProps,
}: JoinedArtistsProps) => {
const parts: ( const parts: (
| string | string
| { artist: AlbumArtist | RelatedArtist; end: number; start: number; text: string } | {
artist: AlbumArtist | RelatedAlbumArtist | RelatedArtist;
end: number;
start: number;
text: string;
}
)[] = []; )[] = [];
const matches: Array<{ const matches: Array<{
artist: AlbumArtist | RelatedArtist; artist: AlbumArtist | RelatedAlbumArtist | RelatedArtist;
end: number; end: number;
name: string; name: string;
start: number; start: number;
}> = []; }> = [];
for (const artist of albumArtists) { for (const artist of artists) {
const name = artist.name; const name = artist.name;
const regex = new RegExp(escapeRegex(name), 'gi'); const regex = new RegExp(escapeRegex(name), 'gi');
let match: null | RegExpExecArray = null; let match: null | RegExpExecArray = null;
while ((match = regex.exec(albumArtist)) !== null) { while ((match = regex.exec(artistName)) !== null) {
matches.push({ matches.push({
artist, artist,
end: match.index + match[0].length, end: match.index + match[0].length,
@@ -63,7 +73,7 @@ export const JoinedAlbumArtist = ({ albumArtist, albumArtists }: JoinedAlbumArti
let lastIndex = 0; let lastIndex = 0;
for (const match of nonOverlappingMatches) { for (const match of nonOverlappingMatches) {
if (match.start > lastIndex) { if (match.start > lastIndex) {
parts.push(albumArtist.substring(lastIndex, match.start)); parts.push(artistName.substring(lastIndex, match.start));
} }
parts.push({ parts.push({
@@ -76,19 +86,19 @@ export const JoinedAlbumArtist = ({ albumArtist, albumArtists }: JoinedAlbumArti
lastIndex = match.end; lastIndex = match.end;
} }
if (lastIndex < albumArtist.length) { if (lastIndex < artistName?.length) {
parts.push(albumArtist.substring(lastIndex)); parts.push(artistName.substring(lastIndex));
} }
const hasArtistMatches = parts.some((part) => typeof part !== 'string'); const hasArtistMatches = parts.some((part) => typeof part !== 'string');
// If no matches found and there are album artists, return the album artists // If no matches found and there are album artists, return the album artists
if (!hasArtistMatches && albumArtists.length > 0) { if (!hasArtistMatches && artists.length > 0) {
return ( return (
<Group gap="xs"> <Text component="span" {...rootTextProps}>
{albumArtists.map((artist, index) => ( {artists.map((artist, index) => (
<Fragment key={artist.id}> <Fragment key={artist.id}>
{index > 0 && <Separator />} {index > 0 && ', '}
<Text <Text
component={Link} component={Link}
fw={600} fw={600}
@@ -96,26 +106,27 @@ export const JoinedAlbumArtist = ({ albumArtist, albumArtists }: JoinedAlbumArti
to={generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, { to={generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, {
albumArtistId: artist.id, albumArtistId: artist.id,
})} })}
{...linkProps}
> >
{artist.name} {artist.name}
</Text> </Text>
</Fragment> </Fragment>
))} ))}
</Group> </Text>
); );
} }
// If no matches found and no albumArtists, return the original string // If no matches found and no albumArtists, return the original string
if (!hasArtistMatches) { if (!hasArtistMatches) {
return ( return (
<Text fw={400} isNoSelect> <Text fw={400} isNoSelect {...rootTextProps}>
{albumArtist} {artistName}
</Text> </Text>
); );
} }
return ( return (
<Text component="span" fw={400}> <Text component="span" fw={400} {...rootTextProps}>
{parts.map((part, index) => { {parts.map((part, index) => {
if (typeof part === 'string') { if (typeof part === 'string') {
return <Fragment key={index}>{part}</Fragment>; return <Fragment key={index}>{part}</Fragment>;
@@ -131,6 +142,7 @@ export const JoinedAlbumArtist = ({ albumArtist, albumArtists }: JoinedAlbumArti
to={generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, { to={generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, {
albumArtistId: artist.id, albumArtistId: artist.id,
})} })}
{...linkProps}
> >
{text} {text}
</Text> </Text>
@@ -145,6 +145,7 @@ const normalizeSong = (
_serverId: server?.id || '', _serverId: server?.id || '',
_serverType: ServerType.JELLYFIN, _serverType: ServerType.JELLYFIN,
album: item.Album, album: item.Album,
albumArtistName: item.AlbumArtist || '',
albumArtists: item.AlbumArtists?.map((entry) => ({ albumArtists: item.AlbumArtists?.map((entry) => ({
id: entry.Id, id: entry.Id,
imageId: entry.Id, imageId: entry.Id,
@@ -154,7 +155,7 @@ const normalizeSong = (
userRating: null, userRating: null,
})), })),
albumId: item.AlbumId || `dummy/${item.Id}`, albumId: item.AlbumId || `dummy/${item.Id}`,
artistName: item?.ArtistItems?.[0]?.Name || item?.AlbumArtists?.[0]?.Name, artistName: item?.ArtistItems?.map((entry) => entry.Name).join(', ') || '',
artists: (item?.ArtistItems?.length ? item.ArtistItems : item.AlbumArtists)?.map( artists: (item?.ArtistItems?.length ? item.ArtistItems : item.AlbumArtists)?.map(
(entry) => ({ (entry) => ({
id: entry.Id, id: entry.Id,
@@ -231,7 +232,7 @@ const normalizeAlbum = (
_itemType: LibraryItem.ALBUM, _itemType: LibraryItem.ALBUM,
_serverId: server?.id || '', _serverId: server?.id || '',
_serverType: ServerType.JELLYFIN, _serverType: ServerType.JELLYFIN,
albumArtist: item.AlbumArtist, albumArtistName: item.AlbumArtist || '',
albumArtists: albumArtists:
item.AlbumArtists.map((entry) => ({ item.AlbumArtists.map((entry) => ({
id: entry.Id, id: entry.Id,
@@ -158,6 +158,7 @@ const normalizeSong = (
_itemType: LibraryItem.SONG, _itemType: LibraryItem.SONG,
_serverId: server?.id || 'unknown', _serverId: server?.id || 'unknown',
_serverType: ServerType.NAVIDROME, _serverType: ServerType.NAVIDROME,
albumArtistName: item.albumArtist,
artistName: item.artist, artistName: item.artist,
bitDepth: item.bitDepth || null, bitDepth: item.bitDepth || null,
bitRate: item.bitRate, bitRate: item.bitRate,
@@ -273,7 +274,7 @@ const normalizeAlbum = (
_itemType: LibraryItem.ALBUM, _itemType: LibraryItem.ALBUM,
_serverId: server?.id || 'unknown', _serverId: server?.id || 'unknown',
_serverType: ServerType.NAVIDROME, _serverType: ServerType.NAVIDROME,
albumArtist: item.albumArtist, albumArtistName: item.albumArtist,
comment: item.comment || null, comment: item.comment || null,
createdAt: item.createdAt, createdAt: item.createdAt,
duration: item.duration !== undefined ? item.duration * 1000 : null, duration: item.duration !== undefined ? item.duration * 1000 : null,
@@ -123,6 +123,7 @@ const normalizeSong = (
_serverId: server?.id || 'unknown', _serverId: server?.id || 'unknown',
_serverType: ServerType.SUBSONIC, _serverType: ServerType.SUBSONIC,
album: item.album || '', album: item.album || '',
albumArtistName: item.artist || '',
albumArtists: getArtistList(item.albumArtists, item.artistId, item.artist), albumArtists: getArtistList(item.albumArtists, item.artistId, item.artist),
albumId: item.albumId?.toString() || '', albumId: item.albumId?.toString() || '',
artistName: item.artist || '', artistName: item.artist || '',
@@ -247,7 +248,7 @@ const normalizeAlbum = (
_itemType: LibraryItem.ALBUM, _itemType: LibraryItem.ALBUM,
_serverId: server?.id || 'unknown', _serverId: server?.id || 'unknown',
_serverType: ServerType.SUBSONIC, _serverType: ServerType.SUBSONIC,
albumArtist: item.artist, albumArtistName: item.artist,
albumArtists: getArtistList(item.artists, item.artistId, item.artist), albumArtists: getArtistList(item.artists, item.artistId, item.artist),
artists: [], artists: [],
comment: null, comment: null,
+2 -1
View File
@@ -171,7 +171,7 @@ export type Album = {
_itemType: LibraryItem.ALBUM; _itemType: LibraryItem.ALBUM;
_serverId: string; _serverId: string;
_serverType: ServerType; _serverType: ServerType;
albumArtist: string; albumArtistName: string;
albumArtists: RelatedArtist[]; albumArtists: RelatedArtist[];
artists: RelatedArtist[]; artists: RelatedArtist[];
comment: null | string; comment: null | string;
@@ -366,6 +366,7 @@ export type Song = {
_serverId: string; _serverId: string;
_serverType: ServerType; _serverType: ServerType;
album: null | string; album: null | string;
albumArtistName: string;
albumArtists: RelatedArtist[]; albumArtists: RelatedArtist[];
albumId: string; albumId: string;
artistName: string; artistName: string;