ant-design/components/tabs/demo/extra.md

99 lines
2.0 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 4
2017-02-04 01:13:35 +08:00
title:
zh-CN: 附加内容
en-US: Extra content
2016-03-31 09:40:55 +08:00
---
2015-12-14 22:16:25 +08:00
2016-08-03 10:39:20 +08:00
## zh-CN
可以在页签两边添加附加操作。
2015-12-14 22:16:25 +08:00
2016-08-03 10:39:20 +08:00
## en-US
You can add extra actions to the right or left or even both side of Tabs.
2016-08-03 10:39:20 +08:00
2019-05-07 14:57:32 +08:00
```jsx
import { Tabs, Button, Divider, Checkbox } from 'antd';
2018-06-27 15:55:04 +08:00
const { TabPane } = Tabs;
2015-12-14 22:16:25 +08:00
const CheckboxGroup = Checkbox.Group;
2016-08-03 10:39:20 +08:00
const operations = <Button>Extra Action</Button>;
2015-12-14 22:16:25 +08:00
const OperationsSlot = {
2020-09-30 17:08:39 +08:00
left: <Button className="tabs-extra-demo-button">Left Extra Action</Button>,
right: <Button>Right Extra Action</Button>,
};
const options = ['left', 'right'];
const Demo = () => {
const [position, setPosition] = React.useState(['left', 'right']);
const slot = React.useMemo(() => {
if (position.length === 0) return null;
return position.reduce(
(acc, direction) => ({ ...acc, [direction]: OperationsSlot[direction] }),
{},
);
}, [position]);
return (
<>
<Tabs tabBarExtraContent={operations}>
<TabPane tab="Tab 1" key="1">
Content of tab 1
</TabPane>
<TabPane tab="Tab 2" key="2">
Content of tab 2
</TabPane>
<TabPane tab="Tab 3" key="3">
Content of tab 3
</TabPane>
</Tabs>
<br />
<br />
<br />
<div>You can also specify its direction or both side</div>
<Divider />
<CheckboxGroup
options={options}
value={position}
onChange={value => {
setPosition(value);
}}
/>
<br />
<br />
<Tabs tabBarExtraContent={slot}>
<TabPane tab="Tab 1" key="1">
Content of tab 1
</TabPane>
<TabPane tab="Tab 2" key="2">
Content of tab 2
</TabPane>
<TabPane tab="Tab 3" key="3">
Content of tab 3
</TabPane>
</Tabs>
</>
);
};
ReactDOM.render(<Demo />, mountNode);
2019-05-07 14:57:32 +08:00
```
2020-09-30 17:08:39 +08:00
```css
.tabs-extra-demo-button {
margin-right: 16px;
}
.ant-row-rtl .tabs-extra-demo-button {
margin-right: 0;
margin-left: 16px;
}
```