mirror of
https://github.com/jeffvli/feishin.git
synced 2026-06-12 23:32:19 +02:00
133 lines
4.2 KiB
TypeScript
133 lines
4.2 KiB
TypeScript
import clsx from 'clsx';
|
|
import { Link } from 'react-router';
|
|
|
|
import styles from './title-column.module.css';
|
|
|
|
import { getTitlePath } from '/@/renderer/components/item-list/helpers/get-title-path';
|
|
import {
|
|
ColumnNullFallback,
|
|
ColumnSkeletonVariable,
|
|
ItemTableListInnerColumn,
|
|
TableColumnContainer,
|
|
} from '/@/renderer/components/item-list/item-table-list/item-table-list-column';
|
|
import { Text } from '/@/shared/components/text/text';
|
|
import { LibraryItem, QueueSong } from '/@/shared/types/domain-types';
|
|
|
|
export const TitleColumn = (props: ItemTableListInnerColumn) => {
|
|
const { itemType } = props;
|
|
|
|
switch (itemType) {
|
|
case LibraryItem.FOLDER:
|
|
case LibraryItem.PLAYLIST_SONG:
|
|
case LibraryItem.QUEUE_SONG:
|
|
case LibraryItem.SONG:
|
|
return <QueueSongTitleColumn {...props} />;
|
|
default:
|
|
return <DefaultTitleColumn {...props} />;
|
|
}
|
|
};
|
|
|
|
function DefaultTitleColumn(props: ItemTableListInnerColumn) {
|
|
const row: string | undefined = (props.data as (any | undefined)[])[props.rowIndex]?.[
|
|
props.columns[props.columnIndex].id
|
|
];
|
|
|
|
if (typeof row === 'string') {
|
|
const path = getTitlePath(props.itemType, (props.data[props.rowIndex] as any).id as string);
|
|
const item = props.data[props.rowIndex] as any;
|
|
|
|
const titleLinkProps = path
|
|
? {
|
|
component: Link,
|
|
isLink: true,
|
|
state: { item },
|
|
to: path,
|
|
}
|
|
: {};
|
|
|
|
return (
|
|
<TableColumnContainer {...props}>
|
|
<Text
|
|
className={clsx({
|
|
[styles.compact]: props.size === 'compact',
|
|
[styles.large]: props.size === 'large',
|
|
[styles.nameContainer]: true,
|
|
})}
|
|
isNoSelect
|
|
{...titleLinkProps}
|
|
>
|
|
{row}
|
|
</Text>
|
|
</TableColumnContainer>
|
|
);
|
|
}
|
|
|
|
if (row === null) {
|
|
return <ColumnNullFallback {...props} />;
|
|
}
|
|
|
|
return <ColumnSkeletonVariable {...props} />;
|
|
}
|
|
|
|
function QueueSongTitleColumn(props: ItemTableListInnerColumn) {
|
|
const row: string | undefined = (props.data as (any | undefined)[])[props.rowIndex]?.[
|
|
props.columns[props.columnIndex].id
|
|
];
|
|
|
|
const song = props.data[props.rowIndex] as QueueSong;
|
|
const isActive =
|
|
!!props.activeRowId &&
|
|
(props.activeRowId === song?.id || props.activeRowId === song?._uniqueId);
|
|
|
|
if (typeof row === 'string') {
|
|
const path = getTitlePath(props.itemType, (props.data[props.rowIndex] as any).id as string);
|
|
const item = props.data[props.rowIndex] as any;
|
|
|
|
const titleLinkProps = path
|
|
? {
|
|
component: Link,
|
|
isLink: true,
|
|
state: { item },
|
|
to: path,
|
|
}
|
|
: {};
|
|
|
|
return (
|
|
<TableColumnContainer {...props}>
|
|
<Text
|
|
className={clsx({
|
|
[styles.active]: isActive,
|
|
[styles.compact]: props.size === 'compact',
|
|
[styles.large]: props.size === 'large',
|
|
[styles.nameContainer]: true,
|
|
})}
|
|
isNoSelect
|
|
{...titleLinkProps}
|
|
>
|
|
{row}
|
|
{song?.trackSubtitle && props.itemType !== LibraryItem.QUEUE_SONG && (
|
|
<Text
|
|
className={clsx({
|
|
[styles.active]: isActive,
|
|
})}
|
|
component="span"
|
|
isMuted
|
|
size="sm"
|
|
>
|
|
{' ('}
|
|
{song.trackSubtitle}
|
|
{')'}
|
|
</Text>
|
|
)}
|
|
</Text>
|
|
</TableColumnContainer>
|
|
);
|
|
}
|
|
|
|
if (row === null) {
|
|
return <ColumnNullFallback {...props} />;
|
|
}
|
|
|
|
return <ColumnSkeletonVariable {...props} />;
|
|
}
|