You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123 lines
3.5 KiB

import RcTabs from 'rc-tabs';
9 years ago
import * as React from 'react';
const { cloneElement } = React;
import classNames from 'classnames';
import Icon from '../icon';
10 years ago
9 years ago
type TabsType = 'line' | 'card' | 'editable-card'
type TabsPosition = 'top' | 'right' | 'bottom' | 'left';
export interface TabsProps {
/** 当前激活 tab 面板的 key */
activeKey?: string;
/** 初始化选中面板的 key,如果没有设置 activeKey*/
defaultActiveKey?: string;
/** 是否隐藏加号图标,在 `type="editable-card"` 时有效 */
hideAdd?: boolean;
/** 切换面板的回调*/
onChange?: (activeKey: string) => void;
/** tab 被点击的回调 */
onTabClick?: Function;
/** tab bar 上额外的元素 */
tabBarExtraContent?: React.ReactNode;
/** 页签的基本样式,可选 `line`、`card` `editable-card` 类型*/
type?: TabsType;
/** 页签位置,可选值有 `top` `right` `bottom` `left`*/
tabPosition?: TabsPosition;
/** 新增和删除页签的回调,在 `type="editable-card"` 时有效*/
onEdit?: (targetKey: string, action: any) => void;
/** 大小,提供 default 和 small 两种大小 */
size?: 'default' | 'small';
style?: React.CSSProperties;
}
// Tabs
export interface TabPaneProps {
/** 选项卡头显示文字 */
9 years ago
tab: React.ReactNode | string;
style?: React.CSSProperties;
}
export default class Tabs extends React.Component<TabsProps, any> {
static TabPane: TabPaneProps = RcTabs.TabPane;
static defaultProps = {
prefixCls: 'ant-tabs',
animation: 'slide-horizontal',
type: 'line', // or 'card' 'editable-card'
9 years ago
onChange() { },
onEdit() { },
9 years ago
hideAdd: false,
9 years ago
};
createNewTab = (targetKey) => {
this.props.onEdit(targetKey, 'add');
}
removeTab = (targetKey, e) => {
e.stopPropagation();
if (!targetKey) {
return;
}
this.props.onEdit(targetKey, 'remove');
}
handleChange = (activeKey) => {
this.props.onChange(activeKey);
}
10 years ago
render() {
let { prefixCls, size, tabPosition, animation, type,
9 years ago
children, tabBarExtraContent, hideAdd } = this.props;
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,
[`${prefixCls}-${type}`]: true,
});
if (tabPosition === 'left' || tabPosition === 'right' || type.indexOf('card') >= 0) {
animation = null;
}
// only card type tabs can be added and closed
if (type === 'editable-card') {
children = children.map((child, index) => {
return cloneElement(child, {
tab: <div>
{child.props.tab}
9 years ago
<Icon type="cross" onClick={(e) => this.removeTab(child.key, e) } />
</div>,
key: child.key || index,
});
});
// Add new tab handler
9 years ago
if (!hideAdd) {
tabBarExtraContent = (
<span>
<Icon type="plus" className={`${prefixCls}-new-tab`} onClick={this.createNewTab} />
{tabBarExtraContent}
</span>
);
}
}
tabBarExtraContent = tabBarExtraContent ? (
<div className={`${prefixCls}-extra-content`}>
{tabBarExtraContent}
</div>
) : null;
return (
<RcTabs {...this.props}
className={className}
tabBarExtraContent={tabBarExtraContent}
onChange={this.handleChange}
animation={animation}
9 years ago
>
{children}
</RcTabs>
);
10 years ago
}
}