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.
 
 

141 lines
3.6 KiB

import React from 'react';
import { cloneElement } from 'react';
import RcTabs, { TabPane } from 'rc-tabs';
import ScrollableInkTabBar from 'rc-tabs/lib/ScrollableInkTabBar';
import TabContent from 'rc-tabs/lib/TabContent';
import classNames from 'classnames';
import Icon from '../icon';
export type TabsType = 'line' | 'card' | 'editable-card'
export type TabsPosition = 'top' | 'right' | 'bottom' | 'left';
export interface TabsProps {
activeKey?: string;
defaultActiveKey?: string;
hideAdd?: boolean;
onChange?: (activeKey: string) => void;
onTabClick?: Function;
tabBarExtraContent?: React.ReactNode | null;
type?: TabsType;
tabPosition?: TabsPosition;
onEdit?: (targetKey: string, action: any) => void;
size?: 'default' | 'small';
style?: React.CSSProperties;
prefixCls?: string;
className?: string;
animated?: boolean;
}
// Tabs
export interface TabPaneProps {
/** 选项卡头显示文字 */
tab?: React.ReactNode | string;
style?: React.CSSProperties;
}
export default class Tabs extends React.Component<TabsProps, any> {
static TabPane = TabPane as React.ClassicComponentClass<TabPaneProps>;
static defaultProps = {
prefixCls: 'ant-tabs',
hideAdd: false,
animated: true,
};
createNewTab = (targetKey) => {
const onEdit = this.props.onEdit;
if (onEdit) {
onEdit(targetKey, 'add');
}
}
removeTab = (targetKey, e) => {
e.stopPropagation();
if (!targetKey) {
return;
}
const onEdit = this.props.onEdit;
if (onEdit) {
onEdit(targetKey, 'remove');
}
}
handleChange = (activeKey) => {
const onChange = this.props.onChange;
if (onChange) {
onChange(activeKey);
}
}
render() {
let {
prefixCls,
className = '',
size,
type = 'line',
tabPosition,
children,
tabBarExtraContent,
hideAdd,
onTabClick,
animated,
} = this.props;
let cls = classNames({
[className]: !!className,
[`${prefixCls}-mini`]: size === 'small' || size as string === 'mini',
[`${prefixCls}-vertical`]: tabPosition === 'left' || tabPosition === 'right',
[`${prefixCls}-card`]: type.indexOf('card') >= 0,
[`${prefixCls}-${type}`]: true,
[`${prefixCls}-no-animation`]: !animated,
});
// only card type tabs can be added and closed
let childrenWithClose;
if (type === 'editable-card') {
childrenWithClose = [];
React.Children.forEach(children as React.ReactNode, (child: React.ReactElement<any>, index) => {
childrenWithClose.push(cloneElement(child, {
tab: (
<div>
{child.props.tab}
<Icon type="close" onClick={(e) => this.removeTab(child.key, e)} />
</div>
),
key: child.key || index,
}));
});
// Add new tab handler
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={cls}
tabBarPosition={tabPosition}
renderTabBar={() => (
<ScrollableInkTabBar
extraContent={tabBarExtraContent}
onTabClick={onTabClick}
/>
)}
renderTabContent={() => <TabContent animated={animated} />}
onChange={this.handleChange}
>
{childrenWithClose || children}
</RcTabs>
);
}
}