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

77 lines
1.8 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
2022-05-23 14:37:16 +08:00
import { Button, Tabs } from 'antd';
import React, { useRef, useState } from 'react';
2018-06-27 15:55:04 +08:00
const defaultPanes = new Array(2).fill(null).map((_, index) => {
const id = String(index + 1);
return { label: `Tab ${id}`, children: `Content of Tab Pane ${index + 1}`, key: id };
});
const App: React.FC = () => {
const [activeKey, setActiveKey] = useState(defaultPanes[0].key);
const [items, setItems] = 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++}`;
setItems([...items, { label: 'New Tab', children: '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) => {
const targetIndex = items.findIndex(pane => pane.key === targetKey);
const newPanes = items.filter(pane => pane.key !== targetKey);
if (newPanes.length && targetKey === activeKey) {
const { key } = newPanes[targetIndex === newPanes.length ? targetIndex - 1 : targetIndex];
setActiveKey(key);
}
setItems(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}
items={items}
/>
</div>
);
};
2016-05-24 14:35:21 +08:00
export default App;
2019-05-07 14:57:32 +08:00
```