mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-09 20:29:36 +02:00
a50984d2cb
- causes issues with drag/drop state
46 lines
1.6 KiB
TypeScript
46 lines
1.6 KiB
TypeScript
import clsx from 'clsx';
|
|
|
|
import styles from './composer-column.module.css';
|
|
|
|
import {
|
|
ColumnNullFallback,
|
|
ColumnSkeletonVariable,
|
|
ItemTableListInnerColumn,
|
|
TableColumnContainer,
|
|
} from '/@/renderer/components/item-list/item-table-list/item-table-list-column';
|
|
import { JoinedArtists } from '/@/renderer/features/albums/components/joined-artists';
|
|
import { Album, RelatedArtist, Song } from '/@/shared/types/domain-types';
|
|
|
|
export const ComposerColumn = (props: ItemTableListInnerColumn) => {
|
|
const rowItem = props.getRowItem?.(props.rowIndex) ?? (props.data as any[])[props.rowIndex];
|
|
const item = rowItem as Album | Song | undefined;
|
|
|
|
const composers = item?.participants?.composer || [];
|
|
|
|
if (composers && Array.isArray(composers) && composers.length > 0) {
|
|
return (
|
|
<TableColumnContainer {...props}>
|
|
<div
|
|
className={clsx(styles.composersContainer, {
|
|
[styles.compact]: props.size === 'compact',
|
|
[styles.large]: props.size === 'large',
|
|
})}
|
|
>
|
|
<JoinedArtists
|
|
artistName=""
|
|
artists={composers as RelatedArtist[]}
|
|
linkProps={{ fw: 400, isMuted: true }}
|
|
rootTextProps={{ fw: 400, isMuted: true, size: 'sm' }}
|
|
/>
|
|
</div>
|
|
</TableColumnContainer>
|
|
);
|
|
}
|
|
|
|
if (composers?.length === 0 || item === null || item === undefined) {
|
|
return <ColumnNullFallback {...props} />;
|
|
}
|
|
|
|
return <ColumnSkeletonVariable {...props} />;
|
|
};
|