ant-design/components/tabs/demo/custom-add-trigger.md

88 lines
2.1 KiB
Markdown
Raw Normal View History

2016-05-24 14:35:21 +08:00
---
order: 11
2017-02-04 01:13:35 +08:00
title:
zh-CN: 自定义新增页签触发器
en-US: Customized trigger of new tab
2016-05-24 14:35:21 +08:00
---
2019-05-07 14:57:32 +08:00
2016-08-03 10:39:20 +08:00
## zh-CN
2016-05-24 14:35:21 +08:00
隐藏默认的页签增加图标,给自定义触发器绑定事件。
2016-08-03 10:39:20 +08:00
## en-US
Hide default plus icon, and bind event for customized trigger.
```tsx
import React, { useRef, useState } from 'react';
2016-05-24 14:35:21 +08:00
import { Tabs, Button } from 'antd';
2018-06-27 15:55:04 +08:00
const { TabPane } = Tabs;
2016-05-24 14:35:21 +08:00
const defaultPanes = Array.from({ length: 2 }).map((_, index) => {
const id = String(index + 1);
return { title: `Tab ${id}`, content: `Content of Tab Pane ${index + 1}`, key: id };
});
const App: React.FC = () => {
const [activeKey, setActiveKey] = useState(defaultPanes[0].key);
const [panes, setPanes] = useState(defaultPanes);
const newTabIndex = useRef(0);
2018-06-27 15:55:04 +08:00
const onChange = (key: string) => {
setActiveKey(key);
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
const add = () => {
const newActiveKey = `newTab${newTabIndex.current++}`;
setPanes([...panes, { title: 'New Tab', content: 'New Tab Pane', key: newActiveKey }]);
setActiveKey(newActiveKey);
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
const remove = (targetKey: string) => {
let lastIndex = -1;
panes.forEach((pane, i) => {
2016-05-24 14:35:21 +08:00
if (pane.key === targetKey) {
lastIndex = i - 1;
}
});
2019-02-04 11:29:28 +08:00
if (panes.length && activeKey === targetKey) {
let newActiveKey: string;
2019-02-04 11:29:28 +08:00
if (lastIndex >= 0) {
newActiveKey = panes[lastIndex].key;
2019-02-04 11:29:28 +08:00
} else {
newActiveKey = panes[0].key;
2019-02-04 11:29:28 +08:00
}
setActiveKey(newActiveKey);
}
const newPanes = panes.filter(pane => pane.key !== targetKey);
setPanes(newPanes);
};
const onEdit = (targetKey: string, action: 'add' | 'remove') => {
if (action === 'add') {
add();
} else {
remove(targetKey);
2016-05-24 14:35:21 +08:00
}
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
return (
<div>
<div style={{ marginBottom: 16 }}>
<Button onClick={add}>ADD</Button>
2016-05-24 14:35:21 +08:00
</div>
<Tabs hideAdd onChange={onChange} activeKey={activeKey} type="editable-card" onEdit={onEdit}>
{panes.map(pane => (
<TabPane tab={pane.title} key={pane.key}>
{pane.content}
</TabPane>
))}
</Tabs>
</div>
);
};
2016-05-24 14:35:21 +08:00
export default App;
2019-05-07 14:57:32 +08:00
```