ant-design/components/table/demo/resizable-column.md

143 lines
2.6 KiB
Markdown
Raw Normal View History

2018-07-24 17:41:01 +08:00
---
order: 26
title:
en-US: Resizable column
zh-CN: 可伸缩列
---
## zh-CN
集成 [react-resizable](https://github.com/STRML/react-resizable) 来实现可伸缩列。
2018-07-24 17:41:01 +08:00
## en-US
Implement resizable column by integrate with [react-resizable](https://github.com/STRML/react-resizable).
2018-07-24 17:41:01 +08:00
2019-05-07 14:57:32 +08:00
```jsx
2018-07-24 17:41:01 +08:00
import { Table } from 'antd';
import { Resizable } from 'react-resizable';
2019-05-07 14:57:32 +08:00
const ResizeableTitle = props => {
2018-07-24 17:41:01 +08:00
const { onResize, width, ...restProps } = props;
if (!width) {
return <th {...restProps} />;
}
return (
<Resizable
width={width}
height={0}
onResize={onResize}
draggableOpts={{ enableUserSelectHack: false }}
>
2018-07-24 17:41:01 +08:00
<th {...restProps} />
</Resizable>
);
};
class Demo extends React.Component {
state = {
2019-05-07 14:57:32 +08:00
columns: [
{
title: 'Date',
dataIndex: 'date',
width: 200,
},
{
title: 'Amount',
dataIndex: 'amount',
width: 100,
},
{
title: 'Type',
dataIndex: 'type',
width: 100,
},
{
title: 'Note',
dataIndex: 'note',
width: 100,
},
{
title: 'Action',
key: 'action',
render: () => <a>Delete</a>,
2019-05-07 14:57:32 +08:00
},
],
2018-07-24 17:41:01 +08:00
};
components = {
header: {
cell: ResizeableTitle,
},
};
2019-05-07 14:57:32 +08:00
data = [
{
key: 0,
date: '2018-02-11',
amount: 120,
type: 'income',
note: 'transfer',
},
{
key: 1,
date: '2018-03-11',
amount: 243,
type: 'income',
note: 'transfer',
},
{
key: 2,
date: '2018-04-11',
amount: 98,
type: 'income',
note: 'transfer',
},
];
2018-07-24 17:41:01 +08:00
handleResize = index => (e, { size }) => {
this.setState(({ columns }) => {
const nextColumns = [...columns];
nextColumns[index] = {
...nextColumns[index],
width: size.width,
};
return { columns: nextColumns };
});
};
render() {
const columns = this.state.columns.map((col, index) => ({
...col,
onHeaderCell: column => ({
width: column.width,
onResize: this.handleResize(index),
}),
}));
2019-05-07 14:57:32 +08:00
return <Table bordered components={this.components} columns={columns} dataSource={this.data} />;
2018-07-24 17:41:01 +08:00
}
}
ReactDOM.render(<Demo />, mountNode);
2019-05-07 14:57:32 +08:00
```
2018-07-24 17:41:01 +08:00
2019-05-07 14:57:32 +08:00
```css
2018-07-24 17:41:01 +08:00
#components-table-demo-resizable-column .react-resizable {
position: relative;
2019-06-20 15:32:53 +08:00
background-clip: padding-box;
2018-07-24 17:41:01 +08:00
}
#components-table-demo-resizable-column .react-resizable-handle {
position: absolute;
width: 10px;
height: 100%;
bottom: 0;
right: -5px;
cursor: col-resize;
z-index: 1;
2018-07-24 17:41:01 +08:00
}
2019-05-07 14:57:32 +08:00
```