mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-01 06:49:32 +08:00
7b280d307b
* chore: bump rc-table to v7.45.0 * feat: 补充类型 * feat: 补充类型 --------- Co-authored-by: 叶枫 <645381995@qq.com>
115 lines
2.9 KiB
TypeScript
115 lines
2.9 KiB
TypeScript
import React from 'react';
|
|
import { DownOutlined } from '@ant-design/icons';
|
|
import type { TableColumnsType } from 'antd';
|
|
import { Badge, Dropdown, Space, Table } from 'antd';
|
|
|
|
interface DataType {
|
|
key: React.Key;
|
|
name: string;
|
|
platform: string;
|
|
version: string;
|
|
upgradeNum: number;
|
|
creator: string;
|
|
createdAt: string;
|
|
}
|
|
|
|
interface ExpandedDataType {
|
|
key: React.Key;
|
|
date: string;
|
|
name: string;
|
|
upgradeNum: string;
|
|
}
|
|
|
|
const items = [
|
|
{ key: '1', label: 'Action 1' },
|
|
{ key: '2', label: 'Action 2' },
|
|
];
|
|
|
|
const App: React.FC = () => {
|
|
const expandedRowRender = () => {
|
|
const columns: TableColumnsType<ExpandedDataType> = [
|
|
{ title: 'Date', dataIndex: 'date', key: 'date' },
|
|
{ title: 'Name', dataIndex: 'name', key: 'name' },
|
|
{
|
|
title: 'Status',
|
|
key: 'state',
|
|
render: () => <Badge status="success" text="Finished" />,
|
|
},
|
|
{ title: 'Upgrade Status', dataIndex: 'upgradeNum', key: 'upgradeNum' },
|
|
{
|
|
title: 'Action',
|
|
key: 'operation',
|
|
render: () => (
|
|
<Space size="middle">
|
|
<a>Pause</a>
|
|
<a>Stop</a>
|
|
<Dropdown menu={{ items }}>
|
|
<a>
|
|
More <DownOutlined />
|
|
</a>
|
|
</Dropdown>
|
|
</Space>
|
|
),
|
|
},
|
|
];
|
|
|
|
const data = [];
|
|
for (let i = 0; i < 3; ++i) {
|
|
data.push({
|
|
key: i.toString(),
|
|
date: '2014-12-24 23:12:00',
|
|
name: 'This is production name',
|
|
upgradeNum: 'Upgraded: 56',
|
|
});
|
|
}
|
|
return <Table columns={columns} dataSource={data} pagination={false} />;
|
|
};
|
|
|
|
const columns: TableColumnsType<DataType> = [
|
|
{ title: 'Name', dataIndex: 'name', key: 'name' },
|
|
{ title: 'Platform', dataIndex: 'platform', key: 'platform' },
|
|
{ title: 'Version', dataIndex: 'version', key: 'version' },
|
|
{ title: 'Upgraded', dataIndex: 'upgradeNum', key: 'upgradeNum' },
|
|
{ title: 'Creator', dataIndex: 'creator', key: 'creator' },
|
|
{ title: 'Date', dataIndex: 'createdAt', key: 'createdAt' },
|
|
{ title: 'Action', key: 'operation', render: () => <a>Publish</a> },
|
|
];
|
|
|
|
const data: DataType[] = [];
|
|
for (let i = 0; i < 3; ++i) {
|
|
data.push({
|
|
key: i.toString(),
|
|
name: 'Screen',
|
|
platform: 'iOS',
|
|
version: '10.3.4.5654',
|
|
upgradeNum: 500,
|
|
creator: 'Jack',
|
|
createdAt: '2014-12-24 23:12:00',
|
|
});
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Table
|
|
columns={columns}
|
|
expandable={{ expandedRowRender, defaultExpandedRowKeys: ['0'] }}
|
|
dataSource={data}
|
|
/>
|
|
<Table
|
|
columns={columns}
|
|
expandable={{ expandedRowRender, defaultExpandedRowKeys: ['0'] }}
|
|
dataSource={data}
|
|
size="middle"
|
|
/>
|
|
<Table
|
|
columns={columns}
|
|
expandable={{ expandedRowRender, defaultExpandedRowKeys: ['0'] }}
|
|
dataSource={data}
|
|
size="small"
|
|
/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|