ant-design/components/tabs/demo/editable-card.md

90 lines
2.0 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 9
2016-08-24 10:33:25 +08:00
title:
zh-CN: 新增和关闭页签
en-US: Add & close tab
2016-03-31 09:40:55 +08:00
---
2015-12-15 16:34:02 +08:00
2016-08-03 10:39:20 +08:00
## zh-CN
2015-12-17 12:33:34 +08:00
只有卡片样式的页签支持新增和关闭选项。
使用 `closable={false}` 禁止关闭。
2015-12-15 16:34:02 +08:00
2016-08-03 10:39:20 +08:00
## en-US
Only card type Tabs support adding & closable.
+Use `closable={false}` to disable close.
2016-08-03 10:39:20 +08:00
2017-02-13 10:55:53 +08:00
````jsx
2015-12-15 16:34:02 +08:00
import { Tabs } from 'antd';
2018-06-27 15:55:04 +08:00
2015-12-15 16:34:02 +08:00
const TabPane = Tabs.TabPane;
class Demo extends React.Component {
constructor(props) {
super(props);
2015-12-15 16:34:02 +08:00
this.newTabIndex = 0;
const panes = [
{ title: 'Tab 1', content: 'Content of Tab 1', key: '1' },
2016-08-03 10:39:20 +08:00
{ title: 'Tab 2', content: 'Content of Tab 2', key: '2' },
2018-11-28 15:00:03 +08:00
{
title: 'Tab 3', content: 'Content of Tab 3', key: '3', closable: false,
},
2015-12-15 16:34:02 +08:00
];
this.state = {
2015-12-15 16:34:02 +08:00
activeKey: panes[0].key,
panes,
2015-12-15 16:34:02 +08:00
};
}
onChange = (activeKey) => {
2015-12-15 16:34:02 +08:00
this.setState({ activeKey });
}
2018-06-27 15:55:04 +08:00
onEdit = (targetKey, action) => {
2015-12-15 16:34:02 +08:00
this[action](targetKey);
}
2018-06-27 15:55:04 +08:00
add = () => {
2015-12-15 16:34:02 +08:00
const panes = this.state.panes;
const activeKey = `newTab${this.newTabIndex++}`;
2016-08-03 10:39:20 +08:00
panes.push({ title: 'New Tab', content: 'Content of new Tab', key: activeKey });
2015-12-15 16:34:02 +08:00
this.setState({ panes, activeKey });
}
2018-06-27 15:55:04 +08:00
remove = (targetKey) => {
2015-12-15 16:34:02 +08:00
let activeKey = this.state.activeKey;
2016-03-02 20:25:19 +08:00
let lastIndex;
this.state.panes.forEach((pane, i) => {
if (pane.key === targetKey) {
lastIndex = i - 1;
}
});
2015-12-15 16:34:02 +08:00
const panes = this.state.panes.filter(pane => pane.key !== targetKey);
2019-02-04 11:29:28 +08:00
if (panes.length && activeKey === targetKey) {
if (lastIndex >= 0) {
activeKey = panes[lastIndex].key;
} else {
activeKey = panes[0].key;
}
2015-12-15 16:34:02 +08:00
}
this.setState({ panes, activeKey });
}
2018-06-27 15:55:04 +08:00
2015-12-15 16:34:02 +08:00
render() {
return (
2016-07-06 17:41:04 +08:00
<Tabs
onChange={this.onChange}
activeKey={this.state.activeKey}
type="editable-card"
onEdit={this.onEdit}
>
{this.state.panes.map(pane => <TabPane tab={pane.title} key={pane.key} closable={pane.closable}>{pane.content}</TabPane>)}
2015-12-15 16:34:02 +08:00
</Tabs>
);
}
}
2015-12-15 16:34:02 +08:00
ReactDOM.render(<Demo />, mountNode);
2015-12-15 16:34:02 +08:00
````