mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-16 13:40:24 +02:00
a50984d2cb
- causes issues with drag/drop state
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import clsx from 'clsx';
|
|
|
|
import styles from './text-column.module.css';
|
|
|
|
import {
|
|
ColumnNullFallback,
|
|
ColumnSkeletonVariable,
|
|
ItemTableListInnerColumn,
|
|
TableColumnTextContainer,
|
|
} from '/@/renderer/components/item-list/item-table-list/item-table-list-column';
|
|
|
|
export const TextColumn = (props: ItemTableListInnerColumn) => {
|
|
const rowItem = props.getRowItem?.(props.rowIndex) ?? (props.data as any[])[props.rowIndex];
|
|
const row: string | undefined = (rowItem as any)?.[props.columns[props.columnIndex].id];
|
|
|
|
if (typeof row === 'string' && row) {
|
|
return (
|
|
<TableColumnTextContainer
|
|
className={clsx(styles.textContainer, {
|
|
[styles.compact]: props.size === 'compact',
|
|
[styles.large]: props.size === 'large',
|
|
})}
|
|
{...props}
|
|
>
|
|
{row}
|
|
</TableColumnTextContainer>
|
|
);
|
|
}
|
|
|
|
if (row === null) {
|
|
return <ColumnNullFallback {...props} />;
|
|
}
|
|
|
|
return <ColumnSkeletonVariable {...props} />;
|
|
};
|