ant-design/components/tabs/index.tsx

124 lines
3.6 KiB
TypeScript
Raw Normal View History

import RcTabs from 'rc-tabs';
2016-07-09 10:50:51 +08:00
import * as React from 'react';
2016-08-12 14:47:01 +08:00
import { cloneElement, Children } 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
2016-07-09 10:50:51 +08:00
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 {
2016-07-13 17:22:23 +08:00
/** 选项卡头显示文字 */
2016-07-09 10:50:51 +08:00
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'
2016-07-09 10:50:51 +08:00
onChange() { },
onEdit() { },
2016-05-24 14:35:21 +08:00
hideAdd: false,
2016-07-09 10:50:51 +08:00
};
createNewTab = (targetKey) => {
2015-12-15 16:34:02 +08:00
this.props.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
}
2015-12-15 16:34:02 +08:00
this.props.onEdit(targetKey, 'remove');
2015-12-14 22:16:25 +08:00
}
handleChange = (activeKey) => {
2015-12-14 22:16:25 +08:00
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,
2016-07-09 10:50:51 +08:00
children, tabBarExtraContent, hideAdd } = 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',
[`${prefixCls}-card`]: type.indexOf('card') >= 0,
2016-03-02 20:25:19 +08:00
[`${prefixCls}-${type}`]: true,
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') {
children = Array.isArray(children) ? children : [children];
children = Children.map(children, (child, index) => {
2016-03-02 20:25:19 +08:00
return cloneElement(child, {
tab: <div>
{child.props.tab}
2016-07-09 10:50:51 +08:00
<Icon type="cross" onClick={(e) => this.removeTab(child.key, e) } />
2016-03-02 20:25:19 +08:00
</div>,
key: child.key || index,
2015-12-14 22:16:25 +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;
return (
<RcTabs {...this.props}
className={className}
2016-04-17 17:47:08 +08:00
tabBarExtraContent={tabBarExtraContent}
onChange={this.handleChange}
animation={animation}
2016-07-09 10:50:51 +08:00
>
{children}
</RcTabs>
);
2015-06-12 12:01:02 +08:00
}
}