ant-design/components/tabs/index.jsx

91 lines
2.5 KiB
React
Raw Normal View History

2015-12-15 16:34:02 +08:00
import Tabs 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
class AntTabs extends React.Component {
2015-12-14 22:16:25 +08:00
constructor(props) {
super(props);
[
'createNewTab',
'removeTab',
'handleChange',
].forEach((method) => this[method] = this[method].bind(this));
}
2015-12-15 16:34:02 +08:00
createNewTab(targetKey) {
this.props.onEdit(targetKey, 'add');
2015-12-14 22:16:25 +08:00
}
2015-12-15 16:34:02 +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) {
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,
2015-12-15 16:34:02 +08:00
children, tabBarExtraContent } = 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',
2015-12-15 16:34:02 +08:00
[prefixCls + '-card']: type.indexOf('card') >= 0,
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') {
if (children.length > 1) {
children = children.map((child, index) => {
2015-12-14 22:16:25 +08:00
return cloneElement(child, {
tab: <div>
{child.props.tab}
<Icon type="cross" onClick={this.removeTab.bind(this, child.key)} />
</div>,
key: child.key || index,
});
});
}
// Add new tab handler
tabBarExtraContent = (
<span>
<Icon type="plus" className={prefixCls + '-new-tab'} onClick={this.createNewTab} />
{tabBarExtraContent}
</span>
);
2015-12-14 22:16:25 +08:00
}
// Wrap the extra content
tabBarExtraContent = (
<div className={prefixCls + '-extra-content'}>
{tabBarExtraContent}
</div>
);
return (
<Tabs {...this.props}
className={className}
tabBarExtraContent={tabBarExtraContent}
onChange={this.handleChange}
animation={animation}>
{children}
</Tabs>
);
2015-06-12 12:01:02 +08:00
}
}
AntTabs.defaultProps = {
2015-12-14 16:30:15 +08:00
prefixCls: 'ant-tabs',
size: 'default',
animation: 'slide-horizontal',
2015-12-15 16:34:02 +08:00
type: 'line', // or 'card' 'editable-card'
2015-12-14 22:16:25 +08:00
onChange() {},
2015-12-15 16:34:02 +08:00
onEdit() {},
2015-06-12 12:01:02 +08:00
};
2015-06-15 19:56:58 +08:00
AntTabs.TabPane = Tabs.TabPane;
2015-06-12 12:01:02 +08:00
export default AntTabs;