ant-design/components/tabs/index.tsx

199 lines
6.0 KiB
TypeScript
Raw Normal View History

import * as React from 'react';
import * as ReactDOM from 'react-dom';
import RcTabs, { TabPane } from 'rc-tabs';
import TabContent from 'rc-tabs/lib/TabContent';
import TabBar from './TabBar';
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 { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
import warning from '../_util/warning';
import { isFlexSupported } from '../_util/styleChecker';
2015-06-12 12:01:02 +08:00
export type TabsType = 'line' | 'card' | 'editable-card';
2016-09-13 15:31:29 +08:00
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;
onPrevClick?: React.MouseEventHandler<HTMLElement>;
onNextClick?: React.MouseEventHandler<HTMLElement>;
2016-10-24 16:30:38 +08:00
tabBarExtraContent?: React.ReactNode | null;
2017-02-21 14:43:48 +08:00
tabBarStyle?: React.CSSProperties;
2016-07-09 10:50:51 +08:00
type?: TabsType;
tabPosition?: TabsPosition;
onEdit?: (targetKey: string | React.MouseEvent<HTMLElement>, action: 'add' | 'remove') => void;
2017-10-18 21:17:18 +08:00
size?: 'large' | 'default' | 'small';
2016-07-09 10:50:51 +08:00
style?: React.CSSProperties;
2016-08-16 18:07:37 +08:00
prefixCls?: string;
className?: string;
2018-12-07 20:02:01 +08:00
animated?: boolean | { inkBar: boolean; tabPane: boolean };
2017-12-17 23:47:19 +08:00
tabBarGutter?: number;
2019-07-16 17:32:55 +08:00
renderTabBar?: (
props: TabsProps,
DefaultTabBar: React.ComponentClass<any>,
) => React.ReactElement<any>;
destroyInactiveTabPane?: 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;
forceRender?: boolean;
2018-10-21 00:24:47 +08:00
key?: string;
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 = {
2016-05-24 14:35:21 +08:00
hideAdd: false,
tabPosition: 'top' as TabsPosition,
2016-07-09 10:50:51 +08:00
};
2017-11-20 22:06:01 +08:00
removeTab = (targetKey: string, e: React.MouseEvent<HTMLElement>) => {
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');
}
2018-12-07 20:02:01 +08:00
};
2017-11-20 22:06:01 +08:00
handleChange = (activeKey: string) => {
2016-10-24 16:30:38 +08:00
const onChange = this.props.onChange;
if (onChange) {
onChange(activeKey);
}
2018-12-07 20:02:01 +08:00
};
createNewTab = (targetKey: React.MouseEvent<HTMLElement>) => {
const { onEdit } = this.props;
if (onEdit) {
onEdit(targetKey, 'add');
}
2018-12-07 20:02:01 +08:00
};
2017-02-08 17:15:14 +08:00
componentDidMount() {
const NO_FLEX = ' no-flex';
2018-04-11 12:01:28 +08:00
const tabNode = ReactDOM.findDOMNode(this) as Element;
if (tabNode && !isFlexSupported && tabNode.className.indexOf(NO_FLEX) === -1) {
2017-02-08 17:15:14 +08:00
tabNode.className += NO_FLEX;
}
}
renderTabs = ({ getPrefixCls }: ConfigConsumerProps) => {
2018-11-10 21:40:21 +08:00
const {
prefixCls: customizePrefixCls,
2016-10-24 16:30:38 +08:00
className = '',
size,
2016-10-24 16:30:38 +08:00
type = 'line',
tabPosition,
children,
animated = true,
hideAdd,
} = this.props;
2018-11-10 21:40:21 +08:00
let { tabBarExtraContent } = this.props;
let tabPaneAnimated = typeof animated === 'object' ? animated.tabPane : animated;
// card tabs should not have animation
if (type !== 'line') {
tabPaneAnimated = 'animated' in this.props ? tabPaneAnimated : false;
}
warning(
2017-10-18 21:17:18 +08:00
!(type.indexOf('card') >= 0 && (size === 'small' || size === 'large')),
'Tabs',
"`type=card|editable-card` doesn't have small or large size, it's by design.",
);
const prefixCls = getPrefixCls('tabs', customizePrefixCls);
2017-10-18 21:17:18 +08:00
const cls = classNames(className, {
[`${prefixCls}-vertical`]: tabPosition === 'left' || tabPosition === 'right',
2017-10-18 21:17:18 +08:00
[`${prefixCls}-${size}`]: !!size,
[`${prefixCls}-card`]: type.indexOf('card') >= 0,
2016-03-02 20:25:19 +08:00
[`${prefixCls}-${type}`]: true,
[`${prefixCls}-no-animation`]: !tabPaneAnimated,
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
2017-11-20 22:06:01 +08:00
let childrenWithClose: React.ReactElement<any>[] = [];
2015-12-15 16:34:02 +08:00
if (type === 'editable-card') {
childrenWithClose = [];
2018-12-07 20:02:01 +08:00
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"
className={`${prefixCls}-close-x`}
onClick={e => this.removeTab(child.key as string, e)}
/>
) : null;
childrenWithClose.push(
React.cloneElement(child, {
tab: (
<div className={closable ? undefined : `${prefixCls}-tab-unclosable`}>
{child.props.tab}
{closeIcon}
</div>
),
key: child.key || index,
}),
);
},
);
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 ? (
2018-12-07 20:02:01 +08:00
<div className={`${prefixCls}-extra-content`}>{tabBarExtraContent}</div>
2016-04-17 17:47:08 +08:00
) : null;
const { className: dropped, ...tabBarProps } = this.props;
const contentCls: string = classNames(
`${prefixCls}-${tabPosition}-content`,
type.indexOf('card') >= 0 && `${prefixCls}-card-content`,
);
return (
<RcTabs
{...this.props}
prefixCls={prefixCls}
2016-10-24 16:30:38 +08:00
className={cls}
tabBarPosition={tabPosition}
2018-12-07 20:02:01 +08:00
renderTabBar={() => <TabBar {...tabBarProps} tabBarExtraContent={tabBarExtraContent} />}
renderTabContent={() => (
<TabContent className={contentCls} animated={tabPaneAnimated} animatedWithMargin />
)}
onChange={this.handleChange}
>
2017-11-20 22:06:01 +08:00
{childrenWithClose.length > 0 ? childrenWithClose : children}
</RcTabs>
);
2018-12-07 20:02:01 +08:00
};
render() {
2018-12-07 20:02:01 +08:00
return <ConfigConsumer>{this.renderTabs}</ConfigConsumer>;
}
2015-06-12 12:01:02 +08:00
}