ant-design/components/tabs/index.tsx

170 lines
4.5 KiB
TypeScript
Raw Normal View History

import React from 'react';
2016-08-16 17:54:59 +08:00
import { cloneElement } from 'react';
2017-02-08 17:15:14 +08:00
import { findDOMNode } from 'react-dom';
import RcTabs, { TabPane } from 'rc-tabs';
import ScrollableInkTabBar from 'rc-tabs/lib/ScrollableInkTabBar';
import TabContent from 'rc-tabs/lib/TabContent';
2015-12-14 16:30:15 +08:00
import classNames from 'classnames';
2015-12-14 22:16:25 +08:00
import Icon from '../icon';
import warning from '../_util/warning';
2017-02-08 17:15:14 +08:00
import isFlexSupported from '../_util/isFlexSupported';
2015-06-12 12:01:02 +08:00
2016-09-13 15:31:29 +08:00
export type TabsType = 'line' | 'card' | 'editable-card'
export type TabsPosition = 'top' | 'right' | 'bottom' | 'left';
2016-07-09 10:50:51 +08:00
export interface TabsProps {
activeKey?: string;
defaultActiveKey?: string;
hideAdd?: boolean;
onChange?: (activeKey: string) => void;
onTabClick?: Function;
2016-10-24 16:30:38 +08:00
tabBarExtraContent?: React.ReactNode | null;
2016-07-09 10:50:51 +08:00
type?: TabsType;
tabPosition?: TabsPosition;
onEdit?: (targetKey: string, action: any) => void;
size?: 'default' | 'small';
style?: React.CSSProperties;
2016-08-16 18:07:37 +08:00
prefixCls?: string;
className?: string;
animated?: boolean;
2016-07-09 10:50:51 +08:00
}
// Tabs
export interface TabPaneProps {
2016-07-13 17:22:23 +08:00
/** 选项卡头显示文字 */
tab?: React.ReactNode | string;
2016-07-09 10:50:51 +08:00
style?: React.CSSProperties;
closable?: boolean;
className?: string;
disabled?: boolean;
2016-07-09 10:50:51 +08:00
}
export default class Tabs extends React.Component<TabsProps, any> {
static TabPane = TabPane as React.ClassicComponentClass<TabPaneProps>;
static defaultProps = {
prefixCls: 'ant-tabs',
2016-05-24 14:35:21 +08:00
hideAdd: false,
animated: true,
2016-07-09 10:50:51 +08:00
};
createNewTab = (targetKey) => {
2016-10-24 16:30:38 +08:00
const onEdit = this.props.onEdit;
if (onEdit) {
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
}
2016-10-24 16:30:38 +08:00
const onEdit = this.props.onEdit;
if (onEdit) {
onEdit(targetKey, 'remove');
}
2015-12-14 22:16:25 +08:00
}
handleChange = (activeKey) => {
2016-10-24 16:30:38 +08:00
const onChange = this.props.onChange;
if (onChange) {
onChange(activeKey);
}
2015-12-14 22:16:25 +08:00
}
2017-02-08 17:15:14 +08:00
componentDidMount() {
const NO_FLEX = ' no-flex';
const tabNode = findDOMNode(this);
if (tabNode && !isFlexSupported() && tabNode.className.indexOf(NO_FLEX) === -1) {
tabNode.className += NO_FLEX;
}
}
2015-06-12 12:01:02 +08:00
render() {
let {
prefixCls,
2016-10-24 16:30:38 +08:00
className = '',
size,
2016-10-24 16:30:38 +08:00
type = 'line',
tabPosition,
children,
tabBarExtraContent,
hideAdd,
onTabClick,
animated,
} = this.props;
warning(
!(type.indexOf('card') >= 0 && size === 'small'),
'Tabs[type=card|editable-card] doesn\'t have small size, it\'s by designed.'
);
let cls = classNames(className, {
[`${prefixCls}-mini`]: size === 'small' || size as string === 'mini',
[`${prefixCls}-vertical`]: tabPosition === 'left' || tabPosition === 'right',
[`${prefixCls}-card`]: type.indexOf('card') >= 0,
2016-03-02 20:25:19 +08:00
[`${prefixCls}-${type}`]: true,
[`${prefixCls}-no-animation`]: !animated,
2015-12-14 16:30:15 +08:00
});
2015-12-14 22:16:25 +08:00
// only card type tabs can be added and closed
let childrenWithClose;
2015-12-15 16:34:02 +08:00
if (type === 'editable-card') {
childrenWithClose = [];
React.Children.forEach(children as React.ReactNode, (child: React.ReactElement<any>, index) => {
let closable = child.props.closable;
closable = typeof closable === 'undefined' ? true : closable;
const closeIcon = closable ? (
<Icon
type="close"
onClick={e => this.removeTab(child.key, e)}
/>
) : null;
childrenWithClose.push(cloneElement(child, {
2016-08-16 23:13:31 +08:00
tab: (
<div className={closable ? undefined : `${prefixCls}-tab-unclosable`}>
2016-08-16 23:13:31 +08:00
{child.props.tab}
{closeIcon}
2016-08-16 23:13:31 +08:00
</div>
),
2016-03-02 20:25:19 +08:00
key: child.key || index,
2016-08-16 23:13:31 +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;
const renderTabBar = () => (
<ScrollableInkTabBar
extraContent={tabBarExtraContent}
onTabClick={onTabClick}
/>
);
return (
<RcTabs
{...this.props}
2016-10-24 16:30:38 +08:00
className={cls}
tabBarPosition={tabPosition}
renderTabBar={renderTabBar}
renderTabContent={() => <TabContent animated={animated} animatedWithMargin />}
onChange={this.handleChange}
>
{childrenWithClose || children}
</RcTabs>
);
2015-06-12 12:01:02 +08:00
}
}