ant-design-vue/components/tabs/TabBar.jsx

66 lines
1.7 KiB
Vue
Raw Normal View History

2019-01-12 11:33:27 +08:00
import Icon from '../icon';
import ScrollableInkTabBar from '../vc-tabs/src/ScrollableInkTabBar';
import { cloneElement } from '../_util/vnode';
2018-12-12 21:31:18 +08:00
const TabBar = {
functional: true,
2019-01-12 11:33:27 +08:00
render(h, context) {
2018-12-12 21:31:18 +08:00
const {
tabBarStyle,
animated = true,
renderTabBar,
tabBarExtraContent,
tabPosition,
prefixCls,
2018-12-14 23:31:02 +08:00
type = 'line',
size,
2019-01-12 11:33:27 +08:00
} = context.props;
const inkBarAnimated = typeof animated === 'object' ? animated.inkBar : animated;
2018-12-12 21:31:18 +08:00
2019-01-12 11:33:27 +08:00
const isVertical = tabPosition === 'left' || tabPosition === 'right';
const prevIconType = isVertical ? 'up' : 'left';
const nextIconType = isVertical ? 'down' : 'right';
2018-12-12 21:31:18 +08:00
const prevIcon = (
<span class={`${prefixCls}-tab-prev-icon`}>
<Icon type={prevIconType} class={`${prefixCls}-tab-prev-icon-target`} />
</span>
2019-01-12 11:33:27 +08:00
);
2018-12-12 21:31:18 +08:00
const nextIcon = (
<span class={`${prefixCls}-tab-next-icon`}>
<Icon type={nextIconType} class={`${prefixCls}-tab-next-icon-target`} />
</span>
2019-01-12 11:33:27 +08:00
);
2018-12-12 21:31:18 +08:00
2018-12-14 23:31:02 +08:00
// Additional className for style usage
const cls = {
[`${prefixCls}-${tabPosition}-bar`]: true,
[`${prefixCls}-${size}-bar`]: !!size,
[`${prefixCls}-card-bar`]: type && type.indexOf('card') >= 0,
2019-01-12 11:33:27 +08:00
};
2018-12-14 23:31:02 +08:00
2018-12-12 21:31:18 +08:00
const renderProps = {
props: {
...context.props,
inkBarAnimated,
extraContent: tabBarExtraContent,
prevIcon,
nextIcon,
},
style: tabBarStyle,
2018-12-12 21:42:22 +08:00
on: context.listeners,
2018-12-14 23:31:02 +08:00
class: cls,
2019-01-12 11:33:27 +08:00
};
2018-12-12 21:31:18 +08:00
2019-01-12 11:33:27 +08:00
let RenderTabBar;
2018-12-12 21:31:18 +08:00
if (renderTabBar) {
2019-01-12 11:33:27 +08:00
RenderTabBar = renderTabBar(renderProps, ScrollableInkTabBar);
2018-12-12 21:31:18 +08:00
} else {
2019-01-12 11:33:27 +08:00
RenderTabBar = <ScrollableInkTabBar {...renderProps} />;
2018-12-12 21:31:18 +08:00
}
2019-01-12 11:33:27 +08:00
return cloneElement(RenderTabBar, renderProps);
2018-12-12 21:31:18 +08:00
},
2019-01-12 11:33:27 +08:00
};
2018-12-12 21:31:18 +08:00
2019-01-12 11:33:27 +08:00
export default TabBar;