import * as React from 'react'; import ScrollableInkTabBar from 'rc-tabs/lib/ScrollableInkTabBar'; import classNames from 'classnames'; import { TabsProps } from './index'; import Icon from '../icon'; export default class TabBar extends React.Component { static defaultProps = { animated: true, type: 'line', }; render() { const { tabBarStyle, animated, renderTabBar, tabBarExtraContent, tabPosition, prefixCls, className, size, type, } = this.props; const inkBarAnimated = typeof animated === 'object' ? animated.inkBar : animated; const isVertical = tabPosition === 'left' || tabPosition === 'right'; const prevIconType = isVertical ? 'up' : 'left'; const nextIconType = isVertical ? 'down' : 'right'; const prevIcon = ( ); const nextIcon = ( ); // Additional className for style usage const cls: string = classNames( `${prefixCls}-${tabPosition}-bar`, { [`${prefixCls}-${size}-bar`]: !!size, [`${prefixCls}-card-bar`]: type && type.indexOf('card') >= 0, }, className, ); const renderProps = { ...this.props, children: null, inkBarAnimated, extraContent: tabBarExtraContent, style: tabBarStyle, prevIcon, nextIcon, className: cls, }; let RenderTabBar: React.ReactElement; if (renderTabBar) { RenderTabBar = renderTabBar(renderProps, ScrollableInkTabBar); } else { RenderTabBar = ; } return React.cloneElement(RenderTabBar); } }