mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
84 lines
1.8 KiB
TypeScript
84 lines
1.8 KiB
TypeScript
import React from 'react';
|
|
import { Space, Table, Tag } from 'antd';
|
|
|
|
const { Column, ColumnGroup } = Table;
|
|
|
|
interface DataType {
|
|
key: React.Key;
|
|
firstName: string;
|
|
lastName: string;
|
|
age: number;
|
|
address: string;
|
|
tags: string[];
|
|
}
|
|
|
|
const data: DataType[] = [
|
|
{
|
|
key: '1',
|
|
firstName: 'John',
|
|
lastName: 'Brown',
|
|
age: 32,
|
|
address: 'New York No. 1 Lake Park',
|
|
tags: ['nice', 'developer'],
|
|
},
|
|
{
|
|
key: '2',
|
|
firstName: 'Jim',
|
|
lastName: 'Green',
|
|
age: 42,
|
|
address: 'London No. 1 Lake Park',
|
|
tags: ['loser'],
|
|
},
|
|
{
|
|
key: '3',
|
|
firstName: 'Joe',
|
|
lastName: 'Black',
|
|
age: 32,
|
|
address: 'Sydney No. 1 Lake Park',
|
|
tags: ['cool', 'teacher'],
|
|
},
|
|
];
|
|
|
|
const App: React.FC = () => (
|
|
<Table<DataType> dataSource={data}>
|
|
<ColumnGroup title="Name">
|
|
<Column title="First Name" dataIndex="firstName" key="firstName" />
|
|
<Column title="Last Name" dataIndex="lastName" key="lastName" />
|
|
</ColumnGroup>
|
|
<Column title="Age" dataIndex="age" key="age" />
|
|
<Column title="Address" dataIndex="address" key="address" />
|
|
<Column
|
|
title="Tags"
|
|
dataIndex="tags"
|
|
key="tags"
|
|
render={(tags: string[]) => (
|
|
<>
|
|
{tags.map((tag) => {
|
|
let color = tag.length > 5 ? 'geekblue' : 'green';
|
|
if (tag === 'loser') {
|
|
color = 'volcano';
|
|
}
|
|
return (
|
|
<Tag color={color} key={tag}>
|
|
{tag.toUpperCase()}
|
|
</Tag>
|
|
);
|
|
})}
|
|
</>
|
|
)}
|
|
/>
|
|
<Column
|
|
title="Action"
|
|
key="action"
|
|
render={(_: any, record: DataType) => (
|
|
<Space size="middle">
|
|
<a>Invite {record.lastName}</a>
|
|
<a>Delete</a>
|
|
</Space>
|
|
)}
|
|
/>
|
|
</Table>
|
|
);
|
|
|
|
export default App;
|