ant-design/components/tabs/index.jsx

87 lines
2.3 KiB
React
Raw Normal View History

import RcTabs from 'rc-tabs';
2015-12-14 22:16:25 +08:00
import React, { cloneElement } from 'react';
2015-12-14 16:30:15 +08:00
import classNames from 'classnames';
2015-12-14 22:16:25 +08:00
import Icon from '../icon';
2015-06-12 12:01:02 +08:00
export default class Tabs extends React.Component {
static TabPane = RcTabs.TabPane;
static defaultProps = {
prefixCls: 'ant-tabs',
animation: 'slide-horizontal',
type: 'line', // or 'card' 'editable-card'
onChange() {},
onEdit() {},
2016-05-24 14:35:21 +08:00
hideAdd: false,
}
createNewTab = (targetKey) => {
2015-12-15 16:34:02 +08:00
this.props.onEdit(targetKey, 'add');
2015-12-14 22:16:25 +08:00
}
removeTab = (targetKey, e) => {
2015-12-14 22:16:25 +08:00
e.stopPropagation();
2015-12-15 16:34:02 +08:00
if (!targetKey) {
return;
2015-12-14 22:16:25 +08:00
}
2015-12-15 16:34:02 +08:00
this.props.onEdit(targetKey, 'remove');
2015-12-14 22:16:25 +08:00
}
handleChange = (activeKey) => {
2015-12-14 22:16:25 +08:00
this.props.onChange(activeKey);
}
2015-06-12 12:01:02 +08:00
render() {
2015-12-14 22:16:25 +08:00
let { prefixCls, size, tabPosition, animation, type,
2016-05-24 14:35:21 +08:00
children, tabBarExtraContent, hideAdd } = this.props;
2015-12-14 16:30:15 +08:00
let className = classNames({
[this.props.className]: !!this.props.className,
[`${prefixCls}-mini`]: size === 'small' || size === 'mini',
[`${prefixCls}-vertical`]: tabPosition === 'left' || tabPosition === 'right',
[`${prefixCls}-card`]: type.indexOf('card') >= 0,
2016-03-02 20:25:19 +08:00
[`${prefixCls}-${type}`]: true,
2015-12-14 16:30:15 +08:00
});
2015-12-15 16:34:02 +08:00
if (tabPosition === 'left' || tabPosition === 'right' || type.indexOf('card') >= 0) {
animation = null;
2015-10-21 19:58:54 +08:00
}
2015-12-14 22:16:25 +08:00
// only card type tabs can be added and closed
2015-12-15 16:34:02 +08:00
if (type === 'editable-card') {
2016-03-02 20:25:19 +08:00
children = children.map((child, index) => {
return cloneElement(child, {
tab: <div>
{child.props.tab}
2016-03-30 17:06:19 +08:00
<Icon type="cross" onClick={(e) => this.removeTab(child.key, e)} />
2016-03-02 20:25:19 +08:00
</div>,
key: child.key || index,
2015-12-14 22:16:25 +08:00
});
2016-03-02 20:25:19 +08:00
});
2015-12-14 22:16:25 +08:00
// Add new tab handler
2016-05-24 14:35:21 +08:00
if (!hideAdd) {
tabBarExtraContent = (
<span>
<Icon type="plus" className={`${prefixCls}-new-tab`} onClick={this.createNewTab} />
{tabBarExtraContent}
</span>
);
}
2015-12-14 22:16:25 +08:00
}
2016-03-02 20:25:19 +08:00
2016-04-17 17:47:08 +08:00
tabBarExtraContent = tabBarExtraContent ? (
<div className={`${prefixCls}-extra-content`}>
{tabBarExtraContent}
</div>
) : null;
return (
<RcTabs {...this.props}
className={className}
2016-04-17 17:47:08 +08:00
tabBarExtraContent={tabBarExtraContent}
onChange={this.handleChange}
animation={animation}
>
{children}
</RcTabs>
);
2015-06-12 12:01:02 +08:00
}
}