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

75 lines
1.7 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 9
title: 新增和关闭页签
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
只有卡片样式的页签支持新增和关闭选项。
2015-12-15 16:34:02 +08:00
2016-08-03 10:39:20 +08:00
## en-US
Only card type Tabs support adding & closeable.
2015-12-15 16:34:02 +08:00
````jsx
import { Tabs } from 'antd';
const TabPane = Tabs.TabPane;
const Demo = React.createClass({
getInitialState() {
this.newTabIndex = 0;
const panes = [
2016-08-03 10:39:20 +08:00
{ title: 'Tab 1', content: 'Content of Tab 1', key: '1' },
{ title: 'Tab 2', content: 'Content of Tab 2', key: '2' },
2015-12-15 16:34:02 +08:00
];
return {
activeKey: panes[0].key,
panes,
2015-12-15 16:34:02 +08:00
};
},
onChange(activeKey) {
this.setState({ activeKey });
},
onEdit(targetKey, action) {
this[action](targetKey);
},
2015-12-27 16:20:59 +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 });
},
remove(targetKey) {
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);
2016-03-02 20:25:19 +08:00
if (lastIndex >= 0 && activeKey === targetKey) {
activeKey = panes[lastIndex].key;
2015-12-15 16:34:02 +08:00
}
this.setState({ panes, activeKey });
},
render() {
return (
2016-07-06 17:41:04 +08:00
<Tabs
onChange={this.onChange}
activeKey={this.state.activeKey}
type="editable-card"
onEdit={this.onEdit}
>
2016-07-06 17:41:04 +08:00
{this.state.panes.map(pane => <TabPane tab={pane.title} key={pane.key}>{pane.content}</TabPane>)}
2015-12-15 16:34:02 +08:00
</Tabs>
);
2016-05-11 09:32:33 +08:00
},
2015-12-15 16:34:02 +08:00
});
ReactDOM.render(<Demo />, mountNode);
2015-12-15 16:34:02 +08:00
````