mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
857ee24e38
* type: Table TypeScript improvement * type: Table TypeScript improvement * type: Table TypeScript improvement * fix: fix demo * fix: fix demo * fix: fix type * fix: fix type * fix: fix type * fix: fix type
42 lines
910 B
TypeScript
42 lines
910 B
TypeScript
import React from 'react';
|
|
import { Table } from 'antd';
|
|
import type { TableColumnsType, TableProps } from 'antd';
|
|
|
|
type TableRowSelection<T extends object = object> = TableProps<T>['rowSelection'];
|
|
|
|
interface DataType {
|
|
key: React.Key;
|
|
name: string;
|
|
}
|
|
|
|
const columns: TableColumnsType<DataType> = [
|
|
{
|
|
title: 'Name',
|
|
dataIndex: 'name',
|
|
},
|
|
];
|
|
|
|
const data: DataType[] = [];
|
|
for (let i = 0; i < 46; i++) {
|
|
data.push({
|
|
key: i,
|
|
name: i % 2 === 0 ? `Edward King ${i}` : 'Another Row',
|
|
});
|
|
}
|
|
|
|
const App: React.FC = () => {
|
|
const rowSelection: TableRowSelection<DataType> = {
|
|
renderCell: (checked, _record, index, node) => ({
|
|
props: { rowSpan: index % 2 === 0 ? 2 : 0 },
|
|
children: (
|
|
<>
|
|
{String(checked)}: {node}
|
|
</>
|
|
),
|
|
}),
|
|
};
|
|
return <Table rowSelection={rowSelection} columns={columns} dataSource={data} />;
|
|
};
|
|
|
|
export default App;
|