mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 18:33:33 +00:00
42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
import React from 'react';
|
|
import type { ICellRendererParams } from '@ag-grid-community/core';
|
|
import { Link } from 'react-router-dom';
|
|
import type { AlbumArtist, Artist } from '/@/renderer/api/types';
|
|
import { Text } from '/@/renderer/components/text';
|
|
import { CellContainer } from '/@/renderer/components/virtual-table/cells/generic-cell';
|
|
|
|
export const GenreCell = ({ value, data }: ICellRendererParams) => {
|
|
return (
|
|
<CellContainer position="left">
|
|
<Text
|
|
$secondary
|
|
overflow="hidden"
|
|
size="sm"
|
|
>
|
|
{value?.map((item: Artist | AlbumArtist, index: number) => (
|
|
<React.Fragment key={`row-${item.id}-${data.uniqueId}`}>
|
|
{index > 0 && (
|
|
<Text
|
|
$secondary
|
|
size="sm"
|
|
style={{ display: 'inline-block' }}
|
|
>
|
|
,
|
|
</Text>
|
|
)}{' '}
|
|
<Text
|
|
$link
|
|
$secondary
|
|
component={Link}
|
|
overflow="hidden"
|
|
size="sm"
|
|
to="/"
|
|
>
|
|
{item.name || '—'}
|
|
</Text>
|
|
</React.Fragment>
|
|
))}
|
|
</Text>
|
|
</CellContainer>
|
|
);
|
|
};
|