You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
775 B
29 lines
775 B
5 years ago
|
/* eslint-disable import/prefer-default-export */
|
||
|
import { ColumnType, ColumnTitle, ColumnTitleProps, Key } from './interface';
|
||
|
|
||
|
export function getColumnKey<RecordType>(column: ColumnType<RecordType>, defaultKey: string): Key {
|
||
|
if ('key' in column && column.key !== undefined) {
|
||
|
return column.key;
|
||
|
}
|
||
|
if (column.dataIndex) {
|
||
|
return Array.isArray(column.dataIndex) ? column.dataIndex.join('.') : column.dataIndex;
|
||
|
}
|
||
|
|
||
|
return defaultKey;
|
||
|
}
|
||
|
|
||
|
export function getColumnPos(index: number, pos?: string) {
|
||
|
return pos ? `${pos}-${index}` : `${index}`;
|
||
|
}
|
||
|
|
||
|
export function renderColumnTitle<RecordType>(
|
||
|
title: ColumnTitle<RecordType>,
|
||
|
props: ColumnTitleProps<RecordType>,
|
||
|
) {
|
||
|
if (typeof title === 'function') {
|
||
|
return title(props);
|
||
|
}
|
||
|
|
||
|
return title;
|
||
|
}
|