mirror of
https://github.com/jeffvli/feishin.git
synced 2026-07-10 20:49:55 +02:00
a50984d2cb
- causes issues with drag/drop state
26 lines
796 B
TypeScript
26 lines
796 B
TypeScript
import {
|
|
ColumnNullFallback,
|
|
ColumnSkeletonVariable,
|
|
ItemTableListInnerColumn,
|
|
TableColumnTextContainer,
|
|
} from '/@/renderer/components/item-list/item-table-list/item-table-list-column';
|
|
|
|
export const PathColumn = (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 {...props}>
|
|
<span>{row}</span>
|
|
</TableColumnTextContainer>
|
|
);
|
|
}
|
|
|
|
if (row === null) {
|
|
return <ColumnNullFallback {...props} />;
|
|
}
|
|
|
|
return <ColumnSkeletonVariable {...props} />;
|
|
};
|